diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 9eb984b..8c28760 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -1,4 +1,4 @@ [advisories] ignore = [ - "RUSTSEC-2020-0071", # Remove once upstream dependencies are updated. + "RUSTSEC-2023-0071", # Does not affect our current use of the library. ] diff --git a/Cargo.lock b/Cargo.lock index bc44e0e..94a3dda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -488,7 +488,7 @@ dependencies = [ [[package]] name = "cipher-paratime" -version = "3.0.2-testnet" +version = "3.0.2" dependencies = [ "keymanager", "oasis-runtime-sdk", @@ -1528,8 +1528,8 @@ dependencies = [ [[package]] name = "keymanager" -version = "0.4.1-testnet" -source = "git+https://github.com/oasisprotocol/keymanager-paratime?tag=v0.4.1-testnet#1b20792680b245a610ee428876ca0f6ddc99a436" +version = "0.4.1" +source = "git+https://github.com/oasisprotocol/keymanager-paratime?tag=v0.4.1#8d87e456cdb3156ecea932110de1aac2a675f4af" dependencies = [ "oasis-core-keymanager 0.0.0 (git+https://github.com/oasisprotocol/oasis-core?tag=v23.0.1)", "oasis-core-runtime 0.0.0 (git+https://github.com/oasisprotocol/oasis-core?tag=v23.0.1)", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 53b04e0..2730f51 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cipher-paratime" -version = "3.0.2-testnet" +version = "3.0.2" authors = ["Oasis Protocol Foundation "] edition = "2021" license = "Apache-2.0" @@ -18,7 +18,7 @@ threads = 8 debug = false [dependencies] -keymanager = { git = "https://github.com/oasisprotocol/keymanager-paratime", tag = "v0.4.1-testnet" } +keymanager = { git = "https://github.com/oasisprotocol/keymanager-paratime", tag = "v0.4.1" } # SDK. oasis-runtime-sdk = { git = "https://github.com/oasisprotocol/oasis-sdk", tag = "runtime-sdk/v0.8.2", features = ["debug-logging"] } diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index b00a4f0..72ddeb4 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -34,7 +34,7 @@ const fn state_version() -> u32 { 7 } else { // Mainnet. - 2 + 3 } } @@ -118,11 +118,11 @@ impl sdk::Runtime for Runtime { } else { // Mainnet. Some(TrustRoot { - height: 12282779, - hash: "c132606dc870fbf386cb7a84f8fb033c4911f8dd0b235efa22219b2c6cf7bf35".into(), + height: 16887695, + hash: "a3382aaaf7ff53c364ecddaf9577a819d415521d0b0a6362c9c3ea6a13a2356c".into(), runtime_id: "000000000000000000000000000000000000000000000000e199119c992377cb" .into(), - chain_context: "b11b369e0da5bb230b220127f5e7b242d385ef8c6f54906243f30af63c815535" + chain_context: "bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55" .to_string(), }) }