diff --git a/ci/no-std-check/Cargo.lock b/ci/no-std-check/Cargo.lock index a456a6ea1..fe811c9e2 100644 --- a/ci/no-std-check/Cargo.lock +++ b/ci/no-std-check/Cargo.lock @@ -1782,7 +1782,7 @@ dependencies = [ "ibc", "ibc-proto", "sp-core", - "sp-io", + "sp-io 38.0.0", "sp-runtime", "sp-std", "syn 2.0.89", @@ -2587,7 +2587,7 @@ dependencies = [ "scale-info", "serde", "sp-core", - "sp-io", + "sp-io 37.0.0", "sp-std", ] @@ -2709,10 +2709,37 @@ dependencies = [ "sp-externalities", "sp-keystore", "sp-runtime-interface", - "sp-state-machine", + "sp-state-machine 0.42.0", "sp-std", "sp-tracing", - "sp-trie", + "sp-trie 36.0.0", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "38.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ef7eb561bb4839cc8424ce58c5ea236cbcca83f26fcc0426d8decfe8aa97d4" +dependencies = [ + "bytes", + "docify", + "ed25519-dalek", + "libsecp256k1", + "log", + "parity-scale-codec", + "polkavm-derive", + "rustversion", + "secp256k1", + "sp-core", + "sp-crypto-hashing", + "sp-externalities", + "sp-keystore", + "sp-runtime-interface", + "sp-state-machine 0.43.0", + "sp-tracing", + "sp-trie 37.0.0", "tracing", "tracing-core", ] @@ -2761,7 +2788,7 @@ dependencies = [ "sp-application-crypto", "sp-arithmetic", "sp-core", - "sp-io", + "sp-io 37.0.0", "sp-std", "sp-weights", "tracing", @@ -2816,7 +2843,28 @@ dependencies = [ "sp-core", "sp-externalities", "sp-panic-handler", - "sp-trie", + "sp-trie 36.0.0", + "thiserror", + "tracing", + "trie-db", +] + +[[package]] +name = "sp-state-machine" +version = "0.43.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "930104d6ae882626e8880d9b1578da9300655d337a3ffb45e130c608b6c89660" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "parking_lot", + "rand", + "smallvec", + "sp-core", + "sp-externalities", + "sp-panic-handler", + "sp-trie 37.0.0", "thiserror", "tracing", "trie-db", @@ -2877,6 +2925,30 @@ dependencies = [ "trie-root", ] +[[package]] +name = "sp-trie" +version = "37.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6282aef9f4b6ecd95a67a45bcdb67a71f4a4155c09a53c10add4ffe823db18cd" +dependencies = [ + "ahash", + "hash-db", + "lazy_static", + "memory-db", + "nohash-hasher", + "parity-scale-codec", + "parking_lot", + "rand", + "scale-info", + "schnellru", + "sp-core", + "sp-externalities", + "thiserror", + "tracing", + "trie-db", + "trie-root", +] + [[package]] name = "sp-wasm-interface" version = "21.0.1" diff --git a/ci/no-std-check/Cargo.toml b/ci/no-std-check/Cargo.toml index c95f75cbe..4bad6f7c6 100644 --- a/ci/no-std-check/Cargo.toml +++ b/ci/no-std-check/Cargo.toml @@ -16,7 +16,7 @@ tendermint-proto = { version = "0.40", default-features = false } tendermint-light-client-verifier = { version = "0.40", default-features = false, features = [ "rust-crypto" ] } sp-core = { version = "34.0", default-features = false, optional = true } -sp-io = { version = "37.0", default-features = false, optional = true } +sp-io = { version = "38.0", default-features = false, optional = true } sp-runtime = { version = "38.0", default-features = false, optional = true } sp-std = { version = "14.0", default-features = false, optional = true }