From f1222f00b85469891437b86433916d3d8897b2e9 Mon Sep 17 00:00:00 2001 From: Chevdor Date: Mon, 3 Jul 2023 14:56:28 +0200 Subject: [PATCH 1/3] WIP --- .github/workflows/daily-check.yml | 2 ++ cli/tests/compress.rs | 10 +++++----- cli/tests/diff.rs | 5 ++++- cli/tests/get.rs | 6 ++++-- cli/tests/info.rs | 6 ++++-- cli/tests/meta.rs | 9 ++++++--- cli/tests/misc.rs | 6 ++++-- cli/tests/show.rs | 4 +++- cli/tests/test_utils.rs | 5 ++++- lib/src/lib.rs | 2 ++ libs/wasm-loader/src/lib.rs | 2 +- 11 files changed, 39 insertions(+), 18 deletions(-) diff --git a/.github/workflows/daily-check.yml b/.github/workflows/daily-check.yml index dd4dac3..e8f64ca 100644 --- a/.github/workflows/daily-check.yml +++ b/.github/workflows/daily-check.yml @@ -11,6 +11,8 @@ jobs: daily_check: env: CARGO_TERM_COLOR: always + RUST_TEST_NOCAPTURE: 1 + strategy: fail-fast: false matrix: diff --git a/cli/tests/compress.rs b/cli/tests/compress.rs index 3b86b4f..f7d2ee3 100644 --- a/cli/tests/compress.rs +++ b/cli/tests/compress.rs @@ -4,7 +4,7 @@ mod test_utils; mod cli_tests { #[cfg(test)] mod cli_compress { - use crate::test_utils::temp_file; + use crate::test_utils::{temp_file, CLI}; use assert_cmd::Command; #[test] @@ -13,10 +13,10 @@ mod cli_tests { let tmp_decompressed = temp_file(); let tmp_recompressed = temp_file(); - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); cmd.args(["decompress", test_wasm, tmp_decompressed.as_str()]).assert().success().code(0); - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); cmd.args(["compress", tmp_decompressed.as_str(), tmp_recompressed.as_str()]).assert().success().code(0); } @@ -26,10 +26,10 @@ mod cli_tests { let tmp_decompressed = temp_file(); let tmp_decompressed_again = temp_file(); - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); cmd.args(["decompress", test_wasm, tmp_decompressed.as_str()]).assert().success().code(0); - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); cmd.args(["decompress", tmp_decompressed.as_str(), tmp_decompressed_again.as_str()]) .assert() .success() diff --git a/cli/tests/diff.rs b/cli/tests/diff.rs index d326254..3761726 100644 --- a/cli/tests/diff.rs +++ b/cli/tests/diff.rs @@ -2,15 +2,18 @@ mod test_utils; #[cfg(test)] mod cli_tests { + #[cfg(test)] mod diff { use assert_cmd::Command; + use crate::test_utils::CLI; + #[test] fn it_shows_metadata() { let test_wasm: &str = &crate::test_utils::ensure_local_wasm(); - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); let assert = cmd.args(["meta", test_wasm]).assert(); assert.success().code(0); } diff --git a/cli/tests/get.rs b/cli/tests/get.rs index a942ad7..e16545f 100644 --- a/cli/tests/get.rs +++ b/cli/tests/get.rs @@ -6,10 +6,12 @@ mod cli_tests { mod get { use assert_cmd::Command; use std::path::Path; + + use crate::test_utils::CLI; #[test] fn it_gets_a_runtime() { const TARGET: &str = "/tmp/polkadot_runtime.wasm"; - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); let assert = cmd.args(["get", "--output", TARGET, "wss://rpc.polkadot.io:443"]).assert(); assert.success().code(0); @@ -18,7 +20,7 @@ mod cli_tests { #[test] fn it_fails_on_bad_chain() { - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); let assert = cmd.args(["get", "--chain", "foobar"]).assert(); assert.failure().code(101); diff --git a/cli/tests/info.rs b/cli/tests/info.rs index 08df203..74dc63c 100644 --- a/cli/tests/info.rs +++ b/cli/tests/info.rs @@ -6,9 +6,11 @@ mod cli_tests { mod info { use assert_cmd::Command; + use crate::test_utils::CLI; + #[test] fn it_fails_without_source() { - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); let assert = cmd.arg("info tcp://foo.bar").assert(); assert.failure().code(2); } @@ -17,7 +19,7 @@ mod cli_tests { fn it_returns_infos() { let test_wasm: &str = &crate::test_utils::ensure_local_wasm(); - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); let assert = cmd.args(["info", test_wasm]).assert(); assert.success().code(0); } diff --git a/cli/tests/meta.rs b/cli/tests/meta.rs index f489fd0..c5fdf8f 100644 --- a/cli/tests/meta.rs +++ b/cli/tests/meta.rs @@ -1,26 +1,29 @@ mod test_utils; #[cfg(test)] mod cli_tests { + #[cfg(test)] mod meta { use assert_cmd::Command as AssertCommand; + use crate::test_utils::CLI; + #[test] fn it_shows_metadata() { let test_wasm: &str = &crate::test_utils::ensure_local_wasm(); - let mut cmd = AssertCommand::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = AssertCommand::cargo_bin(CLI).expect("Failed getting test bin"); let assert = cmd.args(["meta", test_wasm]).assert(); assert.success().code(0); } // #[test] // fn it_shows_when_piped() { - // // let mut cmd = AssertCommand::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + // // let mut cmd = AssertCommand::cargo_bin(CLI).expect("Failed getting test bin"); // // let assert = cmd.args(["get", "wss://rpc.polkadot.io:443", "--output", "runtime.wasm"]).assert(); // // assert.success().code(0); - // let subwasm_process = Command::new(env!("CARGO_PKG_NAME")) + // let subwasm_process = Command::new(CLI) // .args(["meta", "wss://rpc.polkadot.io:443", "-f", "json"]) // .stdout(Stdio::piped()) // .spawn() diff --git a/cli/tests/misc.rs b/cli/tests/misc.rs index 36596b7..4f9fcfb 100644 --- a/cli/tests/misc.rs +++ b/cli/tests/misc.rs @@ -1,13 +1,15 @@ #[cfg(test)] mod cli_tests { - #[cfg(test)] mod help { use assert_cmd::Command; + use subwasmlib::CLI; #[test] fn it_shows_help() { - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + println!("CARGO_PKG_NAME = {:?}", CLI); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); + println!("cmd = {:?}", cmd); let assert = cmd.arg("--help").assert(); assert.success().code(0); } diff --git a/cli/tests/show.rs b/cli/tests/show.rs index 5742694..331b196 100644 --- a/cli/tests/show.rs +++ b/cli/tests/show.rs @@ -1,15 +1,17 @@ mod test_utils; #[cfg(test)] mod cli_tests { + #[cfg(test)] mod show { + use crate::test_utils::CLI; use assert_cmd::Command as AssertCommand; #[test] fn it_shows_runtime() { let test_wasm: &str = &crate::test_utils::ensure_local_wasm(); - let mut cmd = AssertCommand::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = AssertCommand::cargo_bin(CLI).expect("Failed getting test bin"); let assert = cmd.args(["show", test_wasm]).assert(); assert.success().code(0); } diff --git a/cli/tests/test_utils.rs b/cli/tests/test_utils.rs index 4e0e802..8cf7a83 100644 --- a/cli/tests/test_utils.rs +++ b/cli/tests/test_utils.rs @@ -2,6 +2,9 @@ use assert_cmd::Command; use core::panic; use std::{env::temp_dir, path::PathBuf}; +#[cfg(test)] +pub const CLI: &str = "subwasm"; + #[allow(dead_code)] #[cfg(test)] /// Ensure we have a local wasm available at /tpm/runtime.wasm @@ -10,7 +13,7 @@ pub fn ensure_local_wasm() -> String { const WASM_FILE: &str = "/tmp/runtime.wasm"; let mut retry = 0; - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed getting test bin"); + let mut cmd = Command::cargo_bin(CLI).expect("Failed getting test bin"); if PathBuf::from(WASM_FILE).exists() { println!("Found an existing runtime, reusing..."); diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 349285b..ea632ab 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -31,6 +31,8 @@ pub use subwasm::*; pub use types::*; pub use utils::*; +pub const CLI: &str = "subwasm"; + /// Returns Some node url if possible, None otherwise. fn get_node_url(chain: &str) -> Result { let chain_info = ChainInfo::from_str(chain).expect("Unknown chain"); diff --git a/libs/wasm-loader/src/lib.rs b/libs/wasm-loader/src/lib.rs index f67b4fb..1034f88 100644 --- a/libs/wasm-loader/src/lib.rs +++ b/libs/wasm-loader/src/lib.rs @@ -178,7 +178,7 @@ pub mod tests { const WASM_FILE: &str = "/tmp/runtime.wasm"; let mut retry = 0; - let mut cmd = Command::cargo_bin(env!("CARGO_PKG_NAME")).expect("Failed loading wasm"); + let mut cmd = Command::cargo_bin("subwasm").expect("Failed loading wasm"); if PathBuf::from(WASM_FILE).exists() { return WASM_FILE.to_string(); From fa950a1fc7a46c9885fb0e2e895787743301b851 Mon Sep 17 00:00:00 2001 From: Chevdor Date: Tue, 1 Aug 2023 12:24:10 +0200 Subject: [PATCH 2/3] WIP --- .github/workflows/gh-pages.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index 2a23bb4..e17bd2a 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -4,7 +4,6 @@ name: Github Pages on: push: branches: [ master ] - pull_request: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: From 7f0d46bd79d1a748db70e45d3282cfd543df08b4 Mon Sep 17 00:00:00 2001 From: Chevdor Date: Wed, 27 Mar 2024 10:13:00 +0100 Subject: [PATCH 3/3] Merge master --- Cargo.lock | 82 +++++++++++++++++++++++++++--------------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9825366..012047b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3430,7 +3430,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "log", "sp-core", @@ -3441,7 +3441,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -3464,7 +3464,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "polkavm", "sc-allocator", @@ -3477,7 +3477,7 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "log", "polkavm", @@ -3488,7 +3488,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "anyhow", "cfg-if", @@ -3885,7 +3885,7 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "hash-db", "log", @@ -3907,7 +3907,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "Inflector", "blake2", @@ -3921,7 +3921,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "parity-scale-codec", "scale-info", @@ -3934,7 +3934,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "docify", "integer-sqrt", @@ -3967,7 +3967,7 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "array-bytes", "bandersnatch_vrfs", @@ -4014,7 +4014,7 @@ dependencies = [ [[package]] name = "sp-crypto-ec-utils" version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "ark-bls12-377", "ark-bls12-377-ext", @@ -4034,7 +4034,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "blake2b_simd 1.0.2", "byteorder", @@ -4047,7 +4047,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "quote", "sp-crypto-hashing", @@ -4057,7 +4057,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "proc-macro2", "quote", @@ -4067,7 +4067,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "proc-macro2", "quote", @@ -4077,7 +4077,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "environmental", "parity-scale-codec", @@ -4087,7 +4087,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "environmental", "parity-scale-codec", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "bytes", "ed25519-dalek", @@ -4123,7 +4123,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -4143,7 +4143,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "thiserror", "zstd 0.12.4", @@ -4152,7 +4152,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "frame-metadata 16.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec", @@ -4162,7 +4162,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "backtrace", "lazy_static", @@ -4172,7 +4172,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "docify", "either", @@ -4196,7 +4196,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -4215,7 +4215,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -4234,7 +4234,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "Inflector", "expander", @@ -4247,7 +4247,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "Inflector", "expander", @@ -4260,7 +4260,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "hash-db", "log", @@ -4280,17 +4280,17 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk#feee773d15d5237765b520b03854d46652181de5" [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "impl-serde", "parity-scale-codec", @@ -4302,7 +4302,7 @@ dependencies = [ [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "impl-serde", "parity-scale-codec", @@ -4314,7 +4314,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "parity-scale-codec", "tracing", @@ -4325,7 +4325,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "parity-scale-codec", "tracing", @@ -4336,7 +4336,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "ahash 0.8.11", "hash-db", @@ -4359,7 +4359,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "impl-serde", "parity-scale-codec", @@ -4376,7 +4376,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -4387,7 +4387,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -4399,7 +4399,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -4411,7 +4411,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -4485,7 +4485,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#66051adb619d2119771920218e2de75fa037d7e8" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#feee773d15d5237765b520b03854d46652181de5" dependencies = [ "hmac 0.12.1", "pbkdf2",