diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml
index 93c28faaea..97e18cb5a1 100644
--- a/.github/workflows/benchmark.yml
+++ b/.github/workflows/benchmark.yml
@@ -86,9 +86,9 @@ jobs:
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.12
- name: Use Node.js
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v4
with:
- node-version: 16.x
+ node-version: 18.x
- name: Run benchmarks
run: ${{steps.command.outputs.result}} > ${{runner.temp}}/out.txt
- name: Commit
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 5bf03596d9..38dd397ea1 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -48,11 +48,10 @@ jobs:
tar -zxvf cargo-tarpaulin-x86_64-unknown-linux-musl.tar.gz -C $HOME/.cargo/bin
cargo tarpaulin -v --no-fail-fast --implicit-test-threads --workspace \
-e acala-inspect \
- acala acala-cli e2e-tests acala-service \
+ acala acala-cli acala-service \
acala-primitives \
acala-rpc \
acala-runtime runtime-common runtime-integration-tests karura-runtime mandala-runtime \
- test-service \
--exclude-files **/mock.rs **/weights.rs **/weights/*
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
diff --git a/.github/workflows/extrinsic-ordering-check-from-bin.yml b/.github/workflows/extrinsic-ordering-check-from-bin.yml
index d10c7ae759..4b68598dfb 100644
--- a/.github/workflows/extrinsic-ordering-check-from-bin.yml
+++ b/.github/workflows/extrinsic-ordering-check-from-bin.yml
@@ -30,9 +30,9 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
with:
- node-version: '14.x'
+ node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install Yarn
diff --git a/.github/workflows/extrinsic-ordering-check-on-release.yml b/.github/workflows/extrinsic-ordering-check-on-release.yml
index 2b3e2cfcf7..b1fccc3f44 100644
--- a/.github/workflows/extrinsic-ordering-check-on-release.yml
+++ b/.github/workflows/extrinsic-ordering-check-on-release.yml
@@ -49,9 +49,9 @@ jobs:
if: ${{ env.CHAIN == '' || env.VERSION == '' || env.PREVIOUS_VERSION == '' }}
run: python .github/scripts/extrinsic_check_setup_env.py
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
with:
- node-version: '14.x'
+ node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install Yarn
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 4ece87347f..091cbdf048 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -24,7 +24,7 @@ jobs:
env:
CARGO_INCREMENTAL: 0
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v3
@@ -58,7 +58,7 @@ jobs:
env:
CARGO_INCREMENTAL: 0
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v3
@@ -82,7 +82,7 @@ jobs:
env:
CARGO_INCREMENTAL: 0
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v3
@@ -114,7 +114,7 @@ jobs:
env:
CARGO_INCREMENTAL: 0
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v3
@@ -129,12 +129,10 @@ jobs:
uses: dtolnay/rust-toolchain@nightly
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.13
- - name: Run e2e tests
- run: make test-e2e
- name: Use Node.js
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
with:
- node-version: 16.x
+ node-version: 18.x
- name: Run ts tests
run: |
npm install -g yarn
diff --git a/.gitignore b/.gitignore
index b7d7cfba86..dc22c7c68f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,4 +15,5 @@
__pycache__
ts-tests/cache/
+ts-tests/.yarn
ts-tests/node_modules/
diff --git a/Cargo.lock b/Cargo.lock
index ac8cf6f040..66ee61b879 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -18,7 +18,7 @@ version = "2.22.0"
dependencies = [
"acala-cli",
"acala-service",
- "futures 0.3.29",
+ "futures",
]
[[package]]
@@ -27,7 +27,7 @@ version = "2.22.0"
dependencies = [
"acala-inspect",
"acala-service",
- "clap 4.4.7",
+ "clap",
"cumulus-client-cli",
"cumulus-client-service",
"cumulus-primitives-core",
@@ -40,13 +40,13 @@ dependencies = [
"polkadot-primitives",
"polkadot-service",
"sc-cli",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-executor",
"sc-service",
"sc-telemetry",
"sc-tracing",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
"substrate-build-script-utils",
"try-runtime-cli",
]
@@ -55,16 +55,16 @@ dependencies = [
name = "acala-inspect"
version = "2.22.0"
dependencies = [
- "clap 4.4.7",
+ "clap",
"derive_more",
"log",
"parity-scale-codec",
"sc-cli",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-service",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-core",
+ "sp-runtime",
]
[[package]]
@@ -73,7 +73,7 @@ version = "2.22.0"
dependencies = [
"bstringify",
"enumflags2",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"hex-literal",
"log",
"module-evm-utility",
@@ -86,11 +86,11 @@ dependencies = [
"scale-info",
"serde",
"serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -98,20 +98,20 @@ name = "acala-rpc"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "futures 0.3.29",
+ "futures",
"jsonrpsee",
"pallet-transaction-payment-rpc",
"parity-scale-codec",
"runtime-common",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus-manual-seal",
"sc-rpc",
"sc-rpc-api",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
+ "sp-api",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-runtime",
"substrate-frame-rpc-system",
]
@@ -130,7 +130,7 @@ dependencies = [
"cumulus-primitives-utility",
"frame-benchmarking",
"frame-executive",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"frame-system-rpc-runtime-api",
"frame-try-runtime",
@@ -207,28 +207,28 @@ dependencies = [
"pallet-treasury",
"pallet-utility",
"pallet-xcm",
- "parachain-info",
"parity-scale-codec",
"polkadot-parachain-primitives",
- "polkadot-runtime",
+ "polkadot-runtime-common",
"runtime-common",
"scale-info",
"serde_json",
"smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
"sp-block-builder",
"sp-consensus-aura",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-io",
"sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
"sp-transaction-pool",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-version",
+ "staging-parachain-info",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -261,7 +261,7 @@ dependencies = [
"cumulus-test-relay-sproof-builder",
"frame-benchmarking",
"frame-system-rpc-runtime-api",
- "futures 0.3.29",
+ "futures",
"hex",
"hex-literal",
"jsonrpsee",
@@ -278,13 +278,13 @@ dependencies = [
"sc-basic-authorship",
"sc-chain-spec",
"sc-cli",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-consensus-aura",
"sc-consensus-grandpa",
"sc-consensus-manual-seal",
"sc-consensus-slots",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-executor",
"sc-network",
"sc-network-common",
"sc-network-sync",
@@ -294,26 +294,26 @@ dependencies = [
"sc-telemetry",
"sc-tracing",
"sc-transaction-pool",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
"serde",
"serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-aura",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-keystore",
"sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-std",
+ "sp-storage",
"sp-timestamp",
"sp-transaction-pool",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-trie",
+ "substrate-prometheus-endpoint",
"tiny-keccak",
]
@@ -415,7 +415,7 @@ dependencies = [
"cipher 0.3.0",
"ctr 0.8.0",
"ghash 0.4.4",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -429,7 +429,7 @@ dependencies = [
"cipher 0.4.4",
"ctr 0.9.2",
"ghash 0.5.0",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -604,6 +604,17 @@ version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
+[[package]]
+name = "ark-bls12-377"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fb00293ba84f51ce3bd026bd0de55899c4e68f0a39a5728cebae3a73ffdc0a4f"
+dependencies = [
+ "ark-ec",
+ "ark-ff",
+ "ark-std",
+]
+
[[package]]
name = "ark-bls12-381"
version = "0.4.0"
@@ -633,18 +644,6 @@ dependencies = [
"zeroize",
]
-[[package]]
-name = "ark-ed-on-bls12-381-bandersnatch"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f9cde0f2aa063a2a5c28d39b47761aa102bda7c13c84fc118a61b87c7b2f785c"
-dependencies = [
- "ark-bls12-381",
- "ark-ec",
- "ark-ff",
- "ark-std",
-]
-
[[package]]
name = "ark-ff"
version = "0.4.2"
@@ -701,48 +700,6 @@ dependencies = [
"hashbrown 0.13.2",
]
-[[package]]
-name = "ark-scale"
-version = "0.0.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49b08346a3e38e2be792ef53ee168623c9244d968ff00cd70fb9932f6fe36393"
-dependencies = [
- "ark-ec",
- "ark-ff",
- "ark-serialize",
- "ark-std",
- "parity-scale-codec",
-]
-
-[[package]]
-name = "ark-scale"
-version = "0.0.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "51bd73bb6ddb72630987d37fa963e99196896c0d0ea81b7c894567e74a2f83af"
-dependencies = [
- "ark-ec",
- "ark-ff",
- "ark-serialize",
- "ark-std",
- "parity-scale-codec",
- "scale-info",
-]
-
-[[package]]
-name = "ark-secret-scalar"
-version = "0.0.2"
-source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1"
-dependencies = [
- "ark-ec",
- "ark-ff",
- "ark-serialize",
- "ark-std",
- "ark-transcript",
- "digest 0.10.7",
- "rand_core 0.6.4",
- "zeroize",
-]
-
[[package]]
name = "ark-serialize"
version = "0.4.2"
@@ -777,17 +734,10 @@ dependencies = [
]
[[package]]
-name = "ark-transcript"
-version = "0.0.2"
-source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1"
-dependencies = [
- "ark-ff",
- "ark-serialize",
- "ark-std",
- "digest 0.10.7",
- "rand_core 0.6.4",
- "sha3",
-]
+name = "array-bytes"
+version = "4.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f52f63c5c1316a16a4b35eaac8b76a98248961a533f061684cb2a7cb0eafb6c6"
[[package]]
name = "array-bytes"
@@ -906,6 +856,19 @@ dependencies = [
"futures-core",
]
+[[package]]
+name = "async-channel"
+version = "2.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d37875bd9915b7d67c2f117ea2c30a0989874d0b2cb694fe25403c85763c0c9e"
+dependencies = [
+ "concurrent-queue",
+ "event-listener 3.1.0",
+ "event-listener-strategy",
+ "futures-core",
+ "pin-project-lite 0.2.13",
+]
+
[[package]]
name = "async-executor"
version = "1.6.0"
@@ -958,14 +921,14 @@ version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ed9d5715c2d329bf1b4da8d60455b99b187f27ba726df2883799af9af60997"
dependencies = [
- "async-lock 3.0.0",
+ "async-lock 3.1.0",
"cfg-if",
"concurrent-queue",
"futures-io",
"futures-lite 2.0.1",
"parking",
"polling 3.3.0",
- "rustix 0.38.21",
+ "rustix 0.38.24",
"slab",
"tracing",
"waker-fn",
@@ -983,11 +946,11 @@ dependencies = [
[[package]]
name = "async-lock"
-version = "3.0.0"
+version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "45e900cdcd39bb94a14487d3f7ef92ca222162e6c7c3fe7cb3550ea75fb486ed"
+checksum = "deb2ab2aa8a746e221ab826c73f48bc6ba41be6763f0855cb249eb6d154cf1d7"
dependencies = [
- "event-listener 3.0.1",
+ "event-listener 3.1.0",
"event-listener-strategy",
"pin-project-lite 0.2.13",
]
@@ -1014,23 +977,12 @@ dependencies = [
"async-signal",
"blocking",
"cfg-if",
- "event-listener 3.0.1",
+ "event-listener 3.1.0",
"futures-lite 1.13.0",
- "rustix 0.38.21",
+ "rustix 0.38.24",
"windows-sys 0.48.0",
]
-[[package]]
-name = "async-recursion"
-version = "1.0.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.39",
-]
-
[[package]]
name = "async-signal"
version = "0.2.5"
@@ -1043,7 +995,7 @@ dependencies = [
"cfg-if",
"futures-core",
"futures-io",
- "rustix 0.38.21",
+ "rustix 0.38.24",
"signal-hook-registry",
"slab",
"windows-sys 0.48.0",
@@ -1135,28 +1087,6 @@ dependencies = [
"rustc-demangle",
]
-[[package]]
-name = "bandersnatch_vrfs"
-version = "0.0.1"
-source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1"
-dependencies = [
- "ark-bls12-381",
- "ark-ec",
- "ark-ed-on-bls12-381-bandersnatch",
- "ark-ff",
- "ark-scale 0.0.11",
- "ark-serialize",
- "ark-std",
- "dleq_vrf",
- "fflonk",
- "merlin 3.0.0",
- "rand_chacha 0.3.1",
- "rand_core 0.6.4",
- "ring 0.1.0",
- "sha2 0.10.8",
- "zeroize",
-]
-
[[package]]
name = "base-x"
version = "0.2.11"
@@ -1232,8 +1162,9 @@ dependencies = [
[[package]]
name = "binary-merkle-tree"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a399848a68a5196a04c19db5bfc4dca3cd0989a3165150f06c1ad1bc8882aa34"
dependencies = [
"hash-db 0.16.0",
"log",
@@ -1318,6 +1249,18 @@ dependencies = [
"wyz",
]
+[[package]]
+name = "blake2"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330"
+dependencies = [
+ "byte-tools",
+ "crypto-mac 0.7.0",
+ "digest 0.8.1",
+ "opaque-debug 0.2.3",
+]
+
[[package]]
name = "blake2"
version = "0.10.6"
@@ -1429,16 +1372,16 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
[[package]]
name = "blocking"
-version = "1.4.1"
+version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8c36a4d0d48574b3dd360b4b7d95cc651d2b6557b6402848a27d4b228a473e2a"
+checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
dependencies = [
- "async-channel",
- "async-lock 2.8.0",
+ "async-channel 2.1.0",
+ "async-lock 3.1.0",
"async-task",
"fastrand 2.0.1",
"futures-io",
- "futures-lite 1.13.0",
+ "futures-lite 2.0.1",
"piper",
"tracing",
]
@@ -1464,6 +1407,18 @@ dependencies = [
"thiserror",
]
+[[package]]
+name = "bp-xcm-bridge-hub-router"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "be3b4fafc31f17da1b4ea403c4118e4f4f1d9a5a696729b374551d582e48633b"
+dependencies = [
+ "parity-scale-codec",
+ "scale-info",
+ "sp-core",
+ "sp-runtime",
+]
+
[[package]]
name = "bs58"
version = "0.4.0"
@@ -1481,9 +1436,9 @@ dependencies = [
[[package]]
name = "bstr"
-version = "1.7.0"
+version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019"
+checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c"
dependencies = [
"memchr",
"serde",
@@ -1551,6 +1506,16 @@ dependencies = [
"pkg-config",
]
+[[package]]
+name = "c2-chacha"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d27dae93fe7b1e0424dc57179ac396908c26b035a87234809f5c4dfd1b47dc80"
+dependencies = [
+ "cipher 0.2.5",
+ "ppv-lite86",
+]
+
[[package]]
name = "camino"
version = "1.1.6"
@@ -1597,12 +1562,6 @@ dependencies = [
"thiserror",
]
-[[package]]
-name = "cast"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
-
[[package]]
name = "cc"
version = "1.0.83"
@@ -1621,7 +1580,7 @@ checksum = "5aca1a8fbc20b50ac9673ff014abfb2b5f4085ee1a850d408f14a159c5853ac7"
dependencies = [
"aead 0.3.2",
"cipher 0.2.5",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -1655,15 +1614,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
[[package]]
-name = "chacha20"
-version = "0.8.2"
+name = "chacha"
+version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6"
+checksum = "ddf3c081b5fba1e5615640aae998e0fbd10c24cbd897ee39ed754a77601a4862"
dependencies = [
- "cfg-if",
- "cipher 0.3.0",
- "cpufeatures",
- "zeroize",
+ "byteorder",
+ "keystream",
]
[[package]]
@@ -1679,14 +1636,14 @@ dependencies = [
[[package]]
name = "chacha20poly1305"
-version = "0.9.1"
+version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5"
+checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
dependencies = [
- "aead 0.4.3",
- "chacha20 0.8.2",
- "cipher 0.3.0",
- "poly1305 0.7.2",
+ "aead 0.5.2",
+ "chacha20",
+ "cipher 0.4.4",
+ "poly1305",
"zeroize",
]
@@ -1743,6 +1700,7 @@ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
+ "zeroize",
]
[[package]]
@@ -1767,20 +1725,9 @@ dependencies = [
[[package]]
name = "clap"
-version = "2.34.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
-dependencies = [
- "bitflags 1.3.2",
- "textwrap",
- "unicode-width",
-]
-
-[[package]]
-name = "clap"
-version = "4.4.7"
+version = "4.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b"
+checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64"
dependencies = [
"clap_builder",
"clap_derive",
@@ -1788,9 +1735,9 @@ dependencies = [
[[package]]
name = "clap_builder"
-version = "4.4.7"
+version = "4.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663"
+checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc"
dependencies = [
"anstream",
"anstyle",
@@ -1883,7 +1830,7 @@ dependencies = [
"base58check",
"base64 0.12.3",
"bech32",
- "blake2",
+ "blake2 0.10.6",
"digest 0.10.7",
"generic-array 0.14.7",
"hex",
@@ -1912,20 +1859,6 @@ dependencies = [
"unicode-width",
]
-[[package]]
-name = "common"
-version = "0.1.0"
-source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213"
-dependencies = [
- "ark-ec",
- "ark-ff",
- "ark-poly",
- "ark-serialize",
- "ark-std",
- "fflonk",
- "merlin 3.0.0",
-]
-
[[package]]
name = "common-path"
version = "1.0.0"
@@ -1992,6 +1925,12 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
+[[package]]
+name = "constcat"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd7e35aee659887cbfb97aaf227ac12cad1a9d7c71e55ff3376839ed4e282d08"
+
[[package]]
name = "convert_case"
version = "0.4.0"
@@ -2173,44 +2112,6 @@ dependencies = [
"cfg-if",
]
-[[package]]
-name = "criterion"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b01d6de93b2b6c65e17c634a26653a29d107b3c98c607c765bf38d041531cd8f"
-dependencies = [
- "atty",
- "cast",
- "clap 2.34.0",
- "criterion-plot",
- "csv",
- "futures 0.3.29",
- "itertools 0.10.5",
- "lazy_static",
- "num-traits",
- "oorandom",
- "plotters",
- "rayon",
- "regex",
- "serde",
- "serde_cbor",
- "serde_derive",
- "serde_json",
- "tinytemplate",
- "tokio",
- "walkdir",
-]
-
-[[package]]
-name = "criterion-plot"
-version = "0.4.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876"
-dependencies = [
- "cast",
- "itertools 0.10.5",
-]
-
[[package]]
name = "crossbeam-deque"
version = "0.8.3"
@@ -2268,19 +2169,19 @@ checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
dependencies = [
"generic-array 0.14.7",
"rand_core 0.6.4",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
[[package]]
name = "crypto-bigint"
-version = "0.5.3"
+version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124"
+checksum = "28f85c3514d2a6e64160359b45a3918c3b4178bcbf4ae5d03ab2d02e521c479a"
dependencies = [
"generic-array 0.14.7",
"rand_core 0.6.4",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
@@ -2297,43 +2198,32 @@ dependencies = [
[[package]]
name = "crypto-mac"
-version = "0.8.0"
+version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
+checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
dependencies = [
- "generic-array 0.14.7",
- "subtle",
+ "generic-array 0.12.4",
+ "subtle 1.0.0",
]
[[package]]
name = "crypto-mac"
-version = "0.11.1"
+version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
+checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
dependencies = [
"generic-array 0.14.7",
- "subtle",
-]
-
-[[package]]
-name = "csv"
-version = "1.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
-dependencies = [
- "csv-core",
- "itoa",
- "ryu",
- "serde",
+ "subtle 2.4.1",
]
[[package]]
-name = "csv-core"
-version = "0.1.11"
+name = "crypto-mac"
+version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
+checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
dependencies = [
- "memchr",
+ "generic-array 0.14.7",
+ "subtle 2.4.1",
]
[[package]]
@@ -2356,47 +2246,50 @@ dependencies = [
[[package]]
name = "cumulus-client-cli"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "858e5a1c2d26c304d75cc7158ed2579f0ff90b68f2d07a2395d073249d485424"
dependencies = [
- "clap 4.4.7",
+ "clap",
"parity-scale-codec",
"sc-chain-spec",
"sc-cli",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-service",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
"url",
]
[[package]]
name = "cumulus-client-collator"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "be58c6ef9780a83267e0b9db50a01158d58ad37ba45ed8162a9ea1b2d61d119c"
dependencies = [
"cumulus-client-consensus-common",
"cumulus-client-network",
"cumulus-primitives-core",
- "futures 0.3.29",
+ "futures",
"parity-scale-codec",
"parking_lot 0.12.1",
"polkadot-node-primitives",
"polkadot-node-subsystem",
"polkadot-overseer",
"polkadot-primitives",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sp-api",
+ "sp-consensus",
+ "sp-core",
+ "sp-runtime",
"tracing",
]
[[package]]
name = "cumulus-client-consensus-aura"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4b73f52d21017ff0f2dc6542f2873e1dc3e17561656d6af0810fb813fb553694"
dependencies = [
"async-trait",
"cumulus-client-collator",
@@ -2406,134 +2299,139 @@ dependencies = [
"cumulus-primitives-core",
"cumulus-primitives-parachain-inherent",
"cumulus-relay-chain-interface",
- "futures 0.3.29",
+ "futures",
"parity-scale-codec",
"polkadot-node-primitives",
"polkadot-node-subsystem",
"polkadot-overseer",
"polkadot-primitives",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-consensus-aura",
"sc-consensus-babe",
"sc-consensus-slots",
"sc-telemetry",
"schnellru",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-aura",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-keystore",
+ "sp-runtime",
+ "sp-state-machine",
"sp-timestamp",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "substrate-prometheus-endpoint",
"tracing",
]
[[package]]
name = "cumulus-client-consensus-common"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6ec580468eb700a2776cac54871704b3c3894bc0646c3b8375756bfffd24928f"
dependencies = [
"async-trait",
"cumulus-client-pov-recovery",
"cumulus-primitives-core",
"cumulus-relay-chain-interface",
"dyn-clone",
- "futures 0.3.29",
+ "futures",
"log",
"parity-scale-codec",
"polkadot-primitives",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-consensus-babe",
"schnellru",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-slots",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
"sp-timestamp",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-trie",
+ "substrate-prometheus-endpoint",
"tracing",
]
[[package]]
name = "cumulus-client-consensus-proposer"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "23a859c95a853e37c642b613be517d3d9c410a67204a5bd92eb35c5daaffa44d"
dependencies = [
"anyhow",
"async-trait",
"cumulus-primitives-parachain-inherent",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-consensus",
+ "sp-inherents",
+ "sp-runtime",
+ "sp-state-machine",
"thiserror",
]
[[package]]
name = "cumulus-client-consensus-relay-chain"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ef89609477a54e631bc441a03534f14adf3c500b7281682b82608d1aa533d861"
dependencies = [
"async-trait",
"cumulus-client-consensus-common",
"cumulus-primitives-core",
"cumulus-relay-chain-interface",
- "futures 0.3.29",
+ "futures",
"parking_lot 0.12.1",
"sc-consensus",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-consensus",
+ "sp-core",
+ "sp-inherents",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"tracing",
]
[[package]]
name = "cumulus-client-network"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fac979caafb16a47493dfce7509decadad81f982c0110473ab69389af663678d"
dependencies = [
"async-trait",
"cumulus-relay-chain-interface",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"parity-scale-codec",
"parking_lot 0.12.1",
"polkadot-node-primitives",
"polkadot-parachain-primitives",
"polkadot-primitives",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sp-blockchain",
+ "sp-consensus",
+ "sp-core",
+ "sp-runtime",
+ "sp-state-machine",
"tracing",
]
[[package]]
name = "cumulus-client-pov-recovery"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e4031cda3e64955d57166068a27d544f46f4a9e4c14268a09d8b67eeac7fc51d"
dependencies = [
"async-trait",
"cumulus-primitives-core",
"cumulus-relay-chain-interface",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"parity-scale-codec",
"polkadot-node-primitives",
@@ -2541,18 +2439,19 @@ dependencies = [
"polkadot-overseer",
"polkadot-primitives",
"rand 0.8.5",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-consensus",
+ "sp-maybe-compressed-blob",
+ "sp-runtime",
"tracing",
]
[[package]]
name = "cumulus-client-service"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a72ee1a2276f11243b905676b60b77ca981c567cbed3795455b464502c3d4cb8"
dependencies = [
"cumulus-client-cli",
"cumulus-client-collator",
@@ -2563,9 +2462,9 @@ dependencies = [
"cumulus-relay-chain-inprocess-interface",
"cumulus-relay-chain-interface",
"cumulus-relay-chain-minimal-node",
- "futures 0.3.29",
+ "futures",
"polkadot-primitives",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-network",
"sc-network-sync",
@@ -2575,84 +2474,89 @@ dependencies = [
"sc-sysinfo",
"sc-telemetry",
"sc-transaction-pool",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-utils",
+ "sp-api",
+ "sp-blockchain",
+ "sp-consensus",
+ "sp-core",
+ "sp-runtime",
"sp-transaction-pool",
]
[[package]]
name = "cumulus-pallet-aura-ext"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "071cdddd31e2b0d47a74249675de828857f61eb5f6afa36cfcf63ea6ee2b60f2"
dependencies = [
"cumulus-pallet-parachain-system",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"pallet-aura",
"pallet-timestamp",
"parity-scale-codec",
"scale-info",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
"sp-consensus-aura",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "cumulus-pallet-dmp-queue"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d1cb9d43cdfeedea19b4f6b8386e5b6264a97938b29f5c711a84e9dc7105ff7"
dependencies = [
"cumulus-primitives-core",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
]
[[package]]
name = "cumulus-pallet-parachain-system"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d20d2280051998fcf113f04d25d4b39f27b449570b6350fdfb7e92541cb0aae7"
dependencies = [
"bytes",
"cumulus-pallet-parachain-system-proc-macro",
"cumulus-primitives-core",
"cumulus-primitives-parachain-inherent",
"environmental",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"impl-trait-for-tuples",
"log",
"parity-scale-codec",
"polkadot-parachain-primitives",
+ "polkadot-runtime-parachains",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-externalities",
+ "sp-inherents",
+ "sp-io",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-std",
+ "sp-trie",
+ "sp-version",
"staging-xcm",
"trie-db",
]
[[package]]
name = "cumulus-pallet-parachain-system-proc-macro"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "84baea20d10325b2501b6fa06d4a7902a43d6a6c62c71b5309e75c3ad8ae1441"
dependencies = [
"proc-macro-crate",
"proc-macro2",
@@ -2662,121 +2566,133 @@ dependencies = [
[[package]]
name = "cumulus-pallet-xcm"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ff03e14a0f5847bdee67a673ee945d3acd5c1d7238d46993208dcbfb774e27f"
dependencies = [
"cumulus-primitives-core",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
]
[[package]]
name = "cumulus-pallet-xcmp-queue"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6af9816dd6564149729ba133c2c984c88fb15c4a2cb66f57be06b9147744e51"
dependencies = [
+ "bp-xcm-bridge-hub-router",
"cumulus-primitives-core",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"polkadot-runtime-common",
+ "polkadot-runtime-parachains",
"rand_chacha 0.3.1",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
"staging-xcm-executor",
]
[[package]]
name = "cumulus-primitives-aura"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "51c2ecd2393555e89245676fd49003fdc68dc7aa108f83f8c5ff5f8936ce5543"
dependencies = [
"parity-scale-codec",
"polkadot-core-primitives",
"polkadot-primitives",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
"sp-consensus-aura",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "cumulus-primitives-core"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d40f62add2352287be4cb58b0017a91f61d953e2c6d2777c20d93185558196e1"
dependencies = [
"parity-scale-codec",
"polkadot-core-primitives",
"polkadot-parachain-primitives",
"polkadot-primitives",
"scale-info",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-runtime",
+ "sp-std",
+ "sp-trie",
"staging-xcm",
]
[[package]]
name = "cumulus-primitives-parachain-inherent"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9d0b1e0e6dcf393dbf05b31122a8c4739acf407a96ec8fd707886f36ee95c355"
dependencies = [
"async-trait",
"cumulus-primitives-core",
"cumulus-relay-chain-interface",
"cumulus-test-relay-sproof-builder",
"parity-scale-codec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"scale-info",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-core",
+ "sp-inherents",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-std",
+ "sp-storage",
+ "sp-trie",
"tracing",
]
[[package]]
name = "cumulus-primitives-timestamp"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "771ef4a34f7bcd4e8782f73d8dbd0df031b1c1c82e54b06af69f88df2cddc316"
dependencies = [
"cumulus-primitives-core",
- "futures 0.3.29",
+ "futures",
"parity-scale-codec",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-inherents",
+ "sp-std",
"sp-timestamp",
]
[[package]]
name = "cumulus-primitives-utility"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6b4ef704f5a346711d0448f82e57dc5784b186f4bf5e3efbbca0df814b203539"
dependencies = [
"cumulus-primitives-core",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"log",
+ "pallet-xcm-benchmarks",
"parity-scale-codec",
"polkadot-runtime-common",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "polkadot-runtime-parachains",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -2784,57 +2700,60 @@ dependencies = [
[[package]]
name = "cumulus-relay-chain-inprocess-interface"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9518b7440b3f887433058b000a564e06b6799fd6d2776f4d035b2802c67742eb"
dependencies = [
"async-trait",
"cumulus-primitives-core",
"cumulus-relay-chain-interface",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"polkadot-cli",
"polkadot-service",
"sc-cli",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-sysinfo",
"sc-telemetry",
"sc-tracing",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-consensus",
+ "sp-core",
+ "sp-runtime",
+ "sp-state-machine",
]
[[package]]
name = "cumulus-relay-chain-interface"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "af081ef8885042e7ae96e9d1cf32ec6f0616fe4cb78f0325ed7c5accded687fb"
dependencies = [
"async-trait",
"cumulus-primitives-core",
- "futures 0.3.29",
+ "futures",
"jsonrpsee-core",
"parity-scale-codec",
"polkadot-overseer",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sp-api",
+ "sp-blockchain",
+ "sp-state-machine",
"thiserror",
]
[[package]]
name = "cumulus-relay-chain-minimal-node"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "69a1635ecc0bc20e7907a559983c818e4130ecfd899635e831f3f9b93966082c"
dependencies = [
- "array-bytes",
+ "array-bytes 6.2.0",
"async-trait",
"cumulus-primitives-core",
"cumulus-relay-chain-interface",
"cumulus-relay-chain-rpc-interface",
- "futures 0.3.29",
+ "futures",
"polkadot-availability-recovery",
"polkadot-collator-protocol",
"polkadot-core-primitives",
@@ -2850,32 +2769,33 @@ dependencies = [
"sc-network-common",
"sc-service",
"sc-tracing",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "schnellru",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-utils",
+ "sp-api",
+ "sp-consensus",
"sp-consensus-babe",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"tracing",
]
[[package]]
name = "cumulus-relay-chain-rpc-interface"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ce507996b8e97e07e3687c1c55159b38f56b2550b476c727114ab2e7ad7b2bf1"
dependencies = [
"async-trait",
"cumulus-primitives-core",
"cumulus-relay-chain-interface",
"either",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"jsonrpsee",
"parity-scale-codec",
"pin-project",
"polkadot-overseer",
"rand 0.8.5",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-rpc-api",
"sc-service",
"schnellru",
@@ -2883,13 +2803,13 @@ dependencies = [
"serde_json",
"smoldot",
"smoldot-light",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
"sp-authority-discovery",
"sp-consensus-babe",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-storage",
"thiserror",
"tokio",
"tokio-util",
@@ -2899,25 +2819,17 @@ dependencies = [
[[package]]
name = "cumulus-test-relay-sproof-builder"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "59b921a9cb6758faa1c739f135fd87aa1e10a4e86a1c1db3119b396a62287cf2"
dependencies = [
"cumulus-primitives-core",
"parity-scale-codec",
"polkadot-primitives",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "cumulus-test-relay-validation-worker-provider"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#c8d2251cafadc108ba2f1f8a3208dc547ff38901"
-dependencies = [
- "polkadot-node-core-pvf",
- "toml 0.7.8",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-std",
+ "sp-trie",
]
[[package]]
@@ -2929,7 +2841,7 @@ dependencies = [
"byteorder",
"digest 0.8.1",
"rand_core 0.5.1",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
@@ -2942,7 +2854,7 @@ dependencies = [
"byteorder",
"digest 0.9.0",
"rand_core 0.5.1",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
@@ -2959,7 +2871,7 @@ dependencies = [
"fiat-crypto",
"platforms",
"rustc_version",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
@@ -3249,14 +3161,14 @@ dependencies = [
"block-buffer 0.10.4",
"const-oid",
"crypto-common",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
name = "directories"
-version = "4.0.1"
+version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210"
+checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
dependencies = [
"dirs-sys",
]
@@ -3273,13 +3185,14 @@ dependencies = [
[[package]]
name = "dirs-sys"
-version = "0.3.7"
+version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
+checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
"libc",
+ "option-ext",
"redox_users",
- "winapi",
+ "windows-sys 0.48.0",
]
[[package]]
@@ -3304,23 +3217,6 @@ dependencies = [
"syn 2.0.39",
]
-[[package]]
-name = "dleq_vrf"
-version = "0.0.2"
-source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1"
-dependencies = [
- "ark-ec",
- "ark-ff",
- "ark-scale 0.0.10",
- "ark-secret-scalar",
- "ark-serialize",
- "ark-std",
- "ark-transcript",
- "arrayvec 0.7.4",
- "rand_core 0.6.4",
- "zeroize",
-]
-
[[package]]
name = "docify"
version = "0.2.6"
@@ -3393,13 +3289,6 @@ version = "1.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
-[[package]]
-name = "e2e-tests"
-version = "2.22.0"
-dependencies = [
- "test-service",
-]
-
[[package]]
name = "ecdsa"
version = "0.14.8"
@@ -3503,7 +3392,7 @@ dependencies = [
"pkcs8 0.9.0",
"rand_core 0.6.4",
"sec1 0.3.0",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
@@ -3514,7 +3403,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d97ca172ae9dc9f9b779a6e3a65d308f2af74e5b8c921299075bdb4a0370e914"
dependencies = [
"base16ct 0.2.0",
- "crypto-bigint 0.5.3",
+ "crypto-bigint 0.5.4",
"digest 0.10.7",
"ff 0.13.0",
"generic-array 0.14.7",
@@ -3522,7 +3411,7 @@ dependencies = [
"pkcs8 0.10.2",
"rand_core 0.6.4",
"sec1 0.7.3",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
@@ -3578,22 +3467,9 @@ dependencies = [
[[package]]
name = "env_logger"
-version = "0.9.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
-dependencies = [
- "atty",
- "humantime",
- "log",
- "regex",
- "termcolor",
-]
-
-[[package]]
-name = "env_logger"
-version = "0.10.0"
+version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
+checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"
dependencies = [
"humantime",
"is-terminal",
@@ -3706,9 +3582,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[package]]
name = "event-listener"
-version = "3.0.1"
+version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "01cec0252c2afff729ee6f00e903d479fba81784c8e2bd77447673471fdfaea1"
+checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
dependencies = [
"concurrent-queue",
"parking",
@@ -3721,7 +3597,7 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d96b852f1345da36d551b9473fa1e2b1eb5c5195585c6c018118bc92a8d91160"
dependencies = [
- "event-listener 3.0.1",
+ "event-listener 3.1.0",
"pin-project-lite 0.2.13",
]
@@ -3772,10 +3648,10 @@ name = "evm-jsontests"
version = "0.13.1"
dependencies = [
"acala-primitives",
- "env_logger 0.10.0",
+ "env_logger",
"ethereum",
"ethjson",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex",
"lazy_static",
@@ -3798,9 +3674,9 @@ dependencies = [
"serde",
"serde_json",
"sha3",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
]
[[package]]
@@ -3821,7 +3697,7 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e43f2f1833d64e33f15592464d6fdd70f349dda7b1a53088eb83cd94014008c5"
dependencies = [
- "futures 0.3.29",
+ "futures",
]
[[package]]
@@ -3836,25 +3712,13 @@ dependencies = [
"quote",
]
-[[package]]
-name = "expander"
-version = "0.0.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3774182a5df13c3d1690311ad32fbe913feef26baba609fa2dd5f72042bd2ab6"
-dependencies = [
- "blake2",
- "fs-err",
- "proc-macro2",
- "quote",
-]
-
[[package]]
name = "expander"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f86a749cf851891866c10515ef6c299b5c69661465e9c3bbe7e07a2b77fb0f7"
dependencies = [
- "blake2",
+ "blake2 0.10.6",
"fs-err",
"proc-macro2",
"quote",
@@ -3929,7 +3793,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
dependencies = [
"rand_core 0.6.4",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -3939,27 +3803,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
dependencies = [
"rand_core 0.6.4",
- "subtle",
-]
-
-[[package]]
-name = "fflonk"
-version = "0.1.0"
-source = "git+https://github.com/w3f/fflonk#1beb0585e1c8488956fac7f05da061f9b41e8948"
-dependencies = [
- "ark-ec",
- "ark-ff",
- "ark-poly",
- "ark-serialize",
- "ark-std",
- "merlin 3.0.0",
+ "subtle 2.4.1",
]
[[package]]
name = "fiat-crypto"
-version = "0.2.3"
+version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f69037fe1b785e84986b4f2cbcf647381876a00671d25ceef715d7812dd7e1dd"
+checksum = "53a56f0780318174bad1c127063fd0c5fdfb35398e3cd79ffaab931a6c79df80"
[[package]]
name = "file-per-thread-logger"
@@ -3967,7 +3818,7 @@ version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866"
dependencies = [
- "env_logger 0.10.0",
+ "env_logger",
"log",
]
@@ -3990,7 +3841,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36530797b9bf31cd4ff126dcfee8170f86b00cfdcea3269d73133cc0415945c3"
dependencies = [
"either",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"log",
"num-traits",
@@ -4045,8 +3896,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "fork-tree"
-version = "3.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "11.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c2d0a4310dcf0e5cce78e35e60dc2fda80ef61c8f8fc382e685dfc24fcf5db9"
dependencies = [
"parity-scale-codec",
]
@@ -4068,11 +3920,12 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
[[package]]
name = "frame-benchmarking"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3dd4946d63eab00d899f08a7e74e965cc6785c2298efaea6a2752905f4810407"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
+ "frame-support-procedural",
"frame-system",
"linregress",
"log",
@@ -4080,29 +3933,30 @@ dependencies = [
"paste",
"scale-info",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-runtime-interface",
+ "sp-std",
+ "sp-storage",
"static_assertions",
]
[[package]]
name = "frame-benchmarking-cli"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "29.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67e51c371bff90ba44767a79e72a036d7d648cee621cd2fe9f693e8c1d62941e"
dependencies = [
"Inflector",
- "array-bytes",
+ "array-bytes 6.2.0",
"chrono",
- "clap 4.4.7",
+ "clap",
"comfy-table",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"gethostname",
"handlebars",
@@ -4115,34 +3969,35 @@ dependencies = [
"rand_pcg",
"sc-block-builder",
"sc-cli",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-client-db 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-client-db",
+ "sc-executor",
"sc-service",
"sc-sysinfo",
"serde",
"serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-database 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-core",
+ "sp-database",
+ "sp-externalities",
+ "sp-inherents",
+ "sp-io",
+ "sp-keystore",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-storage",
+ "sp-trie",
+ "sp-wasm-interface",
"thiserror",
"thousands",
]
[[package]]
name = "frame-election-provider-solution-type"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "12.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "03911cf3675af64252a6de7b4f383eafa80d5ea5830184e7a0739aeb0b95272d"
dependencies = [
"proc-macro-crate",
"proc-macro2",
@@ -4152,37 +4007,39 @@ dependencies = [
[[package]]
name = "frame-election-provider-support"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ebad507fb038db2f7ce982d30bd9828a59785c9a4780348d59cd6cceaee80d1a"
dependencies = [
"frame-election-provider-solution-type",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
"sp-npos-elections",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "frame-executive"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2dda2c20ea3267ee20c9a5482f320236510c4ade6aec1dd930cb57dc5651c64f"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"frame-try-runtime",
"log",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "sp-tracing",
]
[[package]]
@@ -4199,20 +4056,20 @@ dependencies = [
[[package]]
name = "frame-remote-externalities"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.32.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a30013df51f4d4e58472c4fecdbfeb141234ece5f6355e5b3a3e51d3f87d452d"
dependencies = [
- "async-recursion",
- "futures 0.3.29",
+ "futures",
"indicatif",
"jsonrpsee",
"log",
"parity-scale-codec",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-state-machine",
"spinners",
"substrate-rpc-client",
"tokio",
@@ -4221,55 +4078,16 @@ dependencies = [
[[package]]
name = "frame-support"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "aquamarine",
- "bitflags 1.3.2",
- "docify",
- "environmental",
- "frame-metadata",
- "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "impl-trait-for-tuples",
- "k256 0.13.1",
- "log",
- "macro_magic",
- "parity-scale-codec",
- "paste",
- "scale-info",
- "serde",
- "serde_json",
- "smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core-hashing-proc-macro 9.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-genesis-builder 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-metadata-ir 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "static_assertions",
- "tt-call",
-]
-
-[[package]]
-name = "frame-support"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "023504bbdd0e8d1ebe3d9d289b009337cdb9a24c5e74615ffd7b188aa1664c2d"
dependencies = [
"aquamarine",
"bitflags 1.3.2",
"docify",
"environmental",
"frame-metadata",
- "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support-procedural",
"impl-trait-for-tuples",
"k256 0.13.1",
"log",
@@ -4280,79 +4098,52 @@ dependencies = [
"serde",
"serde_json",
"smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core-hashing-proc-macro 9.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-genesis-builder 0.1.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-metadata-ir 0.1.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-core-hashing-proc-macro",
+ "sp-debug-derive",
+ "sp-genesis-builder",
+ "sp-inherents",
+ "sp-io",
+ "sp-metadata-ir",
+ "sp-runtime",
+ "sp-staking",
+ "sp-state-machine",
+ "sp-std",
+ "sp-tracing",
+ "sp-weights",
"static_assertions",
"tt-call",
]
[[package]]
name = "frame-support-procedural"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "Inflector",
- "cfg-expr",
- "derive-syn-parse",
- "expander 2.0.0",
- "frame-support-procedural-tools 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "itertools 0.10.5",
- "macro_magic",
- "proc-macro-warning",
- "proc-macro2",
- "quote",
- "syn 2.0.39",
-]
-
-[[package]]
-name = "frame-support-procedural"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "20.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1d6bc383298353ff2790ac1a301262c21ac196dbc26ef67a2213c46524a06dd1"
dependencies = [
"Inflector",
"cfg-expr",
"derive-syn-parse",
"expander 2.0.0",
- "frame-support-procedural-tools 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support-procedural-tools",
"itertools 0.10.5",
"macro_magic",
"proc-macro-warning",
"proc-macro2",
"quote",
+ "sp-core-hashing",
"syn 2.0.39",
]
[[package]]
name = "frame-support-procedural-tools"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "frame-support-procedural-tools-derive 3.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "proc-macro-crate",
- "proc-macro2",
- "quote",
- "syn 2.0.39",
-]
-
-[[package]]
-name = "frame-support-procedural-tools"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "9.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b3ac1266522a8c9a2d2d26d205ec3028b88582d5f3cd5cbc75d0ec8271d197b7"
dependencies = [
- "frame-support-procedural-tools-derive 3.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support-procedural-tools-derive",
"proc-macro-crate",
"proc-macro2",
"quote",
@@ -4361,18 +4152,9 @@ dependencies = [
[[package]]
name = "frame-support-procedural-tools-derive"
-version = "3.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.39",
-]
-
-[[package]]
-name = "frame-support-procedural-tools-derive"
-version = "3.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9c078db2242ea7265faa486004e7fd8daaf1a577cfcac0070ce55d926922883"
dependencies = [
"proc-macro2",
"quote",
@@ -4381,64 +4163,71 @@ dependencies = [
[[package]]
name = "frame-system"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "57e316407c45a5093c833966a906301aa0dcbd05048061cd9cde2548d017bfd9"
dependencies = [
"cfg-if",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"log",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "sp-version",
+ "sp-weights",
]
[[package]]
name = "frame-system-benchmarking"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b5b1388055d29a7a1c4d41b1623d3fcbc9d7f31d17abe04500b270b26901d926"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "frame-system-rpc-runtime-api"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "17572a34fd866ad6cab6977a2c30b38645e0a499b3486de00ae9103f7002d6d3"
dependencies = [
"parity-scale-codec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
]
[[package]]
name = "frame-try-runtime"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f082e770275f9b46ddf46b09bc7a993f84db691c39d9e4d038ac07443cb17a18"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"parity-scale-codec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "fs-err"
-version = "2.9.0"
+version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0845fa252299212f0389d64ba26f34fa32cfe41588355f21ed507c59a0f64541"
+checksum = "fb5fd9bcbe8b1087cbd395b51498c01bc997cef73e778a80b77a811af5e2d29f"
+dependencies = [
+ "autocfg",
+]
[[package]]
name = "fs2"
@@ -4456,7 +4245,7 @@ version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2eeb4ed9e12f43b7fa0baae3f9cdda28352770132ef2e09a23760c29cae8bd47"
dependencies = [
- "rustix 0.38.21",
+ "rustix 0.38.24",
"windows-sys 0.48.0",
]
@@ -4466,12 +4255,6 @@ version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
-[[package]]
-name = "futures"
-version = "0.1.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
-
[[package]]
name = "futures"
version = "0.3.29"
@@ -4592,7 +4375,6 @@ version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
dependencies = [
- "futures 0.1.31",
"futures-channel",
"futures-core",
"futures-io",
@@ -4732,7 +4514,7 @@ checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
dependencies = [
"ff 0.12.1",
"rand_core 0.6.4",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -4743,7 +4525,7 @@ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
dependencies = [
"ff 0.13.0",
"rand_core 0.6.4",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -4765,12 +4547,6 @@ dependencies = [
"tracing",
]
-[[package]]
-name = "half"
-version = "1.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
-
[[package]]
name = "handlebars"
version = "4.5.0"
@@ -4835,6 +4611,15 @@ dependencies = [
"serde",
]
+[[package]]
+name = "hashlink"
+version = "0.8.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
+dependencies = [
+ "hashbrown 0.14.2",
+]
+
[[package]]
name = "heck"
version = "0.4.1"
@@ -4939,9 +4724,9 @@ dependencies = [
[[package]]
name = "http"
-version = "0.2.9"
+version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
+checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
dependencies = [
"bytes",
"fnv",
@@ -5093,7 +4878,7 @@ dependencies = [
"async-io 1.13.0",
"core-foundation",
"fnv",
- "futures 0.3.29",
+ "futures",
"if-addrs",
"ipnet",
"log",
@@ -5307,7 +5092,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
dependencies = [
"hermit-abi 0.3.3",
- "rustix 0.38.21",
+ "rustix 0.38.24",
"windows-sys 0.48.0",
]
@@ -5547,7 +5332,7 @@ dependencies = [
"cumulus-primitives-utility",
"frame-benchmarking",
"frame-executive",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"frame-system-rpc-runtime-api",
"frame-try-runtime",
@@ -5624,28 +5409,28 @@ dependencies = [
"pallet-treasury",
"pallet-utility",
"pallet-xcm",
- "parachain-info",
"parity-scale-codec",
"polkadot-parachain-primitives",
- "polkadot-runtime",
+ "polkadot-runtime-common",
"runtime-common",
"scale-info",
"serde_json",
"smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
"sp-block-builder",
"sp-consensus-aura",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-io",
"sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
"sp-transaction-pool",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-version",
+ "staging-parachain-info",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -5662,18 +5447,10 @@ dependencies = [
]
[[package]]
-name = "kusama-runtime-constants"
+name = "keystream"
version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "polkadot-primitives",
- "polkadot-runtime-common",
- "smallvec",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28"
[[package]]
name = "kvdb"
@@ -5710,9 +5487,9 @@ dependencies = [
[[package]]
name = "landlock"
-version = "0.2.0"
+version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "520baa32708c4e957d2fc3a186bc5bd8d26637c33137f399ddfc202adb240068"
+checksum = "1530c5b973eeed4ac216af7e24baf5737645a6272e361f1fb95710678b67d9cc"
dependencies = [
"enumflags2",
"libc",
@@ -5763,7 +5540,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f210d259724eae82005b5c48078619b7745edb7b76de370b03f8ba59ea103097"
dependencies = [
"bytes",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"getrandom 0.2.11",
"instant",
@@ -5822,7 +5599,7 @@ checksum = "3c1df63c0b582aa434fb09b2d86897fa2b419ffeccf934b36f87fcedc8e835c2"
dependencies = [
"either",
"fnv",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"instant",
"libp2p-identity",
@@ -5848,7 +5625,7 @@ version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "146ff7034daae62077c415c2376b8057368042df6ab95f5432ad5e88568b1554"
dependencies = [
- "futures 0.3.29",
+ "futures",
"libp2p-core",
"log",
"parking_lot 0.12.1",
@@ -5864,7 +5641,7 @@ checksum = "5455f472243e63b9c497ff320ded0314254a9eb751799a39c283c6f20b793f3c"
dependencies = [
"asynchronous-codec",
"either",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"libp2p-core",
"libp2p-identity",
@@ -5907,7 +5684,7 @@ dependencies = [
"bytes",
"either",
"fnv",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"instant",
"libp2p-core",
@@ -5931,7 +5708,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19983e1f949f979a928f2c603de1cf180cc0dc23e4ac93a62651ccb18341460b"
dependencies = [
"data-encoding",
- "futures 0.3.29",
+ "futures",
"if-watch",
"libp2p-core",
"libp2p-identity",
@@ -5967,7 +5744,7 @@ checksum = "9c3673da89d29936bc6435bafc638e2f184180d554ce844db65915113f86ec5e"
dependencies = [
"bytes",
"curve25519-dalek 3.2.0",
- "futures 0.3.29",
+ "futures",
"libp2p-core",
"libp2p-identity",
"log",
@@ -5989,7 +5766,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e57759c19c28a73ef1eb3585ca410cefb72c1a709fcf6de1612a378e4219202"
dependencies = [
"either",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"instant",
"libp2p-core",
@@ -6006,7 +5783,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6b26abd81cd2398382a1edfe739b539775be8a90fa6914f39b2ab49571ec735"
dependencies = [
"bytes",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"if-watch",
"libp2p-core",
@@ -6028,7 +5805,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffdb374267d42dc5ed5bc53f6e601d4a64ac5964779c6e40bb9e4f14c1e30d5"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"instant",
"libp2p-core",
"libp2p-identity",
@@ -6045,7 +5822,7 @@ checksum = "903b3d592d7694e56204d211f29d31bc004be99386644ba8731fc3e3ef27b296"
dependencies = [
"either",
"fnv",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"instant",
"libp2p-core",
@@ -6075,7 +5852,7 @@ version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33d33698596d7722d85d3ab0c86c2c322254fce1241e91208e3679b4eb3026cf"
dependencies = [
- "futures 0.3.29",
+ "futures",
"futures-timer",
"if-watch",
"libc",
@@ -6091,7 +5868,7 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781"
dependencies = [
- "futures 0.3.29",
+ "futures",
"futures-rustls",
"libp2p-core",
"libp2p-identity",
@@ -6110,7 +5887,7 @@ version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77dff9d32353a5887adb86c8afc1de1a94d9e8c3bc6df8b2201d7cdf5c848f43"
dependencies = [
- "futures 0.3.29",
+ "futures",
"js-sys",
"libp2p-core",
"parity-send-wrapper",
@@ -6127,7 +5904,7 @@ dependencies = [
"async-trait",
"asynchronous-codec",
"bytes",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"hex",
"if-watch",
@@ -6156,7 +5933,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "111273f7b3d3510524c752e8b7a5314b7f7a1fee7e68161c01a7d72cbb06db9f"
dependencies = [
"either",
- "futures 0.3.29",
+ "futures",
"futures-rustls",
"libp2p-core",
"log",
@@ -6174,7 +5951,7 @@ version = "0.43.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd21d950662700a385d4c6d68e2f5f54d778e97068cdd718522222ef513bda"
dependencies = [
- "futures 0.3.29",
+ "futures",
"libp2p-core",
"log",
"thiserror",
@@ -6234,7 +6011,7 @@ checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451"
dependencies = [
"crunchy",
"digest 0.9.0",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -6317,6 +6094,18 @@ version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"
+[[package]]
+name = "lioness"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ae926706ba42c425c9457121178330d75e273df2e82e28b758faf3de3a9acb9"
+dependencies = [
+ "arrayref",
+ "blake2 0.8.1",
+ "chacha",
+ "keystream",
+]
+
[[package]]
name = "lock_api"
version = "0.4.11"
@@ -6388,9 +6177,9 @@ dependencies = [
[[package]]
name = "macro_magic"
-version = "0.4.2"
+version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aee866bfee30d2d7e83835a4574aad5b45adba4cc807f2a3bbba974e5d4383c9"
+checksum = "e03844fc635e92f3a0067e25fa4bf3e3dbf3f2927bf3aa01bb7bc8f1c428949d"
dependencies = [
"macro_magic_core",
"macro_magic_macros",
@@ -6400,9 +6189,9 @@ dependencies = [
[[package]]
name = "macro_magic_core"
-version = "0.4.2"
+version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7e766a20fd9c72bab3e1e64ed63f36bd08410e75803813df210d1ce297d7ad00"
+checksum = "468155613a44cfd825f1fb0ffa532b018253920d404e6fca1e8d43155198a46d"
dependencies = [
"const-random",
"derive-syn-parse",
@@ -6414,9 +6203,9 @@ dependencies = [
[[package]]
name = "macro_magic_core_macros"
-version = "0.4.3"
+version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d710e1214dffbab3b5dacb21475dde7d6ed84c69ff722b3a47a782668d44fbac"
+checksum = "9ea73aa640dc01d62a590d48c0c3521ed739d53b27f919b25c3551e233481654"
dependencies = [
"proc-macro2",
"quote",
@@ -6425,9 +6214,9 @@ dependencies = [
[[package]]
name = "macro_magic_macros"
-version = "0.4.2"
+version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b8fb85ec1620619edf2984a7693497d4ec88a9665d8b87e942856884c92dbf2a"
+checksum = "ef9d79ae96aaba821963320eb2b6e34d17df1e5a83d8a1985c29cc5be59577b3"
dependencies = [
"macro_magic_core",
"quote",
@@ -6452,7 +6241,7 @@ dependencies = [
"cumulus-test-relay-sproof-builder",
"frame-benchmarking",
"frame-executive",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"frame-system-rpc-runtime-api",
"frame-try-runtime",
@@ -6535,29 +6324,30 @@ dependencies = [
"pallet-treasury",
"pallet-utility",
"pallet-xcm",
- "parachain-info",
"parity-scale-codec",
"polkadot-parachain-primitives",
+ "polkadot-runtime-common",
"runtime-common",
"scale-info",
"serde_json",
"smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
"sp-block-builder",
"sp-consensus-aura",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-io",
"sp-keyring",
"sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
"sp-transaction-pool",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-trie",
+ "sp-version",
+ "staging-parachain-info",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -6623,7 +6413,7 @@ version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
dependencies = [
- "rustix 0.38.21",
+ "rustix 0.38.24",
]
[[package]]
@@ -6701,7 +6491,7 @@ version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69672161530e8aeca1d1400fbf3f1a1747ff60ea604265a4e906c2442df20532"
dependencies = [
- "futures 0.3.29",
+ "futures",
"rand 0.8.5",
"thrift",
]
@@ -6733,38 +6523,65 @@ dependencies = [
]
[[package]]
-name = "mmr-gadget"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+name = "mixnet"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "daa3eb39495d8e2e2947a1d862852c90cc6a4a8845f8b41c8829cb9fcc047f4a"
dependencies = [
- "futures 0.3.29",
+ "arrayref",
+ "arrayvec 0.7.4",
+ "bitflags 1.3.2",
+ "blake2 0.10.6",
+ "c2-chacha",
+ "curve25519-dalek 4.1.1",
+ "either",
+ "hashlink",
+ "lioness",
"log",
- "parity-scale-codec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-offchain",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus-beefy",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-mmr-primitives",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "parking_lot 0.12.1",
+ "rand 0.8.5",
+ "rand_chacha 0.3.1",
+ "rand_distr",
+ "subtle 2.4.1",
+ "thiserror",
+ "zeroize",
+]
+
+[[package]]
+name = "mmr-gadget"
+version = "26.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "62eff76fd1de7bad43b0e9e666970ae11ef8c24f49622585362c21ae5470986f"
+dependencies = [
+ "futures",
+ "log",
+ "parity-scale-codec",
+ "sc-client-api",
+ "sc-offchain",
+ "sp-api",
+ "sp-blockchain",
+ "sp-consensus",
+ "sp-consensus-beefy",
+ "sp-core",
+ "sp-mmr-primitives",
+ "sp-runtime",
]
[[package]]
name = "mmr-rpc"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a387f061e68601d268aade23387eaaf6542e82b357ebc1f8d6a95a251b996d30"
dependencies = [
"anyhow",
"jsonrpsee",
"parity-scale-codec",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-core",
"sp-mmr-primitives",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
]
[[package]]
@@ -6799,7 +6616,7 @@ name = "module-aggregated-dex"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-dex",
"module-support",
@@ -6809,10 +6626,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -6820,7 +6637,7 @@ name = "module-asset-registry"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex",
"log",
@@ -6832,10 +6649,10 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
]
@@ -6844,7 +6661,7 @@ name = "module-auction-manager"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"module-cdp-treasury",
@@ -6857,10 +6674,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -6868,7 +6685,7 @@ name = "module-cdp-engine"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"module-cdp-treasury",
@@ -6886,11 +6703,11 @@ dependencies = [
"parity-scale-codec",
"rand_chacha 0.2.2",
"scale-info",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -6898,7 +6715,7 @@ name = "module-cdp-treasury"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"module-dex",
@@ -6911,10 +6728,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -6923,7 +6740,7 @@ version = "2.22.0"
dependencies = [
"acala-primitives",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-aura",
@@ -6934,12 +6751,12 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"sp-consensus-aura",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
+ "sp-tracing",
]
[[package]]
@@ -6947,7 +6764,7 @@ name = "module-currencies"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex",
"hex-literal",
@@ -6961,10 +6778,10 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -6972,7 +6789,7 @@ name = "module-dex"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"module-support",
@@ -6981,10 +6798,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -6993,17 +6810,17 @@ version = "2.22.0"
dependencies = [
"acala-primitives",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-support",
"orml-traits",
"pallet-timestamp",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7011,16 +6828,16 @@ name = "module-earning"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"orml-traits",
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7028,7 +6845,7 @@ name = "module-emergency-shutdown"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-cdp-treasury",
"module-loans",
@@ -7039,10 +6856,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7050,9 +6867,9 @@ name = "module-evm"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "env_logger 0.10.0",
+ "env_logger",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex",
"hex-literal",
@@ -7076,10 +6893,10 @@ dependencies = [
"serde",
"serde_json",
"sha3",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm-builder",
"substrate-bn",
"tiny-keccak",
@@ -7091,7 +6908,7 @@ name = "module-evm-accounts"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"libsecp256k1",
"module-evm-utility-macro",
@@ -7102,10 +6919,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7114,7 +6931,7 @@ version = "2.22.0"
dependencies = [
"acala-primitives",
"ethereum-types",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex",
"impl-trait-for-tuples",
@@ -7127,10 +6944,10 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7138,10 +6955,10 @@ name = "module-evm-rpc-runtime-api"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7153,7 +6970,7 @@ dependencies = [
"evm-gasometer",
"evm-runtime",
"sha3",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-std",
]
[[package]]
@@ -7172,7 +6989,7 @@ version = "2.22.0"
dependencies = [
"acala-primitives",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"module-currencies",
@@ -7182,11 +6999,11 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
]
@@ -7195,7 +7012,7 @@ name = "module-homa-validator-list"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-support",
"orml-currencies",
@@ -7205,10 +7022,10 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7216,7 +7033,7 @@ name = "module-honzon"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-cdp-engine",
"module-cdp-treasury",
@@ -7230,10 +7047,10 @@ dependencies = [
"pallet-timestamp",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7241,7 +7058,7 @@ name = "module-honzon-bridge"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex",
"module-currencies",
@@ -7256,10 +7073,10 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7267,16 +7084,16 @@ name = "module-idle-scheduler"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"module-support",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7284,7 +7101,7 @@ name = "module-incentives"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"module-support",
@@ -7294,10 +7111,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7305,7 +7122,7 @@ name = "module-liquid-crowdloan"
version = "2.16.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-currencies",
"module-support",
@@ -7314,10 +7131,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7325,7 +7142,7 @@ name = "module-loans"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"module-cdp-treasury",
@@ -7336,10 +7153,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7348,7 +7165,7 @@ version = "2.22.0"
dependencies = [
"acala-primitives",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-currencies",
"module-support",
@@ -7361,10 +7178,10 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7372,7 +7189,7 @@ name = "module-nominees-election"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"module-support",
@@ -7382,10 +7199,10 @@ dependencies = [
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7393,17 +7210,17 @@ name = "module-prices"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-support",
"orml-tokens",
"orml-traits",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7412,14 +7229,14 @@ version = "2.22.0"
dependencies = [
"acala-primitives",
"cumulus-primitives-core",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-support",
"parity-scale-codec",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
]
@@ -7427,16 +7244,16 @@ dependencies = [
name = "module-session-manager"
version = "2.22.0"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-session",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
@@ -7444,7 +7261,7 @@ name = "module-support"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"impl-trait-for-tuples",
"nutsfinance-stable-asset",
@@ -7453,10 +7270,10 @@ dependencies = [
"scale-info",
"serde",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
]
@@ -7465,7 +7282,7 @@ name = "module-transaction-pause"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex-literal",
"log",
@@ -7476,10 +7293,10 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"smallvec",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7487,7 +7304,7 @@ name = "module-transaction-payment"
version = "2.22.0"
dependencies = [
"acala-primitives",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"module-aggregated-dex",
"module-currencies",
@@ -7501,10 +7318,10 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"smallvec",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
]
@@ -7515,7 +7332,7 @@ dependencies = [
"acala-primitives",
"cumulus-primitives-core",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"insta",
"log",
@@ -7528,10 +7345,10 @@ dependencies = [
"pallet-xcm",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -7611,7 +7428,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8552ab875c1313b97b8d20cb857b9fd63e2d1d6a0a1b53ce9821e575405f27a"
dependencies = [
"bytes",
- "futures 0.3.29",
+ "futures",
"log",
"pin-project",
"smallvec",
@@ -7705,7 +7522,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6"
dependencies = [
"bytes",
- "futures 0.3.29",
+ "futures",
"log",
"netlink-packet-core",
"netlink-sys",
@@ -7720,7 +7537,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411"
dependencies = [
"bytes",
- "futures 0.3.29",
+ "futures",
"libc",
"log",
"tokio",
@@ -7856,6 +7673,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
dependencies = [
"autocfg",
+ "libm",
]
[[package]]
@@ -7899,16 +7717,16 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
name = "nutsfinance-stable-asset"
version = "0.1.0"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"pallet-balances",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -7956,12 +7774,6 @@ version = "1.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
-[[package]]
-name = "oorandom"
-version = "11.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
-
[[package]]
name = "opaque-debug"
version = "0.2.3"
@@ -7980,15 +7792,21 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
+[[package]]
+name = "option-ext"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
+
[[package]]
name = "orchestra"
-version = "0.0.5"
+version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "227585216d05ba65c7ab0a0450a3cf2cbd81a98862a54c4df8e14d5ac6adb015"
+checksum = "46d78e1deb2a8d54fc1f063a544130db4da31dfe4d5d3b493186424910222a76"
dependencies = [
"async-trait",
"dyn-clonable",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"orchestra-proc-macro",
"pin-project",
@@ -7999,12 +7817,13 @@ dependencies = [
[[package]]
name = "orchestra-proc-macro"
-version = "0.0.5"
+version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2871aadd82a2c216ee68a69837a526dfe788ecbe74c4c5038a6acdbff6653066"
+checksum = "d035b1f968d91a826f2e34a9d6d02cb2af5aa7ca39ebd27922d850ab4b2dd2c6"
dependencies = [
- "expander 0.0.6",
- "itertools 0.10.5",
+ "expander 2.0.0",
+ "indexmap 2.1.0",
+ "itertools 0.11.0",
"petgraph",
"proc-macro-crate",
"proc-macro2",
@@ -8023,13 +7842,14 @@ dependencies = [
[[package]]
name = "orml-asset-registry"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
"cumulus-pallet-dmp-queue",
+ "cumulus-pallet-parachain-system",
"cumulus-pallet-xcm",
"cumulus-pallet-xcmp-queue",
"cumulus-primitives-core",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"orml-tokens",
@@ -8040,16 +7860,17 @@ dependencies = [
"pallet-balances",
"pallet-message-queue",
"pallet-xcm",
- "parachain-info",
"parity-scale-codec",
"polkadot-parachain-primitives",
+ "polkadot-runtime-common",
"polkadot-runtime-parachains",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "staging-parachain-info",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -8058,25 +7879,25 @@ dependencies = [
[[package]]
name = "orml-auction"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"orml-traits",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-authority"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"pallet-preimage",
"pallet-root-testing",
@@ -8084,18 +7905,18 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-benchmarking"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex-literal",
"log",
@@ -8103,26 +7924,26 @@ dependencies = [
"paste",
"scale-info",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-io",
+ "sp-runtime",
+ "sp-runtime-interface",
+ "sp-std",
+ "sp-storage",
]
[[package]]
name = "orml-build-script-utils"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
"walkdir",
]
[[package]]
name = "orml-currencies"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"orml-tokens",
"orml-traits",
@@ -8131,90 +7952,90 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-gradually-update"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-nft"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-oracle"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"orml-traits",
"orml-utilities",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-oracle-runtime-api"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
"parity-scale-codec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-std",
]
[[package]]
name = "orml-parameters"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"orml-traits",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-payments"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"orml-tokens",
@@ -8222,33 +8043,33 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-rewards"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"orml-traits",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-tokens"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"orml-traits",
@@ -8257,29 +8078,29 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "orml-tokens-runtime-api"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"parity-scale-codec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-runtime",
]
[[package]]
name = "orml-traits"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"impl-trait-for-tuples",
"num-traits",
"orml-utilities",
@@ -8287,99 +8108,100 @@ dependencies = [
"paste",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
]
[[package]]
name = "orml-unknown-tokens"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex-literal",
"orml-xcm-support",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
]
[[package]]
name = "orml-utilities"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
"serde",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-vesting"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"pallet-balances",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "orml-xcm"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"pallet-xcm",
"parity-scale-codec",
"scale-info",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-std",
"staging-xcm",
"staging-xcm-executor",
]
[[package]]
name = "orml-xcm-support"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"orml-traits",
"parity-scale-codec",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
"staging-xcm-executor",
]
[[package]]
name = "orml-xtokens"
-version = "0.5.0-dev"
+version = "0.6.1"
dependencies = [
"cumulus-pallet-dmp-queue",
+ "cumulus-pallet-parachain-system",
"cumulus-pallet-xcm",
"cumulus-pallet-xcmp-queue",
"cumulus-primitives-core",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"orml-tokens",
@@ -8389,16 +8211,17 @@ dependencies = [
"pallet-balances",
"pallet-message-queue",
"pallet-xcm",
- "parachain-info",
"parity-scale-codec",
"polkadot-parachain-primitives",
+ "polkadot-runtime-common",
"polkadot-runtime-parachains",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "staging-parachain-info",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -8427,60 +8250,80 @@ dependencies = [
"sha2 0.10.8",
]
+[[package]]
+name = "pallet-asset-rate"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "740aebbcfefe8528f56ff8a339f810520a28df3ec159d016ef719aaa9f131af4"
+dependencies = [
+ "frame-benchmarking",
+ "frame-support",
+ "frame-system",
+ "parity-scale-codec",
+ "scale-info",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
+]
+
[[package]]
name = "pallet-aura"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04fbef67cf62445b7fd8e68241e6b71d9fb8c77abb3d52259eebf525a4cd5586"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-timestamp",
"parity-scale-codec",
"scale-info",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
"sp-consensus-aura",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-authority-discovery"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fda272a66bbf1602579efcede67606ac43cda6d462ad551c527d8cadc871813d"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"pallet-session",
"parity-scale-codec",
"scale-info",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
"sp-authority-discovery",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-authorship"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2d38eab59f7d15fe43c81fc3cd92f4c1f895ca6d0efb74fc2a6d6d7d3d34d413"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"impl-trait-for-tuples",
"parity-scale-codec",
"scale-info",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-babe"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6b12430ca4b79b27231acb1ff3f99d33d6503fbeba40bfc8380e42d59b6d52b0"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-authorship",
@@ -8488,59 +8331,62 @@ dependencies = [
"pallet-timestamp",
"parity-scale-codec",
"scale-info",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
"sp-consensus-babe",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-bags-list"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d49c4448e51a5c64d63a4263aebeb2dfb90dabb48746e178b337fb7f533d45f"
dependencies = [
"aquamarine",
"docify",
"frame-benchmarking",
"frame-election-provider-support",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "sp-tracing",
]
[[package]]
name = "pallet-balances"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9de2915b425ae77d63ba25c194780599b7be25307454a138cfb316c16d001e68"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-beefy"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8563fce9fdb0e557015c0b58ed7ea7d5c1a4a1ddb1d27bf56e040d6bbf5c79e9"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-authorship",
@@ -8549,20 +8395,21 @@ dependencies = [
"scale-info",
"serde",
"sp-consensus-beefy",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-beefy-mmr"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee3ed75c348ba23064cea40dab623719ef348bfe67ea39f195f82e2e7a7d0115"
dependencies = [
- "array-bytes",
+ "array-bytes 6.2.0",
"binary-merkle-tree",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-beefy",
@@ -8571,416 +8418,439 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
"sp-consensus-beefy",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-std",
]
[[package]]
name = "pallet-bounties"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "74c0fb83c88f217e5bfe07a69a6d8a6c32d01241159ab81705ba5d4c3e24aaab"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-treasury",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-child-bounties"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2246ce705aee37f9b6ad818e3646910d31ef4191e1c234bff054a710ef8d8a38"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-bounties",
"pallet-treasury",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-collective"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dddb120b5ee520146617a8c49b4d4c980ba9188918d43085539bf78815e7ec1d"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-conviction-voting"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c8ff7512a377b708f71772e5169550cebc8f74bc8c26553015698eaa0975356"
dependencies = [
"assert_matches",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-democracy"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed9f24ad18db2eeae0f03ba1743a82aaf300e0bbd6cdcb1119b0da93eef3d77f"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-election-provider-multi-phase"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "481178ef558a9409d9c12fc01279b517e3a0a7797664e89761447dba3a182ce6"
dependencies = [
"frame-benchmarking",
"frame-election-provider-support",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-election-provider-support-benchmarking",
"parity-scale-codec",
"rand 0.8.5",
"scale-info",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-io",
"sp-npos-elections",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
"strum 0.24.1",
]
[[package]]
name = "pallet-election-provider-support-benchmarking"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b5ab6413ec88b64acf849a202795c67940dc3bcc846ce03bd0893b90e2119ecf"
dependencies = [
"frame-benchmarking",
"frame-election-provider-support",
"frame-system",
"parity-scale-codec",
"sp-npos-elections",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-elections-phragmen"
-version = "5.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "26.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "021da1d28b604b3654f895987dcb1ccb47d73102b31bc84c8f784bed261f01d8"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
"sp-npos-elections",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-fast-unstake"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "05634a197738c999a3032393916182fedccce13cb063fc330ee9bf810cd53b49"
dependencies = [
"docify",
"frame-benchmarking",
"frame-election-provider-support",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-grandpa"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b87c7f4cd94a526054dfebf7a84fbcaf6385033defa246ad83e321e71f8c5a92"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-authorship",
"pallet-session",
"parity-scale-codec",
"scale-info",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
"sp-consensus-grandpa",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-identity"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "735bf6c19d30299e2d448797170a67d41c6a8ba593fb3a71ce4e11d3b85c60e9"
dependencies = [
"enumflags2",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-im-online"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "59eb1c68cc6b4700ad1d2a81ba847ff7b37406aa0326b7716825155d3f985762"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-authorship",
"parity-scale-codec",
"scale-info",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-indices"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0893ae7f2211010e92bf57fe31f18e2223a2f97f6d6393aa7192e283ec520beb"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
"sp-keyring",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-membership"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2e1504034588eb733f8ce98b77757e9a7390662313aa133ef1e3b9fbb94359c7"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-message-queue"
-version = "7.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "28.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0776bf51d03bd746159063fa1357234feb85114273d40ef3aa3efba65d091eb4"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "sp-weights",
]
[[package]]
name = "pallet-mmr"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e2b9789cac80b48e9427724d0b400f984fb844fc711fc2dd2d0cdccdedda7169"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
"sp-mmr-primitives",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-multisig"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fea2785a0bfb1884a8283bf65010bb7189c8fce958ced9947a8c71c148ef199f"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-nis"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7aa7ec891b7f1801a405095a2ad2c70eef94d2abe86792eee54794de23cbd035"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-nomination-pools"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "22.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1896f33fff0c41934532fb492078d78b784f301ddd81e5041dd8e8279e652c49"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-balances",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
+ "sp-tracing",
]
[[package]]
name = "pallet-nomination-pools-benchmarking"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b27cbf4a47cc79862d254f16b38c68fd2dda087ce58e7c0021859d89718e865a"
dependencies = [
"frame-benchmarking",
"frame-election-provider-support",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"pallet-bags-list",
"pallet-nomination-pools",
"pallet-staking",
"parity-scale-codec",
"scale-info",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-runtime-interface",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-nomination-pools-runtime-api"
-version = "1.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "20.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "65c256cc530a19ff614f2af9b5c95ae9aa777a2bf1542aa455ae65e842f8c924"
dependencies = [
"pallet-nomination-pools",
"parity-scale-codec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-std",
]
[[package]]
name = "pallet-offences"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f3fd14c02ed4b689652826aa93284aada5a2cf859df3cc34ad88b2fd410a8c50"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-balances",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-offences-benchmarking"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b1b3ae77cfb16f0495372853d42a44e34ab7b183bd8996a8cee91715f783ff49"
dependencies = [
"frame-benchmarking",
"frame-election-provider-support",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-babe",
@@ -8992,193 +8862,204 @@ dependencies = [
"pallet-staking",
"parity-scale-codec",
"scale-info",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-preimage"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a1ed40405c758b52375cfc75aac74f10ff9bb9480569e5cfca42682e2db6c387"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-proxy"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0fbc0b550f5cbbad51f9daf795cc7046d40bbff256dae8d6072fd710ab40fd3a"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-ranked-collective"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8181da7fd6b9adf4f8641c5bcb156cd209e3226eea87ee9f9b1ac41f8e37c714"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-recovery"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "889fddd16cfdea09c2ae4dc8e9f67a1ec4b8ac680412cffb772fa572489ec687"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-referenda"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "592ff9873af379bf55e835072afd787cd6435204213ac484e86345b026f4ae4e"
dependencies = [
"assert_matches",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-root-testing"
-version = "1.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7dc1162291d0749c2826e045cfb765009725a422ed58f602149a816c637725dc"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-scheduler"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "26.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3508a51d359c6640577feead9dc00667f38cec385baad77b636c61ff746ffe24"
dependencies = [
"docify",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "sp-weights",
]
[[package]]
name = "pallet-session"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "768a6fb5333efc2bd2a3538c1d6ffa4178398660d4e3be89f2eb82d4e9088ae6"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"impl-trait-for-tuples",
"log",
"pallet-timestamp",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-state-machine",
+ "sp-std",
+ "sp-trie",
]
[[package]]
name = "pallet-session-benchmarking"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5401cee669394e86a15851ace4ad60ef1b4d656f11ff22c83d8004051279ea59"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"pallet-session",
"pallet-staking",
"parity-scale-codec",
"rand 0.8.5",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-std",
]
[[package]]
name = "pallet-society"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "36959be2c7f810ba6b8ece8cfe2ee515774c1c776f1ed0bebf3b9e8068f6a435"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"rand_chacha 0.2.2",
"scale-info",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-staking"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bed335abd32d357dd9750dae7fb87b01dfd8fe69faadcb94a6e0e0a43057d923"
dependencies = [
"frame-benchmarking",
"frame-election-provider-support",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-authorship",
@@ -9187,17 +9068,18 @@ dependencies = [
"rand_chacha 0.2.2",
"scale-info",
"serde",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-io",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "pallet-staking-reward-curve"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df8878e29f3d001ac1b1b714621f462e41a9d1fa8f385657f955e8a1ec0684d7"
dependencies = [
"proc-macro-crate",
"proc-macro2",
@@ -9207,253 +9089,258 @@ dependencies = [
[[package]]
name = "pallet-staking-reward-fn"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "16.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "45b6f832653badb5f70bdfecc1ded64b02b8159b27f18515af03f8b80f1b023b"
dependencies = [
"log",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
]
[[package]]
name = "pallet-staking-runtime-api"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "11.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "773c0d24ad4da4b505e47b43e91c8c0af4e835f16104bc770732a4796c174748"
dependencies = [
"parity-scale-codec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
]
[[package]]
name = "pallet-state-trie-migration"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "26.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "550292d79f281fd1bfbbf2643f10cef3d67068075d46374295f2efe7f7113da0"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-sudo"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fcec9f73ecb8d0439a13043a253a9fd90aa6bf5aece6470194bbfc7f79256d88"
dependencies = [
+ "docify",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-timestamp"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b25ec8749cf3f481b5e5199be701bac0dea835851b83fc7c455192762711858d"
dependencies = [
+ "docify",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-inherents",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "sp-storage",
"sp-timestamp",
]
[[package]]
name = "pallet-tips"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "81b17cf8b964e5533f1f5ac1f087f3f69adfead754cb5dd25abe395ec1e7abc9"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"pallet-treasury",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-transaction-payment"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "87ef7ceaac786e41613731e3bc48284f1aa3ec260934abda2daed949de6e5ada"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-transaction-payment-rpc"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "27.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "99adb3915b29d04362648a4be9114de3bfe37c431f214b1ef96b71f358950d9d"
dependencies = [
"jsonrpsee",
"pallet-transaction-payment-rpc-runtime-api",
"parity-scale-codec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-core",
"sp-rpc",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-weights",
]
[[package]]
name = "pallet-transaction-payment-rpc-runtime-api"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "07d87fdc4028155367c6ea98143054a6c00b38bfd77ec08681e289e429e35505"
dependencies = [
"pallet-transaction-payment",
"parity-scale-codec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-runtime",
+ "sp-weights",
]
[[package]]
name = "pallet-treasury"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8dd462af11574485864023849e0622916b611dbc88111192fb39b1e6d7e666ba"
dependencies = [
+ "docify",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"impl-trait-for-tuples",
"pallet-balances",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-utility"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85a8a6941da32837e4297e0d8abe0a5c94f348a119cccbf27b0f99ee01246c0e"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-vesting"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fd29411ef24eb6a856adf1bc33b37ead4835a25dafb1c4c8c95b13fa5247748f"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-whitelist"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d37304829099cfec7d17df70cfe11ccf6cb7bd624eab80e8e79e895859454540"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"parity-scale-codec",
"scale-info",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "pallet-xcm"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04d5e5404d9dadb39390949aadc2c641c16ce4cb0f47ed7a7ff584ab914c2984"
dependencies = [
"bounded-collections",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
"staging-xcm-executor",
]
[[package]]
name = "pallet-xcm-benchmarks"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6bfdc94e39541b111db7d2c2a95a18a3c3bb42dd37c20b8705727e617ce00c9"
dependencies = [
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"log",
"parity-scale-codec",
"scale-info",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
]
-[[package]]
-name = "parachain-info"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "cumulus-primitives-core",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "frame-system",
- "parity-scale-codec",
- "scale-info",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
[[package]]
name = "parity-bytes"
version = "0.1.2"
@@ -9466,7 +9353,7 @@ version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59e9ab494af9e6e813c72170f0d3c1de1500990d62c97cc05cc7576f91aa402f"
dependencies = [
- "blake2",
+ "blake2 0.10.6",
"crc32fast",
"fs2",
"hex",
@@ -9596,7 +9483,7 @@ checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
dependencies = [
"base64ct",
"rand_core 0.6.4",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -9801,40 +9688,13 @@ version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0"
-[[package]]
-name = "plotters"
-version = "0.3.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
-dependencies = [
- "num-traits",
- "plotters-backend",
- "plotters-svg",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "plotters-backend"
-version = "0.3.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
-
-[[package]]
-name = "plotters-svg"
-version = "0.3.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
-dependencies = [
- "plotters-backend",
-]
-
[[package]]
name = "polkadot-approval-distribution"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aafcdaca311b3f8ea463548cc2f62289a2689d3198ea8cba2d100fab378fff3c"
dependencies = [
- "futures 0.3.29",
+ "futures",
"futures-timer",
"polkadot-node-jaeger",
"polkadot-node-metrics",
@@ -9849,11 +9709,12 @@ dependencies = [
[[package]]
name = "polkadot-availability-bitfield-distribution"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "316fa25f773ac3f470578d2dc2ff73cefc2a01c9ea0a9a00767529184701792c"
dependencies = [
"always-assert",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"polkadot-node-network-protocol",
"polkadot-node-subsystem",
@@ -9865,12 +9726,13 @@ dependencies = [
[[package]]
name = "polkadot-availability-distribution"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "118ed63ece1ec1ccf240ab44d932a932ae778ece57a6fba34953b7c0b436f6b1"
dependencies = [
"derive_more",
"fatality",
- "futures 0.3.29",
+ "futures",
"parity-scale-codec",
"polkadot-erasure-coding",
"polkadot-node-network-protocol",
@@ -9880,19 +9742,21 @@ dependencies = [
"polkadot-primitives",
"rand 0.8.5",
"schnellru",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-keystore",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-availability-recovery"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "13245b9f37a4d409c47cf46f74d2601df82f1bf12678b1a792ad1aa5effebd13"
dependencies = [
+ "async-trait",
"fatality",
- "futures 0.3.29",
+ "futures",
"parity-scale-codec",
"polkadot-erasure-coding",
"polkadot-node-network-protocol",
@@ -9909,26 +9773,27 @@ dependencies = [
[[package]]
name = "polkadot-cli"
-version = "1.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dd0d87ec2b375e4f353d9fc22fa8d405578e44f1f12a7ff74936a3997f69d62f"
dependencies = [
- "clap 4.4.7",
+ "clap",
"frame-benchmarking-cli",
- "futures 0.3.29",
+ "futures",
"log",
"polkadot-node-metrics",
- "polkadot-performance-test",
+ "polkadot-node-primitives",
"polkadot-service",
"sc-cli",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-executor",
"sc-service",
"sc-storage-monitor",
"sc-sysinfo",
"sc-tracing",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
"sp-keyring",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-maybe-compressed-blob",
"substrate-build-script-utils",
"thiserror",
"try-runtime-cli",
@@ -9936,21 +9801,22 @@ dependencies = [
[[package]]
name = "polkadot-collator-protocol"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1f5ed0e739de576e41203ba99b9da1347998174a84fb5ea825f1a8e30e1dff88"
dependencies = [
"bitvec 1.0.1",
"fatality",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"polkadot-node-network-protocol",
"polkadot-node-primitives",
"polkadot-node-subsystem",
"polkadot-node-subsystem-util",
"polkadot-primitives",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-keystore",
+ "sp-runtime",
"thiserror",
"tokio-util",
"tracing-gum",
@@ -9958,24 +9824,26 @@ dependencies = [
[[package]]
name = "polkadot-core-primitives"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b08d1d6ca24e1b13f8069e015cfab794344212dd7436aadd61de8086a82664ef"
dependencies = [
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "polkadot-dispute-distribution"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ffa05fec2897e38a2ec42df5f84110fbb170dbe549d5d1e454f635b141cb2aca"
dependencies = [
"derive_more",
"fatality",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"indexmap 1.9.3",
"parity-scale-codec",
@@ -9987,32 +9855,34 @@ dependencies = [
"polkadot-primitives",
"sc-network",
"schnellru",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-keystore",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-erasure-coding"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9714c537368095f1bc2e70c45fb8ae3347c19b344f8d5b4722cc781690a74924"
dependencies = [
"parity-scale-codec",
"polkadot-node-primitives",
"polkadot-primitives",
"reed-solomon-novelpoly",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-trie",
"thiserror",
]
[[package]]
name = "polkadot-gossip-support"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9acc782f4c0efb0809cc325a49b50c498255a973dfc665e940043af20936d525"
dependencies = [
- "futures 0.3.29",
+ "futures",
"futures-timer",
"polkadot-node-network-protocol",
"polkadot-node-subsystem",
@@ -10022,22 +9892,23 @@ dependencies = [
"rand_chacha 0.3.1",
"sc-network",
"sc-network-common",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-keystore",
"tracing-gum",
]
[[package]]
name = "polkadot-network-bridge"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bf7355e7f9cac8e5fe4899796e92aea2ea94678854dc44e21890a33d4c6c6ec3"
dependencies = [
"always-assert",
"async-trait",
"bytes",
"fatality",
- "futures 0.3.29",
+ "futures",
"parity-scale-codec",
"parking_lot 0.12.1",
"polkadot-node-metrics",
@@ -10046,37 +9917,39 @@ dependencies = [
"polkadot-overseer",
"polkadot-primitives",
"sc-network",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-consensus",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-node-collation-generation"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9bed91a561c9edfc5bd1d8e432cec8cecde63aaf12131cc19881d67e39be0fce"
dependencies = [
- "futures 0.3.29",
+ "futures",
"parity-scale-codec",
"polkadot-erasure-coding",
"polkadot-node-primitives",
"polkadot-node-subsystem",
"polkadot-node-subsystem-util",
"polkadot-primitives",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-maybe-compressed-blob",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-node-core-approval-voting"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "976e5fcd0c10fbe37d120a9e4702324585e529498c56d03fd7b529f17644fe34"
dependencies = [
"bitvec 1.0.1",
"derive_more",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"kvdb",
"merlin 2.0.1",
@@ -10090,21 +9963,22 @@ dependencies = [
"sc-keystore",
"schnellru",
"schnorrkel 0.9.1",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-consensus",
"sp-consensus-slots",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-node-core-av-store"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9d1018400db515cec0748e4c83d6010601d1784350dfd465386a7ee47699cd3"
dependencies = [
"bitvec 1.0.1",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"kvdb",
"parity-scale-codec",
@@ -10115,40 +9989,42 @@ dependencies = [
"polkadot-node-subsystem-util",
"polkadot-overseer",
"polkadot-primitives",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-consensus",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-node-core-backing"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "051940f4f7214dcc370077ead642052cda2c7316641ea9ff1f05624be2a272d2"
dependencies = [
"bitvec 1.0.1",
"fatality",
- "futures 0.3.29",
+ "futures",
"polkadot-erasure-coding",
"polkadot-node-primitives",
"polkadot-node-subsystem",
"polkadot-node-subsystem-util",
"polkadot-primitives",
"polkadot-statement-table",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-keystore",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-node-core-bitfield-signing"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "77cea47f010914b5e52f2f1eb96c058cb117045c5864c733236e7b24ea103d22"
dependencies = [
- "futures 0.3.29",
+ "futures",
"polkadot-node-subsystem",
"polkadot-node-subsystem-util",
"polkadot-primitives",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-keystore",
"thiserror",
"tracing-gum",
"wasm-timer",
@@ -10156,11 +10032,12 @@ dependencies = [
[[package]]
name = "polkadot-node-core-candidate-validation"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fbb2306632d1ee08cc2f4d5945b4ec795fd79ce801ae03e79961c18877220ed2"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"parity-scale-codec",
"polkadot-node-core-pvf",
@@ -10171,31 +10048,33 @@ dependencies = [
"polkadot-overseer",
"polkadot-parachain-primitives",
"polkadot-primitives",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-maybe-compressed-blob",
"tracing-gum",
]
[[package]]
name = "polkadot-node-core-chain-api"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "712e8787fcec6e036d21421adf3db0295c142a878c482e0aba2e5aefcf050f10"
dependencies = [
- "futures 0.3.29",
+ "futures",
"polkadot-node-metrics",
"polkadot-node-subsystem",
"polkadot-primitives",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus-babe",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
"tracing-gum",
]
[[package]]
name = "polkadot-node-core-chain-selection"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8028469b10f5f1fa10ea9b08cb09bb53bcb55a25298e4154928d3aaf7d5d066a"
dependencies = [
- "futures 0.3.29",
+ "futures",
"futures-timer",
"kvdb",
"parity-scale-codec",
@@ -10209,11 +10088,12 @@ dependencies = [
[[package]]
name = "polkadot-node-core-dispute-coordinator"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "662387f0e7b23596326754796fbb6f52e32c3deb0c11f9ff341e23a0a7139608"
dependencies = [
"fatality",
- "futures 0.3.29",
+ "futures",
"kvdb",
"parity-scale-codec",
"polkadot-node-primitives",
@@ -10228,29 +10108,31 @@ dependencies = [
[[package]]
name = "polkadot-node-core-parachains-inherent"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ec0f57ce13de845fe1441fa3ab3405dcb142d3dc0ea985c4e28efa35b97d07d0"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"polkadot-node-subsystem",
"polkadot-overseer",
"polkadot-primitives",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-inherents",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-node-core-prospective-parachains"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "3.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5a010a14312c5c5eec800397cc60cce10131d4a29cedf563ee639fc7b9b27ba1"
dependencies = [
"bitvec 1.0.1",
"fatality",
- "futures 0.3.29",
+ "futures",
"parity-scale-codec",
"polkadot-node-primitives",
"polkadot-node-subsystem",
@@ -10262,12 +10144,13 @@ dependencies = [
[[package]]
name = "polkadot-node-core-provisioner"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d8a67ac3aa0a0e89ff20d5eb761fca78c124848a2627e35343e824d78cc9fe91"
dependencies = [
"bitvec 1.0.1",
"fatality",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"polkadot-node-primitives",
"polkadot-node-subsystem",
@@ -10279,30 +10162,29 @@ dependencies = [
[[package]]
name = "polkadot-node-core-pvf"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6f58224dbfbd773947ff3fccc3318bda11909e8a0f7c36f7f1234c0c1f25a62a"
dependencies = [
"always-assert",
- "futures 0.3.29",
+ "cfg-if",
+ "futures",
"futures-timer",
+ "is_executable",
"libc",
"parity-scale-codec",
"pin-project",
"polkadot-core-primitives",
"polkadot-node-core-pvf-common",
- "polkadot-node-core-pvf-execute-worker",
- "polkadot-node-core-pvf-prepare-worker",
"polkadot-node-metrics",
"polkadot-node-primitives",
"polkadot-parachain-primitives",
"polkadot-primitives",
"rand 0.8.5",
"slotmap",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-build-script-utils",
+ "sp-core",
+ "sp-maybe-compressed-blob",
+ "sp-wasm-interface",
"tempfile",
"tokio",
"tracing-gum",
@@ -10310,104 +10192,67 @@ dependencies = [
[[package]]
name = "polkadot-node-core-pvf-checker"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7abe14484e66b365748bd4b2988cc2c68e03146bc399bdf8139f9eb5cf6c6cf0"
dependencies = [
- "futures 0.3.29",
+ "futures",
"polkadot-node-primitives",
"polkadot-node-subsystem",
"polkadot-node-subsystem-util",
"polkadot-overseer",
"polkadot-primitives",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-keystore",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-node-core-pvf-common"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94004d011a260b8efdf6ddf80ac815ba6ede84bb46e32d588161c1d860c5a65d"
dependencies = [
+ "cfg-if",
"cpu-time",
- "futures 0.3.29",
+ "futures",
"landlock",
"libc",
"parity-scale-codec",
"polkadot-parachain-primitives",
"polkadot-primitives",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-executor-wasmtime 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-executor",
+ "sc-executor-common",
+ "sc-executor-wasmtime",
+ "sp-core",
+ "sp-externalities",
+ "sp-io",
+ "sp-tracing",
"tokio",
"tracing-gum",
]
[[package]]
-name = "polkadot-node-core-pvf-execute-worker"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#c8d2251cafadc108ba2f1f8a3208dc547ff38901"
+name = "polkadot-node-core-runtime-api"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dccc7a95fea3562bd3a47f22c0e4ddcb755114dc0477f3173db8d5ebf0d84f50"
dependencies = [
- "cpu-time",
- "futures 0.3.29",
- "parity-scale-codec",
- "polkadot-node-core-pvf-common",
- "polkadot-parachain-primitives",
+ "futures",
+ "polkadot-node-metrics",
+ "polkadot-node-subsystem",
+ "polkadot-node-subsystem-types",
"polkadot-primitives",
- "rayon",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "tokio",
+ "schnellru",
+ "sp-consensus-babe",
"tracing-gum",
]
[[package]]
-name = "polkadot-node-core-pvf-prepare-worker"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "futures 0.3.29",
- "libc",
- "parity-scale-codec",
- "polkadot-node-core-pvf-common",
- "polkadot-parachain-primitives",
- "polkadot-primitives",
- "rayon",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-executor-wasmtime 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "tikv-jemalloc-ctl",
- "tokio",
- "tracing-gum",
-]
-
-[[package]]
-name = "polkadot-node-core-runtime-api"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "futures 0.3.29",
- "polkadot-node-metrics",
- "polkadot-node-subsystem",
- "polkadot-node-subsystem-types",
- "polkadot-primitives",
- "schnellru",
- "sp-consensus-babe",
- "tracing-gum",
-]
-
-[[package]]
-name = "polkadot-node-jaeger"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+name = "polkadot-node-jaeger"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2cfe6d4769181dce55b1b8fc53f0bd85bb4aa20473702fbce95a94abafa19379"
dependencies = [
"lazy_static",
"log",
@@ -10417,18 +10262,19 @@ dependencies = [
"polkadot-node-primitives",
"polkadot-primitives",
"sc-network",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
"thiserror",
"tokio",
]
[[package]]
name = "polkadot-node-metrics"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c51a586fc3ef87c685588a650c18882b4cf069d8adc0d7d9bd2670749cb4e82b"
dependencies = [
"bs58 0.5.0",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"log",
"parity-scale-codec",
@@ -10437,21 +10283,22 @@ dependencies = [
"sc-cli",
"sc-service",
"sc-tracing",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "substrate-prometheus-endpoint",
"tracing-gum",
]
[[package]]
name = "polkadot-node-network-protocol"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f6de513655bf71400299cda1ccaebfa612fd3965e7ce5a9120b4ff37bfc80931"
dependencies = [
- "async-channel",
+ "async-channel 1.9.0",
"async-trait",
"bitvec 1.0.1",
"derive_more",
"fatality",
- "futures 0.3.29",
+ "futures",
"hex",
"parity-scale-codec",
"polkadot-node-jaeger",
@@ -10467,30 +10314,32 @@ dependencies = [
[[package]]
name = "polkadot-node-primitives"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3e82ee5edac871310bd1ce16a035ad2fc901d6ddd69ea0bbabc7f0a70a02770a"
dependencies = [
"bounded-vec",
- "futures 0.3.29",
+ "futures",
"parity-scale-codec",
"polkadot-parachain-primitives",
"polkadot-primitives",
"schnorrkel 0.9.1",
"serde",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
"sp-consensus-babe",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-keystore",
+ "sp-maybe-compressed-blob",
+ "sp-runtime",
"thiserror",
"zstd 0.12.4",
]
[[package]]
name = "polkadot-node-subsystem"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0e89d3f964ebd57275c2fff4d3cc755d210698fedeac1a0a238c0eb31534c96d"
dependencies = [
"polkadot-node-jaeger",
"polkadot-node-subsystem-types",
@@ -10499,37 +10348,40 @@ dependencies = [
[[package]]
name = "polkadot-node-subsystem-types"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e1013b3bac6e9b76bbd71433c3eba36b5c0fa9306bfc473ec02e3a104e156d2"
dependencies = [
"async-trait",
"derive_more",
- "futures 0.3.29",
+ "futures",
"orchestra",
"polkadot-node-jaeger",
"polkadot-node-network-protocol",
"polkadot-node-primitives",
"polkadot-primitives",
"polkadot-statement-table",
+ "sc-client-api",
"sc-network",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
"smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
"sp-authority-discovery",
"sp-consensus-babe",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "substrate-prometheus-endpoint",
"thiserror",
]
[[package]]
name = "polkadot-node-subsystem-util"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8134075bfee921305ff229412e9282a3351215bf049c6a403197cc795f919941"
dependencies = [
"async-trait",
"derive_more",
"fatality",
- "futures 0.3.29",
+ "futures",
"futures-channel",
"itertools 0.10.5",
"kvdb",
@@ -10542,25 +10394,28 @@ dependencies = [
"polkadot-node-network-protocol",
"polkadot-node-primitives",
"polkadot-node-subsystem",
+ "polkadot-node-subsystem-types",
"polkadot-overseer",
"polkadot-primitives",
"prioritized-metered-channel",
"rand 0.8.5",
+ "sc-client-api",
"schnellru",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-keystore",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-overseer"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e2f547e981cbd72357ba30952193844d30de5063e9d304c117c9b941f12b5f84"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"orchestra",
"parking_lot 0.12.1",
@@ -10569,53 +10424,36 @@ dependencies = [
"polkadot-node-primitives",
"polkadot-node-subsystem-types",
"polkadot-primitives",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "schnellru",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sp-api",
+ "sp-core",
"tikv-jemalloc-ctl",
"tracing-gum",
]
[[package]]
name = "polkadot-parachain-primitives"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "3.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "42265630c0c48e25d7ee5a9f4bdcafd003be65c0a44deeb6541620ca169fa519"
dependencies = [
"bounded-collections",
"derive_more",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"parity-scale-codec",
"polkadot-core-primitives",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "polkadot-performance-test"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "env_logger 0.9.3",
- "log",
- "polkadot-erasure-coding",
- "polkadot-node-core-pvf-prepare-worker",
- "polkadot-node-primitives",
- "polkadot-primitives",
- "quote",
- "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "staging-kusama-runtime",
- "thiserror",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "polkadot-primitives"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee4508ff6b035edc08c54bb61238500179963f6f1eb8266dce6a5625509124bc"
dependencies = [
"bitvec 1.0.1",
"hex-literal",
@@ -10624,31 +10462,32 @@ dependencies = [
"polkadot-parachain-primitives",
"scale-info",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-arithmetic",
"sp-authority-discovery",
"sp-consensus-slots",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-io",
+ "sp-keystore",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "polkadot-rpc"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ce0432643ea2e4923db1f0ba6c82305c53725e18c857e911c4d979e4f7aafae5"
dependencies = [
"jsonrpsee",
"mmr-rpc",
"pallet-transaction-payment-rpc",
"polkadot-primitives",
"sc-chain-spec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus-babe",
"sc-consensus-babe-rpc",
"sc-consensus-beefy",
@@ -10658,128 +10497,33 @@ dependencies = [
"sc-consensus-grandpa-rpc",
"sc-rpc",
"sc-sync-state-rpc",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
+ "sp-api",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-babe",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-keystore",
+ "sp-runtime",
"substrate-frame-rpc-system",
"substrate-state-trie-migration-rpc",
]
-[[package]]
-name = "polkadot-runtime"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "bitvec 1.0.1",
- "frame-benchmarking",
- "frame-election-provider-support",
- "frame-executive",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "frame-system",
- "frame-system-benchmarking",
- "frame-system-rpc-runtime-api",
- "frame-try-runtime",
- "hex-literal",
- "log",
- "pallet-authority-discovery",
- "pallet-authorship",
- "pallet-babe",
- "pallet-bags-list",
- "pallet-balances",
- "pallet-bounties",
- "pallet-child-bounties",
- "pallet-collective",
- "pallet-conviction-voting",
- "pallet-democracy",
- "pallet-election-provider-multi-phase",
- "pallet-election-provider-support-benchmarking",
- "pallet-elections-phragmen",
- "pallet-fast-unstake",
- "pallet-grandpa",
- "pallet-identity",
- "pallet-im-online",
- "pallet-indices",
- "pallet-membership",
- "pallet-message-queue",
- "pallet-multisig",
- "pallet-nomination-pools",
- "pallet-nomination-pools-benchmarking",
- "pallet-nomination-pools-runtime-api",
- "pallet-offences",
- "pallet-offences-benchmarking",
- "pallet-preimage",
- "pallet-proxy",
- "pallet-referenda",
- "pallet-scheduler",
- "pallet-session",
- "pallet-session-benchmarking",
- "pallet-staking",
- "pallet-staking-reward-curve",
- "pallet-staking-runtime-api",
- "pallet-timestamp",
- "pallet-tips",
- "pallet-transaction-payment",
- "pallet-transaction-payment-rpc-runtime-api",
- "pallet-treasury",
- "pallet-utility",
- "pallet-vesting",
- "pallet-whitelist",
- "pallet-xcm",
- "pallet-xcm-benchmarks",
- "parity-scale-codec",
- "polkadot-primitives",
- "polkadot-runtime-common",
- "polkadot-runtime-constants",
- "polkadot-runtime-parachains",
- "rustc-hex",
- "scale-info",
- "serde",
- "serde_derive",
- "smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-authority-discovery",
- "sp-block-builder",
- "sp-consensus-babe",
- "sp-consensus-beefy",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-mmr-primitives",
- "sp-npos-elections",
- "sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-transaction-pool",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "staging-xcm",
- "staging-xcm-builder",
- "staging-xcm-executor",
- "static_assertions",
- "substrate-wasm-builder",
-]
-
[[package]]
name = "polkadot-runtime-common"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a788f8ed8b33262c33f72d78e3416c5991e40d333178ae43000a92181ee44bca"
dependencies = [
"bitvec 1.0.1",
"frame-benchmarking",
"frame-election-provider-support",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"impl-trait-for-tuples",
"libsecp256k1",
"log",
+ "pallet-asset-rate",
"pallet-authorship",
"pallet-babe",
"pallet-balances",
@@ -10792,6 +10536,7 @@ dependencies = [
"pallet-transaction-payment",
"pallet-treasury",
"pallet-vesting",
+ "pallet-xcm-benchmarks",
"parity-scale-codec",
"polkadot-primitives",
"polkadot-runtime-parachains",
@@ -10800,56 +10545,46 @@ dependencies = [
"serde",
"serde_derive",
"slot-range-helper",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-core",
+ "sp-inherents",
+ "sp-io",
"sp-npos-elections",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
"staging-xcm",
+ "staging-xcm-builder",
+ "staging-xcm-executor",
"static_assertions",
]
-[[package]]
-name = "polkadot-runtime-constants"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "polkadot-primitives",
- "polkadot-runtime-common",
- "smallvec",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
[[package]]
name = "polkadot-runtime-metrics"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bfe45b01d9d621174c9c0eef0871aeead5986393838206fe58df3ae414bcb8d2"
dependencies = [
"bs58 0.5.0",
"frame-benchmarking",
"parity-scale-codec",
"polkadot-primitives",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-std",
+ "sp-tracing",
]
[[package]]
name = "polkadot-runtime-parachains"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "936dbae8a7a88dba07da726d779126716e05364d8475ced1c313f32755050a02"
dependencies = [
"bitflags 1.3.2",
"bitvec 1.0.1",
"derive_more",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"impl-trait-for-tuples",
"log",
@@ -10863,6 +10598,7 @@ dependencies = [
"pallet-timestamp",
"pallet-vesting",
"parity-scale-codec",
+ "polkadot-core-primitives",
"polkadot-parachain-primitives",
"polkadot-primitives",
"polkadot-runtime-metrics",
@@ -10871,16 +10607,16 @@ dependencies = [
"rustc-hex",
"scale-info",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-inherents",
+ "sp-io",
+ "sp-keystore",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
"staging-xcm",
"staging-xcm-executor",
"static_assertions",
@@ -10888,16 +10624,17 @@ dependencies = [
[[package]]
name = "polkadot-service"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "afc65d44c4dd6a8be74194dcac66552dd4e79ee0bcc287349721925e8238177a"
dependencies = [
"async-trait",
"frame-benchmarking",
"frame-benchmarking-cli",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"frame-system-rpc-runtime-api",
- "futures 0.3.29",
+ "futures",
"hex-literal",
"is_executable",
"kvdb",
@@ -10944,8 +10681,6 @@ dependencies = [
"polkadot-parachain-primitives",
"polkadot-primitives",
"polkadot-rpc",
- "polkadot-runtime",
- "polkadot-runtime-common",
"polkadot-runtime-parachains",
"polkadot-statement-distribution",
"rococo-runtime",
@@ -10954,14 +10689,14 @@ dependencies = [
"sc-basic-authorship",
"sc-block-builder",
"sc-chain-spec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-client-db 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-client-db",
"sc-consensus",
"sc-consensus-babe",
"sc-consensus-beefy",
"sc-consensus-grandpa",
"sc-consensus-slots",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-executor",
"sc-keystore",
"sc-network",
"sc-network-common",
@@ -10972,35 +10707,34 @@ dependencies = [
"sc-sysinfo",
"sc-telemetry",
"sc-transaction-pool",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
"schnellru",
"serde",
"serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
"sp-authority-discovery",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-babe",
"sp-consensus-beefy",
"sp-consensus-grandpa",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-io",
"sp-keyring",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-keystore",
"sp-mmr-primitives",
"sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-state-machine",
+ "sp-storage",
"sp-timestamp",
"sp-transaction-pool",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "staging-kusama-runtime",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-version",
+ "sp-weights",
+ "substrate-prometheus-endpoint",
"thiserror",
"tracing-gum",
"westend-runtime",
@@ -11008,13 +10742,14 @@ dependencies = [
[[package]]
name = "polkadot-statement-distribution"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f6992cb6e2ba744752f9f403cb5e0f70ac5431f39f9ea859a3978f22c79799cb"
dependencies = [
"arrayvec 0.7.4",
"bitvec 1.0.1",
"fatality",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"indexmap 1.9.3",
"parity-scale-codec",
@@ -11024,132 +10759,21 @@ dependencies = [
"polkadot-node-subsystem-types",
"polkadot-node-subsystem-util",
"polkadot-primitives",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-keystore",
+ "sp-staking",
"thiserror",
"tracing-gum",
]
[[package]]
name = "polkadot-statement-table"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "parity-scale-codec",
- "polkadot-primitives",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "polkadot-test-runtime"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "22b2a11cb8871f7e30a8f5e455c92d19a186065644ee00f9acda550ff89dacce"
dependencies = [
- "bitvec 1.0.1",
- "frame-election-provider-support",
- "frame-executive",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "frame-system",
- "frame-system-rpc-runtime-api",
- "log",
- "pallet-authority-discovery",
- "pallet-authorship",
- "pallet-babe",
- "pallet-balances",
- "pallet-grandpa",
- "pallet-indices",
- "pallet-offences",
- "pallet-session",
- "pallet-staking",
- "pallet-staking-reward-curve",
- "pallet-sudo",
- "pallet-timestamp",
- "pallet-transaction-payment",
- "pallet-transaction-payment-rpc-runtime-api",
- "pallet-vesting",
- "pallet-xcm",
"parity-scale-codec",
- "polkadot-parachain-primitives",
- "polkadot-primitives",
- "polkadot-runtime-common",
- "polkadot-runtime-parachains",
- "rustc-hex",
- "scale-info",
- "serde",
- "serde_derive",
- "smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-authority-discovery",
- "sp-block-builder",
- "sp-consensus-babe",
- "sp-consensus-beefy",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-mmr-primitives",
- "sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-transaction-pool",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "staging-xcm",
- "staging-xcm-builder",
- "staging-xcm-executor",
- "substrate-wasm-builder",
- "test-runtime-constants",
-]
-
-[[package]]
-name = "polkadot-test-service"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#c8d2251cafadc108ba2f1f8a3208dc547ff38901"
-dependencies = [
- "frame-system",
- "futures 0.3.29",
- "hex",
- "pallet-balances",
- "pallet-staking",
- "pallet-transaction-payment",
- "polkadot-node-primitives",
- "polkadot-node-subsystem",
- "polkadot-overseer",
- "polkadot-parachain-primitives",
"polkadot-primitives",
- "polkadot-rpc",
- "polkadot-runtime-common",
- "polkadot-runtime-parachains",
- "polkadot-service",
- "polkadot-test-runtime",
- "rand 0.8.5",
- "sc-authority-discovery",
- "sc-chain-spec",
- "sc-cli",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-consensus",
- "sc-consensus-babe",
- "sc-consensus-grandpa",
- "sc-network",
- "sc-service",
- "sc-tracing",
- "sc-transaction-pool",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-authority-discovery",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus-babe",
- "sp-consensus-grandpa",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keyring",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-test-client",
- "tempfile",
- "test-runtime-constants",
- "tokio",
- "tracing-gum",
+ "sp-core",
]
[[package]]
@@ -11177,22 +10801,11 @@ dependencies = [
"cfg-if",
"concurrent-queue",
"pin-project-lite 0.2.13",
- "rustix 0.38.21",
+ "rustix 0.38.24",
"tracing",
"windows-sys 0.48.0",
]
-[[package]]
-name = "poly1305"
-version = "0.7.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"
-dependencies = [
- "cpufeatures",
- "opaque-debug 0.3.0",
- "universal-hash 0.4.1",
-]
-
[[package]]
name = "poly1305"
version = "0.8.0"
@@ -11234,15 +10847,6 @@ version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b"
-[[package]]
-name = "portpicker"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9"
-dependencies = [
- "rand 0.8.5",
-]
-
[[package]]
name = "powerfmt"
version = "0.2.0"
@@ -11321,14 +10925,14 @@ dependencies = [
[[package]]
name = "prioritized-metered-channel"
-version = "0.2.0"
+version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "382698e48a268c832d0b181ed438374a6bb708a82a8ca273bb0f61c74cf209c4"
+checksum = "e99f0c89bd88f393aab44a4ab949351f7bc7e7e1179d11ecbfe50cbe4c47e342"
dependencies = [
"coarsetime",
"crossbeam-queue",
"derive_more",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"nanorand",
"thiserror",
@@ -11371,9 +10975,9 @@ dependencies = [
[[package]]
name = "proc-macro-warning"
-version = "0.4.2"
+version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d1eaa7fa0aa1929ffdf7eeb6eac234dde6268914a14ad44d23521ab6a9b258e"
+checksum = "9b698b0b09d40e9b7c1a47b132d66a8b54bcd20583d9b6d06e4535e383b4405c"
dependencies = [
"proc-macro2",
"quote",
@@ -11629,6 +11233,16 @@ dependencies = [
"getrandom 0.2.11",
]
+[[package]]
+name = "rand_distr"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
+dependencies = [
+ "num-traits",
+ "rand 0.8.5",
+]
+
[[package]]
name = "rand_hc"
version = "0.2.0"
@@ -11853,22 +11467,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
dependencies = [
"hmac 0.12.1",
- "subtle",
-]
-
-[[package]]
-name = "ring"
-version = "0.1.0"
-source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213"
-dependencies = [
- "ark-ec",
- "ark-ff",
- "ark-poly",
- "ark-serialize",
- "ark-std",
- "common",
- "fflonk",
- "merlin 3.0.0",
+ "subtle 2.4.1",
]
[[package]]
@@ -11943,19 +11542,21 @@ dependencies = [
[[package]]
name = "rococo-runtime"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4198843a4ec01f56b58ee26e15df123593da562a07b838c66c4e519dbfc1922d"
dependencies = [
"binary-merkle-tree",
"frame-benchmarking",
"frame-executive",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"frame-system-benchmarking",
"frame-system-rpc-runtime-api",
"frame-try-runtime",
"hex-literal",
"log",
+ "pallet-asset-rate",
"pallet-authority-discovery",
"pallet-authorship",
"pallet-babe",
@@ -11965,6 +11566,7 @@ dependencies = [
"pallet-bounties",
"pallet-child-bounties",
"pallet-collective",
+ "pallet-conviction-voting",
"pallet-democracy",
"pallet-elections-phragmen",
"pallet-grandpa",
@@ -11979,7 +11581,9 @@ dependencies = [
"pallet-offences",
"pallet-preimage",
"pallet-proxy",
+ "pallet-ranked-collective",
"pallet-recovery",
+ "pallet-referenda",
"pallet-scheduler",
"pallet-session",
"pallet-society",
@@ -11993,6 +11597,7 @@ dependencies = [
"pallet-treasury",
"pallet-utility",
"pallet-vesting",
+ "pallet-whitelist",
"pallet-xcm",
"pallet-xcm-benchmarks",
"parity-scale-codec",
@@ -12005,23 +11610,25 @@ dependencies = [
"serde",
"serde_derive",
"smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-arithmetic",
"sp-authority-discovery",
"sp-block-builder",
"sp-consensus-babe",
"sp-consensus-beefy",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-genesis-builder",
+ "sp-inherents",
+ "sp-io",
"sp-mmr-primitives",
"sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
+ "sp-storage",
"sp-transaction-pool",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-version",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -12031,27 +11638,29 @@ dependencies = [
[[package]]
name = "rococo-runtime-constants"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "272eaa4f1b4b5357d89d1f8f504cb5ee81a105bf7e5c295f053c6e521f2a199b"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"polkadot-primitives",
"polkadot-runtime-common",
"smallvec",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
+ "sp-weights",
+ "staging-xcm",
]
[[package]]
name = "rpassword"
-version = "7.2.0"
+version = "7.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6678cf63ab3491898c0d021b493c94c9b221d91295294a2a5746eacbe5928322"
+checksum = "80472be3c897911d0137b2d2b9055faf6eeac5b14e324073d83bc17b191d7e3f"
dependencies = [
"libc",
"rtoolbox",
- "winapi",
+ "windows-sys 0.48.0",
]
[[package]]
@@ -12071,7 +11680,7 @@ version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0"
dependencies = [
- "futures 0.3.29",
+ "futures",
"log",
"netlink-packet-route",
"netlink-proto",
@@ -12082,12 +11691,12 @@ dependencies = [
[[package]]
name = "rtoolbox"
-version = "0.0.1"
+version = "0.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "034e22c514f5c0cb8a10ff341b9b048b5ceb21591f31c8f44c43b960f9b3524a"
+checksum = "c247d24e63230cdb56463ae328478bd5eac8b8faa8c69461a77e8e323afac90e"
dependencies = [
"libc",
- "winapi",
+ "windows-sys 0.48.0",
]
[[package]]
@@ -12112,7 +11721,7 @@ dependencies = [
"cumulus-pallet-parachain-system",
"cumulus-pallet-xcm",
"ethabi",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"hex-literal",
"log",
@@ -12157,13 +11766,12 @@ dependencies = [
"parity-scale-codec",
"polkadot-parachain-primitives",
"polkadot-primitives",
- "polkadot-runtime",
"scale-info",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -12188,8 +11796,8 @@ dependencies = [
"cumulus-primitives-timestamp",
"cumulus-primitives-utility",
"cumulus-test-relay-sproof-builder",
- "env_logger 0.10.0",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "env_logger",
+ "frame-support",
"frame-system",
"hex",
"hex-literal",
@@ -12257,30 +11865,29 @@ dependencies = [
"pallet-treasury",
"pallet-utility",
"pallet-xcm",
- "parachain-info",
"parity-scale-codec",
"polkadot-cli",
- "polkadot-test-runtime",
"runtime-common",
"serde_json",
"smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
"sp-block-builder",
"sp-consensus-aura",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-io",
"sp-keyring",
"sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
+ "sp-tracing",
"sp-transaction-pool",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-trie",
+ "sp-version",
+ "staging-parachain-info",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -12352,9 +11959,9 @@ dependencies = [
[[package]]
name = "rustix"
-version = "0.38.21"
+version = "0.38.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3"
+checksum = "9ad981d6c340a49cdc40a1028d9c6084ec7e9fa33fcb839cab656a267071e234"
dependencies = [
"bitflags 2.4.1",
"errno",
@@ -12414,9 +12021,9 @@ dependencies = [
[[package]]
name = "rustls-pemfile"
-version = "1.0.3"
+version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
+checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
dependencies = [
"base64 0.21.5",
]
@@ -12454,7 +12061,7 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26338f5e09bb721b85b135ea05af7767c90b52f6de4f087d4f4a3a9d64e7dc04"
dependencies = [
- "futures 0.3.29",
+ "futures",
"pin-project",
"static_assertions",
]
@@ -12485,33 +12092,24 @@ dependencies = [
[[package]]
name = "sc-allocator"
-version = "4.1.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "log",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
-]
-
-[[package]]
-name = "sc-allocator"
-version = "4.1.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "20.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "66b4c5976a9cff7fcf24c946276a62ea7837862b6f3bf9f8011f08faf4f08474"
dependencies = [
"log",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-wasm-interface",
"thiserror",
]
[[package]]
name = "sc-authority-discovery"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fb7e0e8a4ea5304b65d49c0085a458ed2e43394f95457689875d3e0c6e118dee"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"ip_network",
"libp2p",
@@ -12521,79 +12119,83 @@ dependencies = [
"prost",
"prost-build",
"rand 0.8.5",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-network",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
"sp-authority-discovery",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-core",
+ "sp-keystore",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"thiserror",
]
[[package]]
name = "sc-basic-authorship"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b0aa6c85e3e0b5af9cab7078166d8c4575b7b9edac0ade6be1aadee828420104"
dependencies = [
- "futures 0.3.29",
+ "futures",
"futures-timer",
"log",
"parity-scale-codec",
"sc-block-builder",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-proposer-metrics",
"sc-telemetry",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
+ "sp-api",
+ "sp-blockchain",
+ "sp-consensus",
+ "sp-core",
+ "sp-inherents",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
]
[[package]]
name = "sc-block-builder"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9d3999b9b758c09a6c1155e481b683ee87712f071cc5a0679f9ee4906a14a404"
dependencies = [
"parity-scale-codec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sp-api",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-core",
+ "sp-inherents",
+ "sp-runtime",
]
[[package]]
name = "sc-chain-spec"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ec7e711ea9870d3fb8e2a3ea5b601a9e20c63d0d2f457f40146407721e246a77"
dependencies = [
"memmap2",
"sc-chain-spec-derive",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-executor",
"sc-network",
"sc-telemetry",
"serde",
"serde_json",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-core",
+ "sp-runtime",
+ "sp-state-machine",
]
[[package]]
name = "sc-chain-spec-derive"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1f25158f791eb48715da9322375598b541cadd1f193674e8a4d77c79ffa3d95d"
dependencies = [
"proc-macro-crate",
"proc-macro2",
@@ -12603,14 +12205,15 @@ dependencies = [
[[package]]
name = "sc-cli"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.33.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "22c61058223f80c1f961b03f7737529609a3283eef91129e971a1966101c18ea"
dependencies = [
- "array-bytes",
+ "array-bytes 6.2.0",
"chrono",
- "clap 4.4.7",
+ "clap",
"fdlimit",
- "futures 0.3.29",
+ "futures",
"libp2p-identity",
"log",
"names",
@@ -12618,23 +12221,24 @@ dependencies = [
"rand 0.8.5",
"regex",
"rpassword",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-client-db 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-client-db",
"sc-keystore",
+ "sc-mixnet",
"sc-network",
"sc-service",
"sc-telemetry",
"sc-tracing",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-utils",
"serde",
"serde_json",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-core",
"sp-keyring",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-panic-handler 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-keystore",
+ "sp-panic-handler",
+ "sp-runtime",
+ "sp-version",
"thiserror",
"tiny-bip39",
"tokio",
@@ -12642,86 +12246,37 @@ dependencies = [
[[package]]
name = "sc-client-api"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "fnv",
- "futures 0.3.29",
- "log",
- "parity-scale-codec",
- "parking_lot 0.12.1",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-database 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-statement-store 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sc-client-api"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c7d32101f415f4d7ddbe8b5de1c1387a78d6dce070e26407ec605fe9f3fc9e23"
dependencies = [
"fnv",
- "futures 0.3.29",
- "log",
- "parity-scale-codec",
- "parking_lot 0.12.1",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-database 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-statement-store 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sc-client-db"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "hash-db 0.16.0",
- "kvdb",
- "kvdb-memorydb",
- "kvdb-rocksdb",
- "linked-hash-map",
+ "futures",
"log",
- "parity-db",
"parity-scale-codec",
"parking_lot 0.12.1",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sc-state-db 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "schnellru",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-database 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
+ "sc-executor",
+ "sc-transaction-pool-api",
+ "sc-utils",
+ "sp-api",
+ "sp-blockchain",
+ "sp-consensus",
+ "sp-core",
+ "sp-database",
+ "sp-externalities",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-statement-store",
+ "sp-storage",
+ "sp-trie",
+ "substrate-prometheus-endpoint",
]
[[package]]
name = "sc-client-db"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.32.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d4ced79f609a44782874d856cf39d256838957195ef34f4fb8ced90bf4b725d0"
dependencies = [
"hash-db 0.16.0",
"kvdb",
@@ -12732,170 +12287,175 @@ dependencies = [
"parity-db",
"parity-scale-codec",
"parking_lot 0.12.1",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-state-db 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-state-db",
"schnellru",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-database 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-blockchain",
+ "sp-core",
+ "sp-database",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-trie",
]
[[package]]
name = "sc-consensus"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "86e4100cc8fb3876708e1ec5a7c63af3baa75febd5051beb9ddd1e4835fdfc27"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"libp2p-identity",
"log",
"mockall",
"parking_lot 0.12.1",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-utils",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-consensus",
+ "sp-core",
+ "sp-runtime",
+ "sp-state-machine",
+ "substrate-prometheus-endpoint",
"thiserror",
]
[[package]]
name = "sc-consensus-aura"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5e3e282836a7deeeb71d965a0942828f81ae2b03fd67515b733d5f33dd5da855"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"log",
"parity-scale-codec",
"sc-block-builder",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-consensus-slots",
"sc-telemetry",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-aura",
"sp-consensus-slots",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-keystore",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"thiserror",
]
[[package]]
name = "sc-consensus-babe"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9a48ef5eaf7bffc647dfdfd42c7c02a929d89410b065beeb80753fd94f5fe70d"
dependencies = [
"async-trait",
"fork-tree",
- "futures 0.3.29",
+ "futures",
"log",
"num-bigint",
"num-rational",
"num-traits",
"parity-scale-codec",
"parking_lot 0.12.1",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-consensus-epochs",
"sc-consensus-slots",
"sc-telemetry",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "scale-info",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
+ "sp-api",
+ "sp-application-crypto",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-babe",
"sp-consensus-slots",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-keystore",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"thiserror",
]
[[package]]
name = "sc-consensus-babe-rpc"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4a78a543d8d2e8d9a6a8b60f16ac12e6fbeffbc2322ef8fa139f733ce53ccaa8"
dependencies = [
- "futures 0.3.29",
+ "futures",
"jsonrpsee",
"sc-consensus-babe",
"sc-consensus-epochs",
"sc-rpc-api",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-babe",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-keystore",
+ "sp-runtime",
"thiserror",
]
[[package]]
name = "sc-consensus-beefy"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a3709a96723feaeb7a7ca0d3f7995d084029f8effeeb09d45975a8aa3ba1a63b"
dependencies = [
- "array-bytes",
- "async-channel",
+ "array-bytes 6.2.0",
+ "async-channel 1.9.0",
"async-trait",
"fnv",
- "futures 0.3.29",
+ "futures",
"log",
"parity-scale-codec",
"parking_lot 0.12.1",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-network",
"sc-network-gossip",
"sc-network-sync",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-utils",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-arithmetic",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-beefy",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-keystore",
"sp-mmr-primitives",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"thiserror",
"wasm-timer",
]
[[package]]
name = "sc-consensus-beefy-rpc"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c1699fe1791dd985a5dd6075c84136027eb3e2ccff46d3e5273fdbd5b246f763"
dependencies = [
- "futures 0.3.29",
+ "futures",
"jsonrpsee",
"log",
"parity-scale-codec",
@@ -12904,36 +12464,38 @@ dependencies = [
"sc-rpc",
"serde",
"sp-consensus-beefy",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
"thiserror",
]
[[package]]
name = "sc-consensus-epochs"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5eafc0534bb118f614fc50fe066e423dbecfedf816cd9c43e0b492e30c1782c8"
dependencies = [
"fork-tree",
"parity-scale-codec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-runtime",
]
[[package]]
name = "sc-consensus-grandpa"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.16.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "30cbc5db21ea2c4ba65b23315e73e69e8155630fb47c84b93d40b0e759c9d86d"
dependencies = [
"ahash 0.8.6",
- "array-bytes",
+ "array-bytes 6.2.0",
"async-trait",
"dyn-clone",
"finality-grandpa",
"fork-tree",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"log",
"parity-scale-codec",
@@ -12941,251 +12503,239 @@ dependencies = [
"rand 0.8.5",
"sc-block-builder",
"sc-chain-spec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-network",
"sc-network-common",
"sc-network-gossip",
"sc-telemetry",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
+ "sc-utils",
"serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-arithmetic",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-grandpa",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-keystore",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"thiserror",
]
[[package]]
name = "sc-consensus-grandpa-rpc"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.16.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a3c545dac29d5dd002170e063ca0725be95ef653be135d251f91dbe053f63173"
dependencies = [
"finality-grandpa",
- "futures 0.3.29",
+ "futures",
"jsonrpsee",
"log",
"parity-scale-codec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus-grandpa",
"sc-rpc",
"serde",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-core",
+ "sp-runtime",
"thiserror",
]
[[package]]
name = "sc-consensus-manual-seal"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.32.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc7577e49019ece17432c51ddbd4f6b02829b1f784a72b7064855ad70dc08b3f"
dependencies = [
"assert_matches",
"async-trait",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"jsonrpsee",
"log",
"parity-scale-codec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-consensus-aura",
"sc-consensus-babe",
"sc-consensus-epochs",
"sc-transaction-pool",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-aura",
"sp-consensus-babe",
"sp-consensus-slots",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-keystore",
+ "sp-runtime",
"sp-timestamp",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "substrate-prometheus-endpoint",
"thiserror",
]
[[package]]
name = "sc-consensus-slots"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2059681962e33394682627e7bd7245b5094236594f5c97c4c96988d901bda534"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"log",
"parity-scale-codec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-telemetry",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-slots",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sc-executor"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "parity-scale-codec",
- "parking_lot 0.12.1",
- "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sc-executor-wasmtime 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "schnellru",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-panic-handler 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "tracing",
+ "sp-core",
+ "sp-inherents",
+ "sp-runtime",
+ "sp-state-machine",
]
[[package]]
name = "sc-executor"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.29.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "225f2ad733bc7234a6638d5203624194824b2f78ab631bc911223f536a66b9c8"
dependencies = [
"parity-scale-codec",
"parking_lot 0.12.1",
- "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-executor-wasmtime 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-executor-common",
+ "sc-executor-wasmtime",
"schnellru",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-panic-handler 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-core",
+ "sp-externalities",
+ "sp-io",
+ "sp-panic-handler",
+ "sp-runtime-interface",
+ "sp-trie",
+ "sp-version",
+ "sp-wasm-interface",
"tracing",
]
[[package]]
name = "sc-executor-common"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
- "wasm-instrument",
-]
-
-[[package]]
-name = "sc-executor-common"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.26.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "169c1cfe81ba0e0d44ab4ada1600e30b6a9de588c792db73e32a854a6e3e1a87"
dependencies = [
- "sc-allocator 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-allocator",
+ "sp-maybe-compressed-blob",
+ "sp-wasm-interface",
"thiserror",
"wasm-instrument",
]
[[package]]
name = "sc-executor-wasmtime"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "anyhow",
- "cfg-if",
- "libc",
- "log",
- "rustix 0.36.17",
- "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "wasmtime",
-]
-
-[[package]]
-name = "sc-executor-wasmtime"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.26.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f9167d733e928c528273be63b905ec750cfda85d740453071463da69f7d633bc"
dependencies = [
"anyhow",
"cfg-if",
"libc",
"log",
+ "parking_lot 0.12.1",
"rustix 0.36.17",
- "sc-allocator 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-allocator",
+ "sc-executor-common",
+ "sp-runtime-interface",
+ "sp-wasm-interface",
"wasmtime",
]
[[package]]
name = "sc-informant"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7189a0b95fe5d79895a107c6c057bc9351cd9c867552200815199cde25bcdb9d"
dependencies = [
"ansi_term",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"log",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-network",
"sc-network-common",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-runtime",
]
[[package]]
name = "sc-keystore"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "22.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "abecdf9778fccc254c0b5e227ea8b90fd59247044a30ad293a068b180427d244"
dependencies = [
- "array-bytes",
+ "array-bytes 6.2.0",
"parking_lot 0.12.1",
"serde_json",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-keystore",
+ "thiserror",
+]
+
+[[package]]
+name = "sc-mixnet"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d53ea71ec60601c18d6adcaf7a62698fc2e886c16dc8fdf8d61b3b76244dea38"
+dependencies = [
+ "array-bytes 4.2.0",
+ "arrayvec 0.7.4",
+ "blake2 0.10.6",
+ "futures",
+ "futures-timer",
+ "libp2p-identity",
+ "log",
+ "mixnet",
+ "multiaddr",
+ "parity-scale-codec",
+ "parking_lot 0.12.1",
+ "sc-client-api",
+ "sc-network",
+ "sc-transaction-pool-api",
+ "sp-api",
+ "sp-consensus",
+ "sp-core",
+ "sp-keystore",
+ "sp-mixnet",
+ "sp-runtime",
"thiserror",
]
[[package]]
name = "sc-network"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "01f519592a971199c486d412dbf38ba54096857080bf4b9d29c9ffabcfee3745"
dependencies = [
- "array-bytes",
- "async-channel",
+ "array-bytes 6.2.0",
+ "async-channel 1.9.0",
"async-trait",
"asynchronous-codec",
"bytes",
"either",
"fnv",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"ip_network",
"libp2p",
@@ -13197,17 +12747,17 @@ dependencies = [
"partial_sort",
"pin-project",
"rand 0.8.5",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-network-common",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-utils",
"serde",
"serde_json",
"smallvec",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-blockchain",
+ "sp-core",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"thiserror",
"unsigned-varint",
"wasm-timer",
@@ -13216,90 +12766,95 @@ dependencies = [
[[package]]
name = "sc-network-bitswap"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8fe63a55e03d8bc796ff1e94e7fb62a62acfd7a80a47865a97b55c13371c3e05"
dependencies = [
- "async-channel",
+ "async-channel 1.9.0",
"cid",
- "futures 0.3.29",
+ "futures",
"libp2p-identity",
"log",
"prost",
"prost-build",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-network",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-runtime",
"thiserror",
"unsigned-varint",
]
[[package]]
name = "sc-network-common"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8d236686d15275e4aa49ca929a06fb6fac28aa70e35ee185b981036c149f9e9d"
dependencies = [
"async-trait",
"bitflags 1.3.2",
- "futures 0.3.29",
+ "futures",
"libp2p-identity",
"parity-scale-codec",
"prost-build",
"sc-consensus",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-consensus",
"sp-consensus-grandpa",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
]
[[package]]
name = "sc-network-gossip"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b884a9f7cd348c4c1899c0bbf95237e39dffba4baec48d4b98c1046f6bb04fa5"
dependencies = [
"ahash 0.8.6",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"libp2p",
"log",
"sc-network",
"sc-network-common",
"schnellru",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"tracing",
]
[[package]]
name = "sc-network-light"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aac888fd720ef8bb2ff7d2b7f7b2e54d17bb85a417cf1e1b6f0f64f7e644936d"
dependencies = [
- "array-bytes",
- "async-channel",
- "futures 0.3.29",
+ "array-bytes 6.2.0",
+ "async-channel 1.9.0",
+ "futures",
"libp2p-identity",
"log",
"parity-scale-codec",
"prost",
"prost-build",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-network",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-core",
+ "sp-runtime",
"thiserror",
]
[[package]]
name = "sc-network-sync"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "10c697aa8f52cf194b9f00113a7d0d3ce5d1456bedd6169a9caae10737f02907"
dependencies = [
- "array-bytes",
- "async-channel",
+ "array-bytes 6.2.0",
+ "async-channel 1.9.0",
"async-trait",
"fork-tree",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"libp2p",
"log",
@@ -13307,50 +12862,53 @@ dependencies = [
"parity-scale-codec",
"prost",
"prost-build",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus",
"sc-network",
"sc-network-common",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-utils",
"schnellru",
"smallvec",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-blockchain",
+ "sp-consensus",
"sp-consensus-grandpa",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
"thiserror",
+ "tokio-stream",
]
[[package]]
name = "sc-network-transactions"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bb7c9bfc7b58ce229d1512158b8f13dc849ec24857d1c29a41a867fb8afb5c09"
dependencies = [
- "array-bytes",
- "futures 0.3.29",
+ "array-bytes 6.2.0",
+ "futures",
"libp2p",
"log",
"parity-scale-codec",
"sc-network",
"sc-network-common",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-utils",
+ "sp-consensus",
+ "sp-runtime",
+ "substrate-prometheus-endpoint",
]
[[package]]
name = "sc-offchain"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "26.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "47950facab8dedf71c39667ccce8834252944e8f091f3a3bcdfc0b4503573da4"
dependencies = [
- "array-bytes",
+ "array-bytes 6.2.0",
"bytes",
"fnv",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"hyper",
"hyper-rustls",
@@ -13361,90 +12919,96 @@ dependencies = [
"parity-scale-codec",
"parking_lot 0.12.1",
"rand 0.8.5",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-network",
"sc-network-common",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
+ "sc-utils",
+ "sp-api",
+ "sp-core",
+ "sp-externalities",
+ "sp-keystore",
"sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"threadpool",
"tracing",
]
[[package]]
name = "sc-proposer-metrics"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.16.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "221845dce4e7adb57eca5f73318699b377cff29aef92a586e71aa5cef62f879b"
dependencies = [
"log",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "substrate-prometheus-endpoint",
]
[[package]]
name = "sc-rpc"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "26.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "eb277280b6b3519e4a2e693b75d4ca516ebb4a928162e6a1791b217b2be60c9f"
dependencies = [
- "futures 0.3.29",
+ "futures",
"jsonrpsee",
"log",
"parity-scale-codec",
"parking_lot 0.12.1",
"sc-block-builder",
"sc-chain-spec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-mixnet",
"sc-rpc-api",
"sc-tracing",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
+ "sc-utils",
"serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-core",
+ "sp-keystore",
"sp-offchain",
"sp-rpc",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-statement-store 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-statement-store",
+ "sp-version",
"tokio",
]
[[package]]
name = "sc-rpc-api"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "def499ac717db8442fe18543e52330d5f105027b666df73c0b38e81e9105078b"
dependencies = [
"jsonrpsee",
"parity-scale-codec",
"sc-chain-spec",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-mixnet",
+ "sc-transaction-pool-api",
"scale-info",
"serde",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
"sp-rpc",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-version",
"thiserror",
]
[[package]]
name = "sc-rpc-server"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9e8083e1b026dcf397f8c1122b3fba6cc744c6962996df6a30e0fb75223f7637"
dependencies = [
"http",
"jsonrpsee",
"log",
"serde_json",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "substrate-prometheus-endpoint",
"tokio",
"tower",
"tower-http",
@@ -13452,11 +13016,12 @@ dependencies = [
[[package]]
name = "sc-rpc-spec-v2"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "198ea9287111b4060ce1d70dce99804b99d1a92b5fb23a79d94bf0cb460ca3ce"
dependencies = [
- "array-bytes",
- "futures 0.3.29",
+ "array-bytes 6.2.0",
+ "futures",
"futures-util",
"hex",
"jsonrpsee",
@@ -13464,15 +13029,15 @@ dependencies = [
"parity-scale-codec",
"parking_lot 0.12.1",
"sc-chain-spec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-transaction-pool-api",
+ "sc-utils",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-core",
+ "sp-runtime",
+ "sp-version",
"thiserror",
"tokio",
"tokio-stream",
@@ -13480,13 +13045,14 @@ dependencies = [
[[package]]
name = "sc-service"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.32.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3623ae5bd7b089da9796a3f1edd974c94f34dd4b4b527146662ef409ae9cd38c"
dependencies = [
"async-trait",
"directories",
"exit-future",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"jsonrpsee",
"log",
@@ -13496,10 +13062,10 @@ dependencies = [
"rand 0.8.5",
"sc-block-builder",
"sc-chain-spec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-client-db 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-client-db",
"sc-consensus",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-executor",
"sc-informant",
"sc-keystore",
"sc-network",
@@ -13515,26 +13081,26 @@ dependencies = [
"sc-telemetry",
"sc-tracing",
"sc-transaction-pool",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
+ "sc-utils",
"serde",
"serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-consensus",
+ "sp-core",
+ "sp-externalities",
+ "sp-keystore",
+ "sp-runtime",
"sp-session",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-state-machine",
+ "sp-storage",
"sp-transaction-pool",
"sp-transaction-storage-proof",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-trie",
+ "sp-version",
"static_init",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "substrate-prometheus-endpoint",
"tempfile",
"thiserror",
"tokio",
@@ -13544,65 +13110,58 @@ dependencies = [
[[package]]
name = "sc-state-db"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "log",
- "parity-scale-codec",
- "parking_lot 0.12.1",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sc-state-db"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.27.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3635fe572adfe796886e18910c8b94f7ce67f9ae3e2c161176e122ddf0baa7e4"
dependencies = [
"log",
"parity-scale-codec",
"parking_lot 0.12.1",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
]
[[package]]
name = "sc-storage-monitor"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0f9acfc934aa5b0185e861ce81245685086c7231fcb2b582da4afc4d0bd62a98"
dependencies = [
- "clap 4.4.7",
+ "clap",
"fs4",
"log",
- "sc-client-db 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-db",
+ "sp-core",
"thiserror",
"tokio",
]
[[package]]
name = "sc-sync-state-rpc"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fe1efc0811813b73b9bb6eccc630ccd43d13b4306255a41ef55b9304d32e64c2"
dependencies = [
"jsonrpsee",
"parity-scale-codec",
"sc-chain-spec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-consensus-babe",
"sc-consensus-epochs",
"sc-consensus-grandpa",
"serde",
"serde_json",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-runtime",
"thiserror",
]
[[package]]
name = "sc-sysinfo"
-version = "6.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "60967710b85e650652832df73915b64c315f7b437e53c4635bd26106d6d05c21"
dependencies = [
- "futures 0.3.29",
+ "futures",
"libc",
"log",
"rand 0.8.5",
@@ -13611,24 +13170,25 @@ dependencies = [
"sc-telemetry",
"serde",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-io",
+ "sp-std",
]
[[package]]
name = "sc-telemetry"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "12.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "28e214e4d46cac02321bc3dc6fd72f019ac10819d1ac8f24f6935a4ae74ef273"
dependencies = [
"chrono",
- "futures 0.3.29",
+ "futures",
"libp2p",
"log",
"parking_lot 0.12.1",
"pin-project",
"rand 0.8.5",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-utils",
"serde",
"serde_json",
"thiserror",
@@ -13637,8 +13197,9 @@ dependencies = [
[[package]]
name = "sc-tracing"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "83bcd745ea216ba0c0a344cff2c41b12e27846d5fca4b28f56ff77e1d3ff3634"
dependencies = [
"ansi_term",
"atty",
@@ -13649,15 +13210,15 @@ dependencies = [
"parking_lot 0.12.1",
"regex",
"rustc-hash",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-tracing-proc-macro",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-core",
"sp-rpc",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-tracing",
"thiserror",
"tracing",
"tracing-log",
@@ -13666,8 +13227,9 @@ dependencies = [
[[package]]
name = "sc-tracing-proc-macro"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9c4ae9e4f957d7274ac6b59d667b66262caf6482dbb1b63f1c370528626b1272"
dependencies = [
"proc-macro-crate",
"proc-macro2",
@@ -13677,90 +13239,62 @@ dependencies = [
[[package]]
name = "sc-transaction-pool"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6f6db45a057a619670e07deefb4e69aab83386f076363db424907da2b2e82590"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"futures-timer",
"linked-hash-map",
"log",
"parity-scale-codec",
"parking_lot 0.12.1",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-utils 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
+ "sc-transaction-pool-api",
+ "sc-utils",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-blockchain",
+ "sp-core",
+ "sp-runtime",
+ "sp-tracing",
"sp-transaction-pool",
- "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "thiserror",
-]
-
-[[package]]
-name = "sc-transaction-pool-api"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "async-trait",
- "futures 0.3.29",
- "log",
- "parity-scale-codec",
- "serde",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
+ "substrate-prometheus-endpoint",
"thiserror",
]
[[package]]
name = "sc-transaction-pool-api"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1491607f296bb8cce09a5eb3a03320c60ad52bb8120127b26f69c32bcaccd8f2"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"log",
"parity-scale-codec",
"serde",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-blockchain",
+ "sp-core",
+ "sp-runtime",
"thiserror",
]
[[package]]
name = "sc-utils"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "async-channel",
- "futures 0.3.29",
- "futures-timer",
- "lazy_static",
- "log",
- "parking_lot 0.12.1",
- "prometheus",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sc-utils"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "11.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "81a4769c82dde62b9243dcc166be52e0c5d2d61cf2599923271118d9c8b997b1"
dependencies = [
- "async-channel",
- "futures 0.3.29",
+ "async-channel 1.9.0",
+ "futures",
"futures-timer",
"lazy_static",
"log",
"parking_lot 0.12.1",
"prometheus",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
]
[[package]]
@@ -13823,7 +13357,7 @@ dependencies = [
"rand 0.7.3",
"rand_core 0.5.1",
"sha2 0.8.2",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
@@ -13897,7 +13431,7 @@ dependencies = [
"der 0.6.1",
"generic-array 0.14.7",
"pkcs8 0.9.0",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
@@ -13911,7 +13445,7 @@ dependencies = [
"der 0.7.8",
"generic-array 0.14.7",
"pkcs8 0.10.2",
- "subtle",
+ "subtle 2.4.1",
"zeroize",
]
@@ -13998,16 +13532,6 @@ dependencies = [
"serde_derive",
]
-[[package]]
-name = "serde_cbor"
-version = "0.11.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
-dependencies = [
- "half",
- "serde",
-]
-
[[package]]
name = "serde_derive"
version = "1.0.192"
@@ -14195,14 +13719,15 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
[[package]]
name = "slot-range-helper"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e902c6b7e8f86718aee7989d6c8ea851d9772cb54a3389f2d729d8df41167ec"
dependencies = [
"enumn",
"parity-scale-codec",
"paste",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
@@ -14216,9 +13741,9 @@ dependencies = [
[[package]]
name = "smallvec"
-version = "1.11.1"
+version = "1.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
+checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
[[package]]
name = "smol"
@@ -14226,7 +13751,7 @@ version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
dependencies = [
- "async-channel",
+ "async-channel 1.9.0",
"async-executor",
"async-fs",
"async-io 1.13.0",
@@ -14250,7 +13775,7 @@ dependencies = [
"bip39",
"blake2-rfc",
"bs58 0.5.0",
- "chacha20 0.9.1",
+ "chacha20",
"crossbeam-queue",
"derive_more",
"ed25519-zebra 4.0.3",
@@ -14272,7 +13797,7 @@ dependencies = [
"num-traits",
"pbkdf2 0.12.2",
"pin-project",
- "poly1305 0.8.0",
+ "poly1305",
"rand 0.8.5",
"rand_chacha 0.3.1",
"ruzstd",
@@ -14297,7 +13822,7 @@ version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "256b5bad1d6b49045e95fe87492ce73d5af81545d8b4d8318a872d2007024c33"
dependencies = [
- "async-channel",
+ "async-channel 1.9.0",
"async-lock 2.8.0",
"base64 0.21.5",
"blake2-rfc",
@@ -14335,19 +13860,19 @@ checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"
[[package]]
name = "snow"
-version = "0.9.3"
+version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0c9d1425eb528a21de2755c75af4c9b5d57f50a0d4c3b7f1828a4cd03f8ba155"
+checksum = "58021967fd0a5eeeb23b08df6cc244a4d4a5b4aec1d27c9e02fad1a58b4cd74e"
dependencies = [
- "aes-gcm 0.9.4",
- "blake2",
+ "aes-gcm 0.10.3",
+ "blake2 0.10.6",
"chacha20poly1305",
"curve25519-dalek 4.1.1",
"rand_core 0.6.4",
- "ring 0.16.20",
+ "ring 0.17.5",
"rustc_version",
"sha2 0.10.8",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -14379,7 +13904,7 @@ dependencies = [
"base64 0.13.1",
"bytes",
"flate2",
- "futures 0.3.29",
+ "futures",
"http",
"httparse",
"log",
@@ -14389,67 +13914,34 @@ dependencies = [
[[package]]
name = "sp-api"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f582f92ce47c86e4ffffe81fdd5120fea7c850dc0800653a7fa203bcc1532335"
dependencies = [
"hash-db 0.16.0",
"log",
"parity-scale-codec",
"scale-info",
- "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-metadata-ir 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
+ "sp-api-proc-macro",
+ "sp-core",
+ "sp-externalities",
+ "sp-metadata-ir",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-std",
+ "sp-trie",
+ "sp-version",
"thiserror",
]
-[[package]]
-name = "sp-api"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "hash-db 0.16.0",
- "log",
- "parity-scale-codec",
- "scale-info",
- "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-metadata-ir 0.1.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "thiserror",
-]
-
-[[package]]
-name = "sp-api-proc-macro"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "Inflector",
- "blake2",
- "expander 2.0.0",
- "proc-macro-crate",
- "proc-macro2",
- "quote",
- "syn 2.0.39",
-]
-
[[package]]
name = "sp-api-proc-macro"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "12.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a896941b2d27365a6f937ebce11e36d55132dc32104f6a48b4cd765b55efd252"
dependencies = [
"Inflector",
- "blake2",
+ "blake2 0.10.6",
"expander 2.0.0",
"proc-macro-crate",
"proc-macro2",
@@ -14459,248 +13951,198 @@ dependencies = [
[[package]]
name = "sp-application-crypto"
-version = "23.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "parity-scale-codec",
- "scale-info",
- "serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sp-application-crypto"
-version = "23.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "parity-scale-codec",
- "scale-info",
- "serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sp-arithmetic"
-version = "16.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "27.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a93da025616ab59639f8e378df579c5aaa2c8b9999f328a0239156a57c991b53"
dependencies = [
- "integer-sqrt",
- "num-traits",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "static_assertions",
+ "sp-core",
+ "sp-io",
+ "sp-std",
]
[[package]]
name = "sp-arithmetic"
-version = "16.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "20.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f80b5c16afb61dde1037a469d570adcc686440036429e50abe2301ba9d61aad5"
dependencies = [
"integer-sqrt",
"num-traits",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-std",
"static_assertions",
]
[[package]]
name = "sp-authority-discovery"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e204d85bad6f02a5ae8fbba83c365e20459e979fd69db5575ba4b3ea1025ab3c"
dependencies = [
"parity-scale-codec",
"scale-info",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "sp-block-builder"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6cd16df3d1cdad862d3e764f10f7675876b011e032907423fdfa377ae2ec8575"
dependencies = [
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-inherents",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "sp-blockchain"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "futures 0.3.29",
- "log",
- "parity-scale-codec",
- "parking_lot 0.12.1",
- "schnellru",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-database 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
-]
-
-[[package]]
-name = "sp-blockchain"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4932b97cde61874f395bab9b02443e3bd2046943abb280b63f83da9d0b623ea7"
dependencies = [
- "futures 0.3.29",
+ "futures",
"log",
"parity-scale-codec",
"parking_lot 0.12.1",
"schnellru",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-database 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-consensus",
+ "sp-database",
+ "sp-runtime",
+ "sp-state-machine",
"thiserror",
]
[[package]]
name = "sp-consensus"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "async-trait",
- "futures 0.3.29",
- "log",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
-]
-
-[[package]]
-name = "sp-consensus"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.29.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2c5d7170fb7cfb18024ef7eeb40d272d22b9c3587d85cde2d091e8463b397f06"
dependencies = [
"async-trait",
- "futures 0.3.29",
+ "futures",
"log",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-runtime",
+ "sp-state-machine",
"thiserror",
]
[[package]]
name = "sp-consensus-aura"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.29.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "643a7c486a645f398d219d1fbcc8a416cad5018164a212fefde5c2ef00a182e4"
dependencies = [
"async-trait",
"parity-scale-codec",
"scale-info",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
"sp-consensus-slots",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-inherents",
+ "sp-runtime",
+ "sp-std",
"sp-timestamp",
]
[[package]]
name = "sp-consensus-babe"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.29.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "268f9b2e36d4e136c09ad87876cdcfd7ff734cb5917f333fefebff248f95a24f"
dependencies = [
"async-trait",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
"sp-consensus-slots",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-runtime",
+ "sp-std",
"sp-timestamp",
]
[[package]]
name = "sp-consensus-beefy"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "90e18fe984ea745727e645c43d6a955bc471b3bcd36aa8d260c3bd0deeada0c5"
dependencies = [
"lazy_static",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-io",
"sp-mmr-primitives",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
"strum 0.24.1",
]
[[package]]
name = "sp-consensus-grandpa"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "10.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "28bbee685900110419913f281ce0f29457fbc17418f00d15f0212c8043aba167"
dependencies = [
"finality-grandpa",
"log",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-keystore",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "sp-consensus-slots"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.29.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "895b0c176d4eead833ddee5251d3cccbaeb0191ca3f33f84b11d347bebc6e21f"
dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-std",
"sp-timestamp",
]
[[package]]
name = "sp-core"
-version = "21.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f9ebb090ead698a6df04347c86a31ba91a387edb8a58534ec70c4f977d1e1e87"
dependencies = [
- "array-bytes",
- "arrayvec 0.7.4",
- "bandersnatch_vrfs",
+ "array-bytes 6.2.0",
"bitflags 1.3.2",
- "blake2",
+ "blake2 0.10.6",
"bounded-collections",
"bs58 0.5.0",
"dyn-clonable",
"ed25519-zebra 3.1.0",
- "futures 0.3.29",
+ "futures",
"hash-db 0.16.0",
"hash256-std-hasher",
"impl-serde",
@@ -14719,84 +14161,26 @@ dependencies = [
"secp256k1",
"secrecy",
"serde",
- "sp-core-hashing 9.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "ss58-registry",
- "substrate-bip39",
- "thiserror",
- "tiny-bip39",
- "tracing",
- "zeroize",
-]
-
-[[package]]
-name = "sp-core"
-version = "21.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "array-bytes",
- "arrayvec 0.7.4",
- "bandersnatch_vrfs",
- "bitflags 1.3.2",
- "blake2",
- "bounded-collections",
- "bs58 0.5.0",
- "dyn-clonable",
- "ed25519-zebra 3.1.0",
- "futures 0.3.29",
- "hash-db 0.16.0",
- "hash256-std-hasher",
- "impl-serde",
- "lazy_static",
- "libsecp256k1",
- "log",
- "merlin 2.0.1",
- "parity-scale-codec",
- "parking_lot 0.12.1",
- "paste",
- "primitive-types",
- "rand 0.8.5",
- "regex",
- "scale-info",
- "schnorrkel 0.9.1",
- "secp256k1",
- "secrecy",
- "serde",
- "sp-core-hashing 9.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core-hashing",
+ "sp-debug-derive",
+ "sp-externalities",
+ "sp-runtime-interface",
+ "sp-std",
+ "sp-storage",
"ss58-registry",
"substrate-bip39",
"thiserror",
"tiny-bip39",
"tracing",
+ "w3f-bls",
"zeroize",
]
[[package]]
name = "sp-core-hashing"
-version = "9.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "blake2b_simd",
- "byteorder",
- "digest 0.10.7",
- "sha2 0.10.8",
- "sha3",
- "twox-hash",
-]
-
-[[package]]
-name = "sp-core-hashing"
-version = "9.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "13.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb8524f01591ee58b46cd83c9dbc0fcffd2fd730dabec4f59326cd58a00f17e2"
dependencies = [
"blake2b_simd",
"byteorder",
@@ -14808,37 +14192,20 @@ dependencies = [
[[package]]
name = "sp-core-hashing-proc-macro"
-version = "9.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "quote",
- "sp-core-hashing 9.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "syn 2.0.39",
-]
-
-[[package]]
-name = "sp-core-hashing-proc-macro"
-version = "9.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "13.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "42ce3e6931303769197da81facefa86159fa1085dcd96ecb7e7407b5b93582a0"
dependencies = [
"quote",
- "sp-core-hashing 9.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core-hashing",
"syn 2.0.39",
]
[[package]]
name = "sp-database"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "kvdb",
- "parking_lot 0.12.1",
-]
-
-[[package]]
-name = "sp-database"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "9.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9c6e8c710d6a71512af6f42d9dba9c3d1f6ad793846480babf459bbde3d60a94"
dependencies = [
"kvdb",
"parking_lot 0.12.1",
@@ -14846,18 +14213,9 @@ dependencies = [
[[package]]
name = "sp-debug-derive"
-version = "8.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.39",
-]
-
-[[package]]
-name = "sp-debug-derive"
-version = "8.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "12.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "50535e1a5708d3ba5c1195b59ebefac61cc8679c2c24716b87a86e8b7ed2e4a1"
dependencies = [
"proc-macro2",
"quote",
@@ -14866,104 +14224,48 @@ dependencies = [
[[package]]
name = "sp-externalities"
-version = "0.19.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "environmental",
- "parity-scale-codec",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sp-externalities"
-version = "0.19.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.23.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "884d05160bc89d0943d1c9fb8006c3d44b80f37f8af607aeff8d4d9cc82e279a"
dependencies = [
"environmental",
"parity-scale-codec",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sp-genesis-builder"
-version = "0.1.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
+ "sp-std",
+ "sp-storage",
]
[[package]]
name = "sp-genesis-builder"
-version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a0cb71d40ad47e40bdcce5ae5531c7d7ba579cd495a0e0413642fb063fa66f84"
dependencies = [
"serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "sp-inherents"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "async-trait",
- "impl-trait-for-tuples",
- "parity-scale-codec",
- "scale-info",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
-]
-
-[[package]]
-name = "sp-inherents"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "604229aa145be0cff853b47ffed8bc2c62eb08ec6974d6307b9a559c378e6dc5"
dependencies = [
"async-trait",
"impl-trait-for-tuples",
"parity-scale-codec",
"scale-info",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-std",
"thiserror",
]
[[package]]
name = "sp-io"
-version = "23.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "bytes",
- "ed25519-dalek",
- "libsecp256k1",
- "log",
- "parity-scale-codec",
- "rustversion",
- "secp256k1",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "tracing",
- "tracing-core",
-]
-
-[[package]]
-name = "sp-io"
-version = "23.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "27.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0ced350da15e8ba3a106206840acc42a6d3eb0d7e8bf7aa43ab00eac0bdf956f"
dependencies = [
"bytes",
"ed25519-dalek",
@@ -14972,66 +14274,48 @@ dependencies = [
"parity-scale-codec",
"rustversion",
"secp256k1",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-externalities",
+ "sp-keystore",
+ "sp-runtime-interface",
+ "sp-state-machine",
+ "sp-std",
+ "sp-tracing",
+ "sp-trie",
"tracing",
"tracing-core",
]
[[package]]
name = "sp-keyring"
-version = "24.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "28.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "655ec0b35cb9cb9029fb323aa676b07d58deb872cecc7566e50278409a00ee95"
dependencies = [
"lazy_static",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
"strum 0.24.1",
]
[[package]]
name = "sp-keystore"
-version = "0.27.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "parity-scale-codec",
- "parking_lot 0.12.1",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
-]
-
-[[package]]
-name = "sp-keystore"
-version = "0.27.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.31.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b8ec5ebbba70bee83d79c3fe5e49f12df0a4bb6029858ddf9a15eea7539a592"
dependencies = [
"parity-scale-codec",
"parking_lot 0.12.1",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "thiserror",
-]
-
-[[package]]
-name = "sp-maybe-compressed-blob"
-version = "4.1.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
+ "sp-core",
+ "sp-externalities",
"thiserror",
- "zstd 0.12.4",
]
[[package]]
name = "sp-maybe-compressed-blob"
-version = "4.1.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "9.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8846768f036429227e49f6ab523fbee4bc6edfee278a361bf27999590fe020d4"
dependencies = [
"thiserror",
"zstd 0.12.4",
@@ -15039,82 +14323,79 @@ dependencies = [
[[package]]
name = "sp-metadata-ir"
-version = "0.1.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ca9ff0e522a74725ac92f009d38deeb12e880f5296afbd78a6c6b970b773278"
dependencies = [
"frame-metadata",
"parity-scale-codec",
"scale-info",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
+ "sp-std",
]
[[package]]
-name = "sp-metadata-ir"
+name = "sp-mixnet"
version = "0.1.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bdf61f28ca97aab6c21a3c6e0ed496e60d505e5de1f43fd4ba748c9afaa4fc85"
dependencies = [
- "frame-metadata",
"parity-scale-codec",
"scale-info",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-std",
]
[[package]]
name = "sp-mmr-primitives"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0c3b33c20a4b1dd5a0069ced6997078a2af5d625f2c53d1b69bef9e131f42d77"
dependencies = [
"ckb-merkle-mountain-range",
"log",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-core",
+ "sp-debug-derive",
+ "sp-runtime",
+ "sp-std",
"thiserror",
]
[[package]]
name = "sp-npos-elections"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ee3536d7fd990c30864ca545d7bdbee02dc66a92ac2a7a66ab4e21521992a7b"
dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "sp-offchain"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sp-panic-handler"
-version = "8.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9310227f043ed99877b0449a683025a7461431a00995dcd6ef423a273d0fd85d"
dependencies = [
- "backtrace",
- "lazy_static",
- "regex",
+ "sp-api",
+ "sp-core",
+ "sp-runtime",
]
[[package]]
name = "sp-panic-handler"
-version = "8.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "12.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b00e40857ed3e0187f145b037c733545c5633859f1bd1d1b09deb52805fa696a"
dependencies = [
"backtrace",
"lazy_static",
@@ -15123,40 +14404,20 @@ dependencies = [
[[package]]
name = "sp-rpc"
-version = "6.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "51867fea921f54bbaa2bf505f373559b5f3b80e8d7f38ecb9677f0d3795a3e6a"
dependencies = [
"rustc-hash",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
]
[[package]]
name = "sp-runtime"
-version = "24.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "either",
- "hash256-std-hasher",
- "impl-trait-for-tuples",
- "log",
- "parity-scale-codec",
- "paste",
- "rand 0.8.5",
- "scale-info",
- "serde",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sp-runtime"
-version = "24.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "28.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d9c40ff7303e62219b55635e5245d963358cb77d6916250991ebcb82c0be2c6"
dependencies = [
"either",
"hash256-std-hasher",
@@ -15167,66 +14428,38 @@ dependencies = [
"rand 0.8.5",
"scale-info",
"serde",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-application-crypto",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-io",
+ "sp-std",
+ "sp-weights",
]
[[package]]
name = "sp-runtime-interface"
-version = "17.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "bytes",
- "impl-trait-for-tuples",
- "parity-scale-codec",
- "primitive-types",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime-interface-proc-macro 11.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "static_assertions",
-]
-
-[[package]]
-name = "sp-runtime-interface"
-version = "17.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "21.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4f365332922a8cfa98ab00c6d08b1b0f24e159e730dd554e720d950ff3371b1f"
dependencies = [
"bytes",
"impl-trait-for-tuples",
"parity-scale-codec",
"primitive-types",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime-interface-proc-macro 11.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-wasm-interface 14.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-externalities",
+ "sp-runtime-interface-proc-macro",
+ "sp-std",
+ "sp-storage",
+ "sp-tracing",
+ "sp-wasm-interface",
"static_assertions",
]
[[package]]
name = "sp-runtime-interface-proc-macro"
-version = "11.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "Inflector",
- "proc-macro-crate",
- "proc-macro2",
- "quote",
- "syn 2.0.39",
-]
-
-[[package]]
-name = "sp-runtime-interface-proc-macro"
-version = "11.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "15.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9b2afcbd1bd18d323371111b66b7ac2870bdc1c86c3d7b0dae67b112ca52b4d8"
dependencies = [
"Inflector",
"proc-macro-crate",
@@ -15237,72 +14470,40 @@ dependencies = [
[[package]]
name = "sp-session"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "parity-scale-codec",
- "scale-info",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sp-staking"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "248dd8f49aa96b56bf0a7d513691ddb4194f9359fdb93e94397eabdef1036085"
dependencies = [
- "impl-trait-for-tuples",
"parity-scale-codec",
"scale-info",
- "serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
+ "sp-api",
+ "sp-core",
+ "sp-keystore",
+ "sp-runtime",
+ "sp-staking",
+ "sp-std",
]
[[package]]
name = "sp-staking"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee0feed0137234598bd1f76d0b468c585ea16619ea9ed1acbba82dd24ac79788"
dependencies = [
"impl-trait-for-tuples",
"parity-scale-codec",
"scale-info",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sp-state-machine"
-version = "0.28.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "hash-db 0.16.0",
- "log",
- "parity-scale-codec",
- "parking_lot 0.12.1",
- "rand 0.8.5",
- "smallvec",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-panic-handler 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
- "tracing",
- "trie-db",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "sp-state-machine"
-version = "0.28.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.32.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96e087fa4430befd2047b61d912c9d6fa4eaed408c4b58b46c6e9acd7965f2d3"
dependencies = [
"hash-db 0.16.0",
"log",
@@ -15310,11 +14511,11 @@ dependencies = [
"parking_lot 0.12.1",
"rand 0.8.5",
"smallvec",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-panic-handler 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-externalities",
+ "sp-panic-handler",
+ "sp-std",
+ "sp-trie",
"thiserror",
"tracing",
"trie-db",
@@ -15322,32 +14523,9 @@ dependencies = [
[[package]]
name = "sp-statement-store"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "aes-gcm 0.10.3",
- "curve25519-dalek 4.1.1",
- "ed25519-dalek",
- "hkdf",
- "parity-scale-codec",
- "rand 0.8.5",
- "scale-info",
- "sha2 0.10.8",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
- "x25519-dalek 2.0.0",
-]
-
-[[package]]
-name = "sp-statement-store"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "7.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4b8654bcd37602b1811414050d34d14f543873bd4e64e50d210a0116b660c600"
dependencies = [
"aes-gcm 0.10.3",
"curve25519-dalek 4.1.1",
@@ -15357,85 +14535,59 @@ dependencies = [
"rand 0.8.5",
"scale-info",
"sha2 0.10.8",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-core",
+ "sp-externalities",
+ "sp-runtime",
+ "sp-runtime-interface",
+ "sp-std",
"thiserror",
"x25519-dalek 2.0.0",
]
[[package]]
name = "sp-std"
-version = "8.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-
-[[package]]
-name = "sp-std"
-version = "8.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-
-[[package]]
-name = "sp-storage"
-version = "13.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "impl-serde",
- "parity-scale-codec",
- "ref-cast",
- "serde",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
-]
+version = "12.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "54c78c5a66682568cc7b153603c5d01a2cc8f5c221c7b1e921517a0eef18ae05"
[[package]]
name = "sp-storage"
-version = "13.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "17.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "016f20812cc51bd479cc88d048c35d44cd3adde4accdb159d49d6050f2953595"
dependencies = [
"impl-serde",
"parity-scale-codec",
"ref-cast",
"serde",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-debug-derive",
+ "sp-std",
]
[[package]]
name = "sp-timestamp"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "004a7f453240db80b2967c0e1c6411836efc7daa7afae98fd16202caa51460e0"
dependencies = [
"async-trait",
"parity-scale-codec",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-inherents",
+ "sp-runtime",
+ "sp-std",
"thiserror",
]
[[package]]
name = "sp-tracing"
-version = "10.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "parity-scale-codec",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "tracing",
- "tracing-core",
- "tracing-subscriber",
-]
-
-[[package]]
-name = "sp-tracing"
-version = "10.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "14.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0d727cb5265641ffbb7d4e42c18b63e29f6cfdbd240aae3bcf093c3d6eb29a19"
dependencies = [
"parity-scale-codec",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-std",
"tracing",
"tracing-core",
"tracing-subscriber",
@@ -15443,55 +14595,35 @@ dependencies = [
[[package]]
name = "sp-transaction-pool"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c7cd2afe89c474339d15d06e73639171ebe4d280be6904d9349072103da21427"
dependencies = [
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-runtime",
]
[[package]]
name = "sp-transaction-storage-proof"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "23.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "39ae7c4954431b8479f7b2b6b82f0551cc360a1ee59b6a5276eef86a1099eaed"
dependencies = [
"async-trait",
"parity-scale-codec",
"scale-info",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-inherents",
+ "sp-runtime",
+ "sp-std",
+ "sp-trie",
]
[[package]]
name = "sp-trie"
-version = "22.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "ahash 0.8.6",
- "hash-db 0.16.0",
- "hashbrown 0.13.2",
- "lazy_static",
- "memory-db",
- "nohash-hasher",
- "parity-scale-codec",
- "parking_lot 0.12.1",
- "scale-info",
- "schnellru",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
- "tracing",
- "trie-db",
- "trie-root",
-]
-
-[[package]]
-name = "sp-trie"
-version = "22.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "26.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e359b358263cc322c3f678c272a3a519621d9853dcfa1374dfcbdb5f54c6f85"
dependencies = [
"ahash 0.8.6",
"hash-db 0.16.0",
@@ -15501,10 +14633,11 @@ dependencies = [
"nohash-hasher",
"parity-scale-codec",
"parking_lot 0.12.1",
+ "rand 0.8.5",
"scale-info",
"schnellru",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-std",
"thiserror",
"tracing",
"trie-db",
@@ -15513,53 +14646,27 @@ dependencies = [
[[package]]
name = "sp-version"
-version = "22.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "impl-serde",
- "parity-scale-codec",
- "parity-wasm 0.45.0",
- "scale-info",
- "serde",
- "sp-core-hashing-proc-macro 9.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-version-proc-macro 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "thiserror",
-]
-
-[[package]]
-name = "sp-version"
-version = "22.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "26.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3e93da332eba3cb59a65f128da5edd5c70e1475692b45470104e7465b1278471"
dependencies = [
"impl-serde",
"parity-scale-codec",
"parity-wasm 0.45.0",
"scale-info",
"serde",
- "sp-core-hashing-proc-macro 9.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-version-proc-macro 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core-hashing-proc-macro",
+ "sp-runtime",
+ "sp-std",
+ "sp-version-proc-macro",
"thiserror",
]
[[package]]
name = "sp-version-proc-macro"
-version = "8.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "parity-scale-codec",
- "proc-macro2",
- "quote",
- "syn 2.0.39",
-]
-
-[[package]]
-name = "sp-version-proc-macro"
-version = "8.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "12.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "49535d8c7184dab46d15639c68374a30cbb1534e392fa09a1ebb059a993ad436"
dependencies = [
"parity-scale-codec",
"proc-macro2",
@@ -15569,58 +14676,32 @@ dependencies = [
[[package]]
name = "sp-wasm-interface"
-version = "14.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "anyhow",
- "impl-trait-for-tuples",
- "log",
- "parity-scale-codec",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "wasmtime",
-]
-
-[[package]]
-name = "sp-wasm-interface"
-version = "14.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "18.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d5d85813d46a22484cdf5e5afddbbe85442dd1b4d84d67a8c7792f92f9f93607"
dependencies = [
"anyhow",
"impl-trait-for-tuples",
"log",
"parity-scale-codec",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-std",
"wasmtime",
]
[[package]]
name = "sp-weights"
-version = "20.0.0"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "parity-scale-codec",
- "scale-info",
- "serde",
- "smallvec",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "sp-weights"
-version = "20.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "751676c1263e7f3600af16bad26a7978a816bc532676fe05eafa23b862c05b9e"
dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
"smallvec",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-debug-derive",
+ "sp-std",
]
[[package]]
@@ -15688,115 +14769,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
[[package]]
-name = "staging-kusama-runtime"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "binary-merkle-tree",
- "bitvec 1.0.1",
- "frame-benchmarking",
- "frame-election-provider-support",
- "frame-executive",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+name = "staging-parachain-info"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3a1bcf863664ca5708d92894fc30d2c6606c7dbb7d7cfcf43b9ae69d5b83f4fb"
+dependencies = [
+ "cumulus-primitives-core",
+ "frame-support",
"frame-system",
- "frame-system-benchmarking",
- "frame-system-rpc-runtime-api",
- "frame-try-runtime",
- "hex-literal",
- "kusama-runtime-constants",
- "log",
- "pallet-authority-discovery",
- "pallet-authorship",
- "pallet-babe",
- "pallet-bags-list",
- "pallet-balances",
- "pallet-beefy",
- "pallet-beefy-mmr",
- "pallet-bounties",
- "pallet-child-bounties",
- "pallet-collective",
- "pallet-conviction-voting",
- "pallet-democracy",
- "pallet-election-provider-multi-phase",
- "pallet-election-provider-support-benchmarking",
- "pallet-elections-phragmen",
- "pallet-fast-unstake",
- "pallet-grandpa",
- "pallet-identity",
- "pallet-im-online",
- "pallet-indices",
- "pallet-membership",
- "pallet-message-queue",
- "pallet-mmr",
- "pallet-multisig",
- "pallet-nis",
- "pallet-nomination-pools",
- "pallet-nomination-pools-benchmarking",
- "pallet-nomination-pools-runtime-api",
- "pallet-offences",
- "pallet-offences-benchmarking",
- "pallet-preimage",
- "pallet-proxy",
- "pallet-ranked-collective",
- "pallet-recovery",
- "pallet-referenda",
- "pallet-scheduler",
- "pallet-session",
- "pallet-session-benchmarking",
- "pallet-society",
- "pallet-staking",
- "pallet-staking-runtime-api",
- "pallet-state-trie-migration",
- "pallet-timestamp",
- "pallet-tips",
- "pallet-transaction-payment",
- "pallet-transaction-payment-rpc-runtime-api",
- "pallet-treasury",
- "pallet-utility",
- "pallet-vesting",
- "pallet-whitelist",
- "pallet-xcm",
- "pallet-xcm-benchmarks",
"parity-scale-codec",
- "polkadot-primitives",
- "polkadot-runtime-common",
- "polkadot-runtime-parachains",
- "rustc-hex",
"scale-info",
- "serde",
- "serde_derive",
- "smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-authority-discovery",
- "sp-block-builder",
- "sp-consensus-babe",
- "sp-consensus-beefy",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-mmr-primitives",
- "sp-npos-elections",
- "sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-transaction-pool",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "staging-xcm",
- "staging-xcm-builder",
- "staging-xcm-executor",
- "static_assertions",
- "substrate-wasm-builder",
+ "sp-runtime",
+ "sp-std",
]
[[package]]
name = "staging-xcm"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7abd0c2e401a1e264379131c27676bc65c9631aaa508044bc04d8ce60a7d8524"
dependencies = [
"bounded-collections",
"derivative",
@@ -15806,16 +14797,17 @@ dependencies = [
"parity-scale-codec",
"scale-info",
"serde",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-weights",
"xcm-procedural",
]
[[package]]
name = "staging-xcm-builder"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aa3b14246daaf0301dd35d698bac570d82ba0c6c6c1d3e149b93bcf377b2fc6b"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"impl-trait-for-tuples",
"log",
@@ -15823,32 +14815,33 @@ dependencies = [
"parity-scale-codec",
"polkadot-parachain-primitives",
"scale-info",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "sp-weights",
"staging-xcm",
"staging-xcm-executor",
]
[[package]]
name = "staging-xcm-executor"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3a85a421053f810f3ed988ba3cc39d926c95f70f1ae73282aa8cd5c50072173b"
dependencies = [
"environmental",
"frame-benchmarking",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"impl-trait-for-tuples",
"log",
"parity-scale-codec",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+ "sp-weights",
"staging-xcm",
]
@@ -15948,7 +14941,7 @@ dependencies = [
"md-5",
"rand 0.8.5",
"ring 0.16.20",
- "subtle",
+ "subtle 2.4.1",
"thiserror",
"tokio",
"url",
@@ -15983,44 +14976,35 @@ dependencies = [
[[package]]
name = "substrate-build-script-utils"
-version = "3.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "9.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8a3b7556a62d77b7b8abc34e425817f6f563c2f2aa7142f1c4e93e6422156cc1"
[[package]]
name = "substrate-frame-rpc-system"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "25.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4c241af714c378075b1185e574202cbb9105e849b8c9ea44ef87880bdb3e9a75"
dependencies = [
"frame-system-rpc-runtime-api",
- "futures 0.3.29",
+ "futures",
"jsonrpsee",
"log",
"parity-scale-codec",
"sc-rpc-api",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-transaction-pool-api",
+ "sp-api",
"sp-block-builder",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "substrate-prometheus-endpoint"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "hyper",
- "log",
- "prometheus",
- "thiserror",
- "tokio",
+ "sp-blockchain",
+ "sp-core",
+ "sp-runtime",
]
[[package]]
name = "substrate-prometheus-endpoint"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.16.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ededbe617291db8a47d6e5155486ff1e5425f0bbf5dcb7f752730466a62bd293"
dependencies = [
"hyper",
"log",
@@ -16031,80 +15015,48 @@ dependencies = [
[[package]]
name = "substrate-rpc-client"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.30.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5575c2bef89385e5406565b8fe5620856d414e3846c60927a78f0788cb288c8c"
dependencies = [
"async-trait",
"jsonrpsee",
"log",
"sc-rpc-api",
"serde",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
]
[[package]]
name = "substrate-state-trie-migration-rpc"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "24.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d57888ccce554552c535346893a497d2cfd232f15b6b676d130cdd5bf3f2ccea"
dependencies = [
"jsonrpsee",
"parity-scale-codec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-client-api",
"sc-rpc-api",
"serde",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
+ "sp-state-machine",
+ "sp-trie",
"trie-db",
]
-[[package]]
-name = "substrate-test-client"
-version = "2.0.1"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#c8d2251cafadc108ba2f1f8a3208dc547ff38901"
-dependencies = [
- "array-bytes",
- "async-trait",
- "futures 0.3.29",
- "parity-scale-codec",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-client-db 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-consensus",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-offchain",
- "sc-service",
- "serde",
- "serde_json",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keyring",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "substrate-test-utils"
-version = "4.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#c8d2251cafadc108ba2f1f8a3208dc547ff38901"
-dependencies = [
- "futures 0.3.29",
- "tokio",
-]
-
[[package]]
name = "substrate-wasm-builder"
-version = "5.0.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "14.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "12ab1707dbbd129622b771a9b80b25f0ebf1c04854b907bc44b51ec96fb4005b"
dependencies = [
"ansi_term",
"build-helper",
"cargo_metadata 0.15.4",
"filetime",
"parity-wasm 0.45.0",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-maybe-compressed-blob",
"strum 0.24.1",
"tempfile",
"toml 0.7.8",
@@ -16121,6 +15073,12 @@ dependencies = [
"autocfg",
]
+[[package]]
+name = "subtle"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
+
[[package]]
name = "subtle"
version = "2.4.1"
@@ -16209,15 +15167,15 @@ dependencies = [
"cfg-if",
"fastrand 2.0.1",
"redox_syscall 0.4.1",
- "rustix 0.38.21",
+ "rustix 0.38.24",
"windows-sys 0.48.0",
]
[[package]]
name = "termcolor"
-version = "1.3.0"
+version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64"
+checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449"
dependencies = [
"winapi-util",
]
@@ -16228,118 +15186,6 @@ version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
-[[package]]
-name = "test-runtime-constants"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
-dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "polkadot-primitives",
- "polkadot-runtime-common",
- "smallvec",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
-]
-
-[[package]]
-name = "test-service"
-version = "2.22.0"
-dependencies = [
- "acala-cli",
- "acala-primitives",
- "acala-service",
- "async-trait",
- "criterion",
- "cumulus-client-cli",
- "cumulus-client-consensus-aura",
- "cumulus-client-consensus-common",
- "cumulus-client-consensus-relay-chain",
- "cumulus-client-network",
- "cumulus-client-pov-recovery",
- "cumulus-client-service",
- "cumulus-primitives-core",
- "cumulus-primitives-parachain-inherent",
- "cumulus-relay-chain-inprocess-interface",
- "cumulus-relay-chain-interface",
- "cumulus-relay-chain-minimal-node",
- "cumulus-relay-chain-rpc-interface",
- "cumulus-test-relay-validation-worker-provider",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "frame-system",
- "frame-system-rpc-runtime-api",
- "futures 0.3.29",
- "hex-literal",
- "jsonrpsee",
- "log",
- "mandala-runtime",
- "module-cdp-engine",
- "module-emergency-shutdown",
- "module-evm",
- "module-honzon",
- "module-transaction-payment",
- "orml-oracle",
- "orml-traits",
- "pallet-balances",
- "pallet-sudo",
- "pallet-transaction-payment",
- "parity-scale-codec",
- "polkadot-primitives",
- "polkadot-service",
- "polkadot-test-service",
- "portpicker",
- "rand 0.8.5",
- "rlp",
- "runtime-common",
- "sc-basic-authorship",
- "sc-chain-spec",
- "sc-cli",
- "sc-client-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-consensus",
- "sc-consensus-aura",
- "sc-consensus-manual-seal",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sc-network",
- "sc-network-common",
- "sc-offchain",
- "sc-rpc",
- "sc-rpc-server",
- "sc-service",
- "sc-tracing",
- "sc-transaction-pool",
- "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "serde",
- "sha3",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-arithmetic 16.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-consensus-aura",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keyring",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-timestamp",
- "sp-tracing 10.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-trie 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "substrate-test-client",
- "substrate-test-utils",
- "tempfile",
- "tokio",
- "url",
-]
-
-[[package]]
-name = "textwrap"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
-dependencies = [
- "unicode-width",
-]
-
[[package]]
name = "thiserror"
version = "1.0.50"
@@ -16523,9 +15369,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
-version = "1.33.0"
+version = "1.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653"
+checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
dependencies = [
"backtrace",
"bytes",
@@ -16542,9 +15388,9 @@ dependencies = [
[[package]]
name = "tokio-macros"
-version = "2.1.0"
+version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
+checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
dependencies = [
"proc-macro2",
"quote",
@@ -16728,8 +15574,9 @@ dependencies = [
[[package]]
name = "tracing-gum"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32c0555bd635d9adbf8dec0bf45f7c2aef7541121d648ba37f5f792a211077b6"
dependencies = [
"coarsetime",
"polkadot-node-jaeger",
@@ -16740,8 +15587,9 @@ dependencies = [
[[package]]
name = "tracing-gum-proc-macro"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "35756d8c1a227ec525853a1080bf890d03d939deb2bc50d4d43c96516c795d0d"
dependencies = [
"expander 2.0.0",
"proc-macro-crate",
@@ -16796,9 +15644,9 @@ dependencies = [
[[package]]
name = "trie-db"
-version = "0.27.1"
+version = "0.28.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "767abe6ffed88a1889671a102c2861ae742726f52e0a5a425b92c9fbfa7e9c85"
+checksum = "ff28e0f815c2fea41ebddf148e008b077d2faddb026c9555b29696114d602642"
dependencies = [
"hash-db 0.16.0",
"hashbrown 0.13.2",
@@ -16880,36 +15728,37 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
[[package]]
name = "try-runtime-cli"
-version = "0.10.0-dev"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "0.35.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "845090aa8572116b06813914fc1d09448fe895d82982b63d58de4f91b4eb79b6"
dependencies = [
"async-trait",
- "clap 4.4.7",
+ "clap",
"frame-remote-externalities",
"frame-try-runtime",
"hex",
"log",
"parity-scale-codec",
"sc-cli",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sc-executor",
"serde",
"serde_json",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
"sp-consensus-aura",
"sp-consensus-babe",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-debug-derive 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-keystore 0.27.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-debug-derive",
+ "sp-externalities",
+ "sp-inherents",
+ "sp-io",
+ "sp-keystore",
"sp-rpc",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
+ "sp-state-machine",
"sp-timestamp",
"sp-transaction-storage-proof",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-version",
+ "sp-weights",
"substrate-rpc-client",
"zstd 0.12.4",
]
@@ -16928,7 +15777,7 @@ checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8"
dependencies = [
"async-trait",
"base64 0.13.1",
- "futures 0.3.29",
+ "futures",
"log",
"md-5",
"rand 0.8.5",
@@ -17015,7 +15864,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
dependencies = [
"generic-array 0.14.7",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -17025,7 +15874,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
dependencies = [
"crypto-common",
- "subtle",
+ "subtle 2.4.1",
]
[[package]]
@@ -17102,6 +15951,30 @@ version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
+[[package]]
+name = "w3f-bls"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7335e4c132c28cc43caef6adb339789e599e39adbe78da0c4d547fad48cbc331"
+dependencies = [
+ "ark-bls12-377",
+ "ark-bls12-381",
+ "ark-ec",
+ "ark-ff",
+ "ark-serialize",
+ "ark-serialize-derive",
+ "arrayref",
+ "constcat",
+ "digest 0.10.7",
+ "rand 0.8.5",
+ "rand_chacha 0.3.1",
+ "rand_core 0.6.4",
+ "sha2 0.10.8",
+ "sha3",
+ "thiserror",
+ "zeroize",
+]
+
[[package]]
name = "waitgroup"
version = "0.1.2"
@@ -17151,32 +16024,32 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bencher"
version = "0.5.0"
-source = "git+https://github.com/open-web3-stack/wasm-bencher?branch=polkadot-v1.1.0-parity-scale-codec#ab134e8ecbfbb0cc1f51cc9568e95a1f3becfc0a"
+source = "git+https://github.com/open-web3-stack/wasm-bencher?branch=polkadot-v1.3.0#344a5f82d38633572ff95a546e156c9807eb0693"
dependencies = [
"ansi_term",
"build-helper",
"cargo_metadata 0.17.0",
"filetime",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
+ "frame-support",
"linregress",
"parity-scale-codec",
"parity-wasm 0.45.0",
"parking_lot 0.12.1",
"paste",
"rand 0.8.5",
- "sc-client-db 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sc-executor 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
+ "sc-client-db",
+ "sc-executor",
+ "sc-executor-common",
"serde",
"serde_json",
- "sp-core 21.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-externalities 0.19.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-runtime-interface 17.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-state-machine 0.28.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-v1.1.0)",
+ "sp-core",
+ "sp-externalities",
+ "sp-io",
+ "sp-maybe-compressed-blob",
+ "sp-runtime-interface",
+ "sp-state-machine",
+ "sp-std",
+ "sp-storage",
"strum 0.25.0",
"tempfile",
"thiserror",
@@ -17190,7 +16063,7 @@ dependencies = [
[[package]]
name = "wasm-bencher-procedural"
version = "0.5.0"
-source = "git+https://github.com/open-web3-stack/wasm-bencher?branch=polkadot-v1.1.0-parity-scale-codec#ab134e8ecbfbb0cc1f51cc9568e95a1f3becfc0a"
+source = "git+https://github.com/open-web3-stack/wasm-bencher?branch=polkadot-v1.3.0#344a5f82d38633572ff95a546e156c9807eb0693"
dependencies = [
"proc-macro2",
"quote",
@@ -17285,9 +16158,9 @@ dependencies = [
[[package]]
name = "wasm-opt"
-version = "0.114.2"
+version = "0.116.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "effbef3bd1dde18acb401f73e740a6f3d4a1bc651e9773bddc512fe4d8d68f67"
+checksum = "fc942673e7684671f0c5708fc18993569d184265fd5223bb51fc8e5b9b6cfd52"
dependencies = [
"anyhow",
"libc",
@@ -17301,9 +16174,9 @@ dependencies = [
[[package]]
name = "wasm-opt-cxx-sys"
-version = "0.114.2"
+version = "0.116.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c09e24eb283919ace2ed5733bda4842a59ce4c8de110ef5c6d98859513d17047"
+checksum = "8c57b28207aa724318fcec6575fe74803c23f6f266fce10cbc9f3f116762f12e"
dependencies = [
"anyhow",
"cxx",
@@ -17313,9 +16186,9 @@ dependencies = [
[[package]]
name = "wasm-opt-sys"
-version = "0.114.2"
+version = "0.116.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "36f2f817bed2e8d65eb779fa37317e74de15585751f903c9118342d1970703a4"
+checksum = "8a1cce564dc768dacbdb718fc29df2dba80bd21cb47d8f77ae7e3d95ceb98cbe"
dependencies = [
"anyhow",
"cc",
@@ -17329,7 +16202,7 @@ version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
dependencies = [
- "futures 0.3.29",
+ "futures",
"js-sys",
"parking_lot 0.11.2",
"pin-utils",
@@ -17715,7 +16588,7 @@ dependencies = [
"sha1",
"sha2 0.10.8",
"signature 1.6.4",
- "subtle",
+ "subtle 2.4.1",
"thiserror",
"tokio",
"webpki 0.21.4",
@@ -17809,7 +16682,7 @@ dependencies = [
"rtcp",
"rtp",
"sha-1",
- "subtle",
+ "subtle 2.4.1",
"thiserror",
"tokio",
"webrtc-util",
@@ -17838,21 +16711,23 @@ dependencies = [
[[package]]
name = "westend-runtime"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e833bb935995cb8da9848b974f37801c66163502929ecf22ca15878b8e8edbb7"
dependencies = [
"binary-merkle-tree",
"bitvec 1.0.1",
"frame-benchmarking",
"frame-election-provider-support",
"frame-executive",
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"frame-system",
"frame-system-benchmarking",
"frame-system-rpc-runtime-api",
"frame-try-runtime",
"hex-literal",
"log",
+ "pallet-asset-rate",
"pallet-authority-discovery",
"pallet-authorship",
"pallet-babe",
@@ -17861,6 +16736,7 @@ dependencies = [
"pallet-beefy",
"pallet-beefy-mmr",
"pallet-collective",
+ "pallet-conviction-voting",
"pallet-democracy",
"pallet-election-provider-multi-phase",
"pallet-election-provider-support-benchmarking",
@@ -17882,6 +16758,7 @@ dependencies = [
"pallet-preimage",
"pallet-proxy",
"pallet-recovery",
+ "pallet-referenda",
"pallet-scheduler",
"pallet-session",
"pallet-session-benchmarking",
@@ -17897,6 +16774,7 @@ dependencies = [
"pallet-treasury",
"pallet-utility",
"pallet-vesting",
+ "pallet-whitelist",
"pallet-xcm",
"pallet-xcm-benchmarks",
"parity-scale-codec",
@@ -17909,25 +16787,27 @@ dependencies = [
"serde",
"serde_derive",
"smallvec",
- "sp-api 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-application-crypto 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-api",
+ "sp-application-crypto",
+ "sp-arithmetic",
"sp-authority-discovery",
"sp-block-builder",
"sp-consensus-babe",
"sp-consensus-beefy",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-inherents 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-genesis-builder",
+ "sp-inherents",
+ "sp-io",
"sp-mmr-primitives",
"sp-npos-elections",
"sp-offchain",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-runtime",
"sp-session",
- "sp-staking 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-storage 13.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-staking",
+ "sp-std",
+ "sp-storage",
"sp-transaction-pool",
- "sp-version 22.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-version",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -17937,16 +16817,18 @@ dependencies = [
[[package]]
name = "westend-runtime-constants"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "682c32c5f5e6d51c431bf66c33fc502c66e7b25488c0bd92f5ee020c329f2beb"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"polkadot-primitives",
"polkadot-runtime-common",
"smallvec",
- "sp-core 21.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-runtime 24.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-weights 20.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-core",
+ "sp-runtime",
+ "sp-weights",
+ "staging-xcm",
]
[[package]]
@@ -17958,7 +16840,7 @@ dependencies = [
"either",
"home",
"once_cell",
- "rustix 0.38.21",
+ "rustix 0.38.24",
]
[[package]]
@@ -18249,8 +17131,9 @@ dependencies = [
[[package]]
name = "xcm-procedural"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "401e2b62628da9246dececb06fe58118196557dd8deb9ce12d95cc4aaf56003f"
dependencies = [
"Inflector",
"proc-macro2",
@@ -18260,17 +17143,18 @@ dependencies = [
[[package]]
name = "xcm-simulator"
-version = "1.0.0"
-source = "git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7"
+version = "4.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a7720e785aa713117631634ca784101631f37dc551860f0b95f4a82979ae49ec"
dependencies = [
- "frame-support 4.0.0-dev (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "frame-support",
"parity-scale-codec",
"paste",
"polkadot-core-primitives",
"polkadot-parachain-primitives",
"polkadot-runtime-parachains",
- "sp-io 23.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
- "sp-std 8.0.0 (git+https://github.com/paritytech//polkadot-sdk?branch=release-polkadot-v1.1.0)",
+ "sp-io",
+ "sp-std",
"staging-xcm",
"staging-xcm-builder",
"staging-xcm-executor",
@@ -18291,7 +17175,7 @@ version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5d9ba232399af1783a58d8eb26f6b5006fbefe2dc9ef36bd283324792d03ea5"
dependencies = [
- "futures 0.3.29",
+ "futures",
"log",
"nohash-hasher",
"parking_lot 0.12.1",
@@ -18310,18 +17194,18 @@ dependencies = [
[[package]]
name = "zerocopy"
-version = "0.7.25"
+version = "0.7.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8cd369a67c0edfef15010f980c3cbe45d7f651deac2cd67ce097cd801de16557"
+checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
-version = "0.7.25"
+version = "0.7.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c2f140bda219a26ccc0cdb03dba58af72590c53b22642577d88a927bc5c87d6b"
+checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index e6422a9de9..e2995bb797 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,6 @@ members = [
"node",
"node/cli",
"node/service",
- "node/e2e-tests",
"modules/*",
"modules/evm-utility/macro",
@@ -162,7 +161,7 @@ k256 = { version = "0.11.5", default-features = false }
# - "client" dependencies are only used in the client, and thus don't need to be no_std compatible.
# ORML & Acala (wasm)
-wasm-bencher = { git = "https://github.com/open-web3-stack/wasm-bencher", branch = "polkadot-v1.1.0-parity-scale-codec", default-features = false }
+wasm-bencher = { git = "https://github.com/open-web3-stack/wasm-bencher", branch = "polkadot-v1.3.0", default-features = false }
orml-auction = { path = "orml/auction", default-features = false }
orml-authority = { path = "orml/authority", default-features = false }
orml-benchmarking = { path = "orml/benchmarking", default-features = false }
@@ -229,139 +228,140 @@ acala-service = { path = "node/service", default-features = false }
module-evm-utility-macro = { path = "modules/evm-utility/macro" }
orml-build-script-utils = { path = "orml/build-script-utils" }
-# Substrate (wasm)
-frame-benchmarking = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-frame-executive = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-frame-support = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-frame-system = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-frame-system-rpc-runtime-api = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-frame-try-runtime = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-aura = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-authorship = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-bags-list = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-balances = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-bounties = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-collective = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-democracy = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-elections-phragmen = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-indices = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-membership = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-message-queue = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-multisig = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-preimage = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-proxy = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-recovery = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-root-testing = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-scheduler = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-session = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-staking = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-sudo = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-timestamp = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-tips = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-transaction-payment = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-treasury = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-pallet-utility = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-api = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-application-crypto = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-arithmetic = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-blockchain = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-block-builder = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-consensus = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-consensus-aura = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-core = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-externalities = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-inherents = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-io = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-keyring = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-keystore = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-offchain = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-runtime = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-runtime-interface = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-session = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-staking = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-state-machine = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-std = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-storage = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-timestamp = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-tracing = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-transaction-pool = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-trie = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-sp-version = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
+# polkadot-sdk (wasm)
+cumulus-pallet-aura-ext = { version = "0.4.0", default-features = false }
+cumulus-pallet-dmp-queue = { version = "0.4.0", default-features = false }
+cumulus-pallet-parachain-system = { version = "0.4.0", default-features = false }
+cumulus-pallet-xcm = { version = "0.4.0", default-features = false }
+cumulus-pallet-xcmp-queue = { version = "0.4.0", default-features = false }
+cumulus-primitives-core = { version = "0.4.0", default-features = false }
+cumulus-primitives-parachain-inherent = { version = "0.4.0", default-features = false }
+cumulus-primitives-timestamp = { version = "0.4.0", default-features = false }
+cumulus-primitives-utility = { version = "0.4.0", default-features = false }
+cumulus-test-relay-sproof-builder = { version = "0.4.0", default-features = false }
+frame-benchmarking = { version = "25.0.0", default-features = false }
+frame-executive = { version = "25.0.0", default-features = false }
+frame-support = { version = "25.0.0", default-features = false }
+frame-system = { version = "25.0.0", default-features = false }
+frame-system-rpc-runtime-api = { version = "23.0.0", default-features = false }
+frame-try-runtime = { version = "0.31.0", default-features = false }
+pallet-aura = { version = "24.0.0", default-features = false }
+pallet-authority-discovery = { version = "25.0.0", default-features = false }
+pallet-authorship = { version = "25.0.0", default-features = false }
+pallet-babe = { version = "25.0.0", default-features = false }
+pallet-bags-list = { version = "24.0.0", default-features = false }
+pallet-balances = { version = "25.0.0", default-features = false }
+pallet-bounties = { version = "24.0.0", default-features = false }
+pallet-collective = { version = "25.0.0", default-features = false }
+pallet-democracy = { version = "25.0.0", default-features = false }
+pallet-elections-phragmen = { version = "26.0.0", default-features = false }
+pallet-indices = { version = "25.0.0", default-features = false }
+pallet-membership = { version = "25.0.0", default-features = false }
+pallet-message-queue = { version = "28.0.0", default-features = false }
+pallet-multisig = { version = "25.0.0", default-features = false }
+pallet-preimage = { version = "25.0.0", default-features = false }
+pallet-proxy = { version = "25.0.0", default-features = false }
+pallet-recovery = { version = "25.0.0", default-features = false }
+pallet-root-testing = { version = "1.0.0", default-features = false }
+pallet-scheduler = { version = "26.0.0", default-features = false }
+pallet-session = { version = "25.0.0", default-features = false }
+pallet-staking = { version = "25.0.0", default-features = false }
+pallet-sudo = { version = "25.0.0", default-features = false }
+pallet-timestamp = { version = "24.0.0", default-features = false }
+pallet-tips = { version = "24.0.0", default-features = false }
+pallet-transaction-payment = { version = "25.0.0", default-features = false }
+pallet-transaction-payment-rpc-runtime-api = { version = "25.0.0", default-features = false }
+pallet-treasury = { version = "24.0.0", default-features = false }
+pallet-utility = { version = "25.0.0", default-features = false }
+pallet-vesting = { version = "25.0.0", default-features = false }
+pallet-xcm = { version = "4.0.0", default-features = false }
+parachain-info = { package = "staging-parachain-info", version = "0.4.0", default-features = false }
+polkadot-core-primitives = { version = "4.0.0", default-features = false }
+polkadot-parachain-primitives = { version = "3.0.0", default-features = false }
+polkadot-primitives = { version = "4.0.0", default-features = false }
+polkadot-runtime-common = { version = "4.0.0", default-features = false }
+polkadot-runtime-parachains = { version = "4.0.0", default-features = false }
+sp-api = { version = "23.0.0", default-features = false }
+sp-application-crypto = { version = "27.0.0", default-features = false }
+sp-arithmetic = { version = "20.0.0", default-features = false }
+sp-authority-discovery = { version = "23.0.0", default-features = false }
+sp-block-builder = { version = "23.0.0", default-features = false }
+sp-blockchain = { version = "25.0.0", default-features = false }
+sp-consensus = { version = "0.29.0", default-features = false }
+sp-consensus-aura = { version = "0.29.0", default-features = false }
+sp-consensus-slots = { version = "0.29.0", default-features = false }
+sp-core = { version = "25.0.0", default-features = false }
+sp-debug-derive = { version = "12.0.0", default-features = false }
+sp-externalities = { version = "0.23.0", default-features = false }
+sp-inherents = { version = "23.0.0", default-features = false }
+sp-io = { version = "27.0.0", default-features = false }
+sp-keyring = { version = "28.0.0", default-features = false }
+sp-keystore = { version = "0.31.0", default-features = false }
+sp-maybe-compressed-blob = { version = "9.0.0", default-features = false }
+sp-npos-elections = { version = "23.0.0", default-features = false }
+sp-offchain = { version = "23.0.0", default-features = false }
+sp-panic-handler = { version = "12.0.0", default-features = false }
+sp-runtime = { version = "28.0.0", default-features = false }
+sp-runtime-interface = { version = "21.0.0", default-features = false }
+sp-session = { version = "24.0.0", default-features = false }
+sp-staking = { version = "23.0.0", default-features = false }
+sp-state-machine = { version = "0.32.0", default-features = false }
+sp-std = { version = "12.0.0", default-features = false }
+sp-storage = { version = "17.0.0", default-features = false }
+sp-timestamp = { version = "23.0.0", default-features = false }
+sp-tracing = { version = "14.0.0", default-features = false }
+sp-transaction-pool = { version = "23.0.0", default-features = false }
+sp-trie = { version = "26.0.0", default-features = false }
+sp-version = { version = "26.0.0", default-features = false }
+sp-wasm-interface = { version = "18.0.0", default-features = false }
+sp-weights = { version = "24.0.0", default-features = false }
+xcm = { package = "staging-xcm", version = "4.0.0", default-features = false }
+xcm-builder = { package = "staging-xcm-builder", version = "4.0.0", default-features = false }
+xcm-executor = { package = "staging-xcm-executor", version = "4.0.0", default-features = false }
-# Substrate (client)
-frame-benchmarking-cli = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-pallet-transaction-payment-rpc = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-basic-authorship = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-chain-spec = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-cli = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-client-api = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-consensus = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-consensus-aura = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-consensus-grandpa = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-consensus-manual-seal = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-consensus-slots = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-executor = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-network = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-network-common = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-network-sync = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-offchain = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-rpc = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-rpc-api = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-rpc-server = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-service = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-telemetry = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-tracing = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-transaction-pool = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-sc-transaction-pool-api = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-substrate-build-script-utils = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-substrate-frame-rpc-system = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-substrate-prometheus-endpoint = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-substrate-test-client = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-substrate-test-utils = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-substrate-wasm-builder = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-try-runtime-cli = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-
-# Polkadot / XCM (wasm)
-pallet-xcm = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-polkadot-parachain-primitives = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-polkadot-primitives = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-polkadot-test-runtime = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-polkadot-test-service = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-xcm = { package = "staging-xcm", git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-xcm-builder = { package = "staging-xcm-builder", git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-
-# Polkadot / XCM (client)
-polkadot-cli = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-polkadot-runtime = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-polkadot-runtime-parachains = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-polkadot-service = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-xcm-simulator = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-
-# Cumulus (wasm)
-cumulus-pallet-aura-ext = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-cumulus-pallet-parachain-system = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-cumulus-pallet-xcm = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-cumulus-primitives-core = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-cumulus-primitives-timestamp = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-cumulus-primitives-utility = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-cumulus-test-relay-sproof-builder = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-parachain-info = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false }
-
-# Cumulus (client)
-cumulus-client-cli = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-client-consensus-aura = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-client-consensus-common = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-client-consensus-relay-chain = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-client-network = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-client-pov-recovery = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-client-service = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-relay-chain-interface = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
-cumulus-test-relay-validation-worker-provider = { git = "https://github.com/paritytech//polkadot-sdk", branch = "release-polkadot-v1.1.0" }
+# polkadot-sdk (client)
+cumulus-client-cli = { version = "0.4.0" }
+cumulus-client-consensus-aura = { version = "0.4.0" }
+cumulus-client-consensus-common = { version = "0.4.0" }
+cumulus-client-consensus-relay-chain = { version = "0.4.0" }
+cumulus-client-network = { version = "0.4.0" }
+cumulus-client-pov-recovery = { version = "0.4.0" }
+cumulus-client-service = { version = "0.4.0" }
+cumulus-relay-chain-inprocess-interface = { version = "0.4.0" }
+cumulus-relay-chain-interface = { version = "0.4.0" }
+cumulus-relay-chain-minimal-node = { version = "0.4.0" }
+cumulus-relay-chain-rpc-interface = { version = "0.4.0" }
+cumulus-test-relay-validation-worker-provider = { version = "0.1.0" }
+frame-benchmarking-cli = { version = "29.0.0" }
+pallet-transaction-payment-rpc = { version = "27.0.0" }
+sc-basic-authorship = { version = "0.31.0" }
+sc-chain-spec = { version = "24.0.0" }
+sc-cli = { version = "0.33.0" }
+sc-client-api = { version = "25.0.0" }
+sc-consensus = { version = "0.30.0" }
+sc-consensus-aura = { version = "0.31.0" }
+sc-consensus-grandpa = { version = "0.16.0" }
+sc-consensus-manual-seal = { version = "0.32.0" }
+sc-consensus-slots = { version = "0.30.0" }
+sc-executor = { version = "0.29.0" }
+sc-network = { version = "0.31.0" }
+sc-network-common = { version = "0.30.0" }
+sc-network-sync = { version = "0.30.0" }
+sc-offchain = { version = "26.0.0" }
+sc-rpc = { version = "26.0.0" }
+sc-rpc-api = { version = "0.30.0" }
+sc-rpc-server = { version = "10.0.0" }
+sc-service = { version = "0.32.0" }
+sc-telemetry = { version = "12.0.0" }
+sc-tracing = { version = "25.0.0" }
+sc-transaction-pool = { version = "25.0.0" }
+sc-transaction-pool-api = { version = "25.0.0" }
+substrate-build-script-utils = { version = "9.0.0" }
+substrate-frame-rpc-system = { version = "25.0.0" }
+substrate-prometheus-endpoint = { version = "0.16.0" }
+substrate-test-utils = { version = "3.0.0" }
+substrate-wasm-builder = { version = "14.0.0" }
+try-runtime-cli = { version = "0.35.0" }
+polkadot-cli = { version = "4.0.0" }
+polkadot-service = { version = "4.0.0" }
+xcm-simulator = { version = "4.0.0" }
diff --git a/Makefile b/Makefile
index 080cf00095..5c72a7074f 100644
--- a/Makefile
+++ b/Makefile
@@ -159,11 +159,6 @@ test-runtimes:
SKIP_WASM_BUILD= ${cargo_test} -p runtime-integration-tests --features=with-karura-runtime --lib
SKIP_WASM_BUILD= ${cargo_test} -p runtime-integration-tests --features=with-acala-runtime --lib
-.PHONY: test-e2e
-test-e2e:
- # TODO: use cargo-nextest
- cargo test --release --package test-service -- --include-ignored --skip test_full_node_catching_up --skip simple_balances_test --test-threads=1
-
.PHONY: test-ts
test-ts: build-mandala-internal-release
cd ts-tests && yarn && yarn run build && ACALA_BUILD=release yarn run test
diff --git a/ecosystem-modules/stable-asset b/ecosystem-modules/stable-asset
index bb9524543d..1adce23d98 160000
--- a/ecosystem-modules/stable-asset
+++ b/ecosystem-modules/stable-asset
@@ -1 +1 @@
-Subproject commit bb9524543d9106fb2c0ce27d3bf3eecba3d7a663
+Subproject commit 1adce23d988320359f9985dc31d4697874d163a5
diff --git a/evm-tests b/evm-tests
index 07db7353c5..767a1f025d 160000
--- a/evm-tests
+++ b/evm-tests
@@ -1 +1 @@
-Subproject commit 07db7353c5b90ee53c72b4e06fa34cfb00f9d19f
+Subproject commit 767a1f025d74e383108ba5e0c778b65350e88a1a
diff --git a/modules/asset-registry/src/lib.rs b/modules/asset-registry/src/lib.rs
index 38ac3f3926..6d831dcbe0 100644
--- a/modules/asset-registry/src/lib.rs
+++ b/modules/asset-registry/src/lib.rs
@@ -49,7 +49,6 @@ use sp_std::{boxed::Box, vec::Vec};
use xcm::{v3::prelude::*, VersionedMultiLocation};
-pub mod migrations;
mod mock;
mod tests;
mod weights;
diff --git a/modules/asset-registry/src/migrations.rs b/modules/asset-registry/src/migrations.rs
deleted file mode 100644
index c11f26acf5..0000000000
--- a/modules/asset-registry/src/migrations.rs
+++ /dev/null
@@ -1,57 +0,0 @@
-// This file is part of Acala.
-
-// Copyright (C) 2020-2023 Acala Foundation.
-// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
-
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see .
-
-use crate::{Config, CurrencyId, ForeignAssetLocations, LocationToCurrencyIds, Weight};
-use frame_support::{migration::storage_key_iter, pallet_prelude::*, traits::OnRuntimeUpgrade, StoragePrefixedMap};
-use sp_std::marker::PhantomData;
-use xcm::v3::prelude::*;
-
-/// Migrate MultiLocation v2 to v3
-pub struct MigrateV1MultiLocationToV3(PhantomData);
-impl OnRuntimeUpgrade for MigrateV1MultiLocationToV3 {
- fn on_runtime_upgrade() -> Weight {
- log::info!(
- target: "asset-registry",
- "MigrateV1MultiLocationToV3::on_runtime_upgrade execute, will migrate the key type of LocationToCurrencyIds and value type
- of ForeignAssetLocations from old MultiLocation(v1/v2) to v3",
- );
-
- let mut weight: Weight = Weight::zero();
-
- // migrate the value type of ForeignAssetLocations
- ForeignAssetLocations::::translate(|_key, old_value: xcm::v2::MultiLocation| {
- weight.saturating_accrue(T::DbWeight::get().reads_writes(1, 1));
- MultiLocation::try_from(old_value).ok()
- });
-
- // migrate the key type of LocationToCurrencyIds
- let module_prefix = LocationToCurrencyIds::::module_prefix();
- let storage_prefix = LocationToCurrencyIds::::storage_prefix();
- let old_data =
- storage_key_iter::(module_prefix, storage_prefix)
- .drain()
- .collect::>();
- for (old_key, value) in old_data {
- weight.saturating_accrue(T::DbWeight::get().reads_writes(1, 1));
- let new_key: MultiLocation = old_key.try_into().expect("Stored xcm::v2::MultiLocation");
- LocationToCurrencyIds::::insert(new_key, value);
- }
-
- weight
- }
-}
diff --git a/modules/asset-registry/src/mock.rs b/modules/asset-registry/src/mock.rs
index c41466c143..56b11f8259 100644
--- a/modules/asset-registry/src/mock.rs
+++ b/modules/asset-registry/src/mock.rs
@@ -70,7 +70,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/asset-registry/src/tests.rs b/modules/asset-registry/src/tests.rs
index b310a12741..ab14a9fe38 100644
--- a/modules/asset-registry/src/tests.rs
+++ b/modules/asset-registry/src/tests.rs
@@ -21,12 +21,7 @@
#![cfg(test)]
use super::*;
-use frame_support::{
- assert_noop, assert_ok,
- storage::migration::{get_storage_value, put_storage_value},
- traits::OnRuntimeUpgrade,
- StorageHasher, StoragePrefixedMap,
-};
+use frame_support::{assert_noop, assert_ok};
use mock::{
alice, deploy_contracts, deploy_contracts_same_prefix, erc20_address, erc20_address_not_exists,
erc20_address_same_prefix, AssetRegistry, CouncilAccount, ExtBuilder, Runtime, RuntimeEvent, RuntimeOrigin, System,
@@ -64,267 +59,6 @@ fn test_v2_to_v3_incompatible_multilocation() {
assert!(v2_location.encode() != v3_location.encode());
}
-#[test]
-fn simulate_migrate_multilocation_storage_to_v3() {
- ExtBuilder::default().build().execute_with(|| {
- let foreign_asset_locations_module_prefix = ForeignAssetLocations::::module_prefix();
- let foreign_asset_locations_storage_prefix = ForeignAssetLocations::::storage_prefix();
-
- let location_to_currency_ids_module_prefix = LocationToCurrencyIds::::module_prefix();
- let location_to_currency_ids_storage_prefix = LocationToCurrencyIds::::storage_prefix();
-
- let old_multilocation_0 = xcm::v2::MultiLocation::new(
- 0,
- xcm::v2::Junctions::X1(xcm::v2::Junction::GeneralKey(vec![0].try_into().unwrap())),
- );
- let old_multilocation_1 = xcm::v2::MultiLocation::new(
- 0,
- xcm::v2::Junctions::X1(xcm::v2::Junction::GeneralKey(vec![1, 1].try_into().unwrap())),
- );
- let old_multilocation_2 = xcm::v2::MultiLocation::new(
- 1,
- xcm::v2::Junctions::X2(
- xcm::v2::Junction::Parachain(2088),
- xcm::v2::Junction::GeneralKey(vec![0, 1].try_into().unwrap()),
- ),
- );
- let old_multilocation_3 = xcm::v2::MultiLocation::new(
- 1,
- xcm::v2::Junctions::X2(
- xcm::v2::Junction::Parachain(2096),
- xcm::v2::Junction::GeneralKey(vec![0, 0, 0, 0, 0, 0, 0, 0, 0].try_into().unwrap()),
- ),
- );
- let old_multilocation_4 = xcm::v2::MultiLocation::new(
- 1,
- xcm::v2::Junctions::X2(
- xcm::v2::Junction::Parachain(2096),
- xcm::v2::Junction::GeneralKey(vec![1, 1].try_into().unwrap()),
- ),
- );
-
- let new_multilocation_0 = MultiLocation::try_from(old_multilocation_0.clone()).unwrap();
- let new_multilocation_1 = MultiLocation::try_from(old_multilocation_1.clone()).unwrap();
- let new_multilocation_2 = MultiLocation::try_from(old_multilocation_2.clone()).unwrap();
- let new_multilocation_3 = MultiLocation::try_from(old_multilocation_3.clone()).unwrap();
- let new_multilocation_4 = MultiLocation::try_from(old_multilocation_4.clone()).unwrap();
- let foreign_asset_id_0: ForeignAssetId = 0;
- let foreign_asset_id_1: ForeignAssetId = 1;
- let foreign_asset_id_2: ForeignAssetId = 2;
- let foreign_asset_id_3: ForeignAssetId = 3;
- let foreign_asset_id_4: ForeignAssetId = 4;
- let currency_id_0 = CurrencyId::ForeignAsset(foreign_asset_id_0);
- let currency_id_1 = CurrencyId::ForeignAsset(foreign_asset_id_1);
- let currency_id_2 = CurrencyId::ForeignAsset(foreign_asset_id_2);
- let currency_id_3 = CurrencyId::ForeignAsset(foreign_asset_id_3);
- let currency_id_4 = CurrencyId::ForeignAsset(foreign_asset_id_4);
-
- // Store raw xcm::v2 data
- put_storage_value(
- foreign_asset_locations_module_prefix,
- foreign_asset_locations_storage_prefix,
- &Twox64Concat::hash(&foreign_asset_id_0.encode()),
- &old_multilocation_0,
- );
- put_storage_value(
- foreign_asset_locations_module_prefix,
- foreign_asset_locations_storage_prefix,
- &Twox64Concat::hash(&foreign_asset_id_1.encode()),
- &old_multilocation_1,
- );
- put_storage_value(
- foreign_asset_locations_module_prefix,
- foreign_asset_locations_storage_prefix,
- &Twox64Concat::hash(&foreign_asset_id_2.encode()),
- &old_multilocation_2,
- );
- put_storage_value(
- foreign_asset_locations_module_prefix,
- foreign_asset_locations_storage_prefix,
- &Twox64Concat::hash(&foreign_asset_id_3.encode()),
- &old_multilocation_3,
- );
- put_storage_value(
- foreign_asset_locations_module_prefix,
- foreign_asset_locations_storage_prefix,
- &Twox64Concat::hash(&foreign_asset_id_4.encode()),
- &old_multilocation_4,
- );
- put_storage_value(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_0.encode()),
- currency_id_0,
- );
- put_storage_value(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_1.encode()),
- currency_id_1,
- );
- put_storage_value(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_2.encode()),
- currency_id_2,
- );
- put_storage_value(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_3.encode()),
- currency_id_3,
- );
- put_storage_value(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_4.encode()),
- currency_id_4,
- );
-
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_0.encode()),
- ),
- Some(currency_id_0)
- );
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_1.encode()),
- ),
- Some(currency_id_1)
- );
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_2.encode()),
- ),
- Some(currency_id_2)
- );
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_3.encode()),
- ),
- Some(currency_id_3)
- );
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_4.encode()),
- ),
- Some(currency_id_4)
- );
-
- // Assert the v3 multilocation value does not exist in ForeignAssetLocations
- assert_eq!(AssetRegistry::foreign_asset_locations(foreign_asset_id_0), None);
- assert_eq!(AssetRegistry::foreign_asset_locations(foreign_asset_id_1), None);
-
- // Assert v3 multilocation key does not exist in LocationToCurrencyIds
- assert_eq!(AssetRegistry::location_to_currency_ids(new_multilocation_0), None);
- assert_eq!(AssetRegistry::location_to_currency_ids(new_multilocation_1), None);
-
- // Run migration
- assert_eq!(
- crate::migrations::MigrateV1MultiLocationToV3::::on_runtime_upgrade(),
- <::DbWeight as Get>::get()
- .reads_writes(10, 10)
- );
-
- // Assert the value type of ForeignAssetLocations has been migrated to v3 MultiLocation
- assert_eq!(
- AssetRegistry::foreign_asset_locations(foreign_asset_id_0),
- Some(new_multilocation_0)
- );
- assert_eq!(
- AssetRegistry::foreign_asset_locations(foreign_asset_id_1),
- Some(new_multilocation_1)
- );
- assert_eq!(
- AssetRegistry::foreign_asset_locations(foreign_asset_id_2),
- Some(new_multilocation_2)
- );
- assert_eq!(
- AssetRegistry::foreign_asset_locations(foreign_asset_id_3),
- Some(new_multilocation_3)
- );
- assert_eq!(
- AssetRegistry::foreign_asset_locations(foreign_asset_id_4),
- Some(new_multilocation_4)
- );
-
- // Assert the key type of LocationToCurrencyIds has been migrated to v3 MultiLocation
- assert_eq!(
- AssetRegistry::location_to_currency_ids(new_multilocation_0),
- Some(currency_id_0)
- );
- assert_eq!(
- AssetRegistry::location_to_currency_ids(new_multilocation_1),
- Some(currency_id_1)
- );
- assert_eq!(
- AssetRegistry::location_to_currency_ids(new_multilocation_2),
- Some(currency_id_2)
- );
- assert_eq!(
- AssetRegistry::location_to_currency_ids(new_multilocation_3),
- Some(currency_id_3)
- );
- assert_eq!(
- AssetRegistry::location_to_currency_ids(new_multilocation_4),
- Some(currency_id_4)
- );
-
- // Assert the old key does not exist anymore
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_0.encode()),
- ),
- None
- );
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_1.encode()),
- ),
- None
- );
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_2.encode()),
- ),
- None
- );
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_3.encode()),
- ),
- None
- );
- assert_eq!(
- get_storage_value::(
- location_to_currency_ids_module_prefix,
- location_to_currency_ids_storage_prefix,
- &Twox64Concat::hash(&old_multilocation_4.encode()),
- ),
- None
- );
- });
-}
-
#[test]
fn versioned_multi_location_convert_work() {
ExtBuilder::default().build().execute_with(|| {
diff --git a/modules/cdp-engine/src/mock.rs b/modules/cdp-engine/src/mock.rs
index fcf14f9241..2240e8c227 100644
--- a/modules/cdp-engine/src/mock.rs
+++ b/modules/cdp-engine/src/mock.rs
@@ -113,7 +113,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/cdp-treasury/src/mock.rs b/modules/cdp-treasury/src/mock.rs
index 415f10d972..a55b2381f0 100644
--- a/modules/cdp-treasury/src/mock.rs
+++ b/modules/cdp-treasury/src/mock.rs
@@ -113,7 +113,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/collator-selection/src/mock.rs b/modules/collator-selection/src/mock.rs
index 1b14232d0f..2946e6c52f 100644
--- a/modules/collator-selection/src/mock.rs
+++ b/modules/collator-selection/src/mock.rs
@@ -83,7 +83,8 @@ impl pallet_balances::Config for Test {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/currencies/src/mock.rs b/modules/currencies/src/mock.rs
index 02e2619356..40798af73e 100644
--- a/modules/currencies/src/mock.rs
+++ b/modules/currencies/src/mock.rs
@@ -134,6 +134,7 @@ impl pallet_balances::Config for Runtime {
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
type RuntimeHoldReason = ();
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ConstU32<1>;
type MaxFreezes = ();
diff --git a/modules/earning/src/mock.rs b/modules/earning/src/mock.rs
index b4ac33f3f4..0d4c1c1f57 100644
--- a/modules/earning/src/mock.rs
+++ b/modules/earning/src/mock.rs
@@ -69,7 +69,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/emergency-shutdown/src/mock.rs b/modules/emergency-shutdown/src/mock.rs
index 8a4fb71271..2e1149ee57 100644
--- a/modules/emergency-shutdown/src/mock.rs
+++ b/modules/emergency-shutdown/src/mock.rs
@@ -107,7 +107,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/evm-accounts/src/mock.rs b/modules/evm-accounts/src/mock.rs
index 358a826402..d172998cef 100644
--- a/modules/evm-accounts/src/mock.rs
+++ b/modules/evm-accounts/src/mock.rs
@@ -76,7 +76,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/evm-bridge/src/mock.rs b/modules/evm-bridge/src/mock.rs
index 0cb31056a6..4db15241e7 100644
--- a/modules/evm-bridge/src/mock.rs
+++ b/modules/evm-bridge/src/mock.rs
@@ -75,7 +75,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/evm/src/bench/mock.rs b/modules/evm/src/bench/mock.rs
index bc301aa928..7c48cd3002 100644
--- a/modules/evm/src/bench/mock.rs
+++ b/modules/evm/src/bench/mock.rs
@@ -87,7 +87,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/evm/src/bench/mod.rs b/modules/evm/src/bench/mod.rs
index 76a6bfefff..d195b631e3 100644
--- a/modules/evm/src/bench/mod.rs
+++ b/modules/evm/src/bench/mod.rs
@@ -57,11 +57,10 @@ fn get_bench_info(name: &str) -> (Vec, H160, Vec, u64, Vec) {
fn faucet(address: &H160) {
let account_id = MockAddressMapping::get_account_id(&address);
- assert_ok!(Balances::set_balance_deprecated(
+ assert_ok!(Balances::force_set_balance(
RuntimeOrigin::root(),
account_id,
1_000_000_000_000_000,
- 0
));
}
diff --git a/modules/evm/src/mock.rs b/modules/evm/src/mock.rs
index abe2d20839..278ce84ba2 100644
--- a/modules/evm/src/mock.rs
+++ b/modules/evm/src/mock.rs
@@ -78,7 +78,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/evm/src/tests.rs b/modules/evm/src/tests.rs
index 9f4220bc2e..f06005c65f 100644
--- a/modules/evm/src/tests.rs
+++ b/modules/evm/src/tests.rs
@@ -2543,11 +2543,11 @@ fn strict_call_works() {
Utility::batch_all(
RuntimeOrigin::signed(bob_account_id.clone()),
vec![
- RuntimeCall::Balances(pallet_balances::Call::transfer {
+ RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death {
dest: bob_account_id.clone(),
value: 5
}),
- RuntimeCall::Balances(pallet_balances::Call::transfer {
+ RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death {
dest: bob_account_id.clone(),
value: 6
}),
@@ -2576,11 +2576,11 @@ fn strict_call_works() {
Utility::batch_all(
RuntimeOrigin::signed(alice_account_id.clone()),
vec![
- RuntimeCall::Balances(pallet_balances::Call::transfer {
+ RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death {
dest: bob_account_id.clone(),
value: 5
}),
- RuntimeCall::Balances(pallet_balances::Call::transfer {
+ RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death {
dest: bob_account_id.clone(),
value: 6
}),
@@ -2608,11 +2608,11 @@ fn strict_call_works() {
assert_ok!(Utility::batch_all(
RuntimeOrigin::signed(alice_account_id.clone()),
vec![
- RuntimeCall::Balances(pallet_balances::Call::transfer {
+ RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death {
dest: bob_account_id.clone(),
value: 5
}),
- RuntimeCall::Balances(pallet_balances::Call::transfer {
+ RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death {
dest: bob_account_id.clone(),
value: 6
}),
diff --git a/modules/homa-validator-list/src/mock.rs b/modules/homa-validator-list/src/mock.rs
index d6bfe53a3d..900e3a7249 100644
--- a/modules/homa-validator-list/src/mock.rs
+++ b/modules/homa-validator-list/src/mock.rs
@@ -105,7 +105,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/homa/src/mock.rs b/modules/homa/src/mock.rs
index f4acbe65fd..334cb010ee 100644
--- a/modules/homa/src/mock.rs
+++ b/modules/homa/src/mock.rs
@@ -133,7 +133,8 @@ impl pallet_balances::Config for Runtime {
type WeightInfo = ();
type MaxReserves = ();
type ReserveIdentifier = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/honzon-bridge/src/mock.rs b/modules/honzon-bridge/src/mock.rs
index 618918a6a7..a3a19cf7cf 100644
--- a/modules/honzon-bridge/src/mock.rs
+++ b/modules/honzon-bridge/src/mock.rs
@@ -105,7 +105,8 @@ impl pallet_balances::Config for Runtime {
type WeightInfo = ();
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/honzon/src/mock.rs b/modules/honzon/src/mock.rs
index a4fa407167..a572b54a23 100644
--- a/modules/honzon/src/mock.rs
+++ b/modules/honzon/src/mock.rs
@@ -114,7 +114,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/liquid-crowdloan/src/mock.rs b/modules/liquid-crowdloan/src/mock.rs
index b978d9378c..bedf78e0b6 100644
--- a/modules/liquid-crowdloan/src/mock.rs
+++ b/modules/liquid-crowdloan/src/mock.rs
@@ -103,7 +103,8 @@ impl pallet_balances::Config for Runtime {
type WeightInfo = ();
type MaxReserves = ();
type ReserveIdentifier = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/loans/src/mock.rs b/modules/loans/src/mock.rs
index 5996421ce4..fbeee47866 100644
--- a/modules/loans/src/mock.rs
+++ b/modules/loans/src/mock.rs
@@ -109,7 +109,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/nft/src/benchmarking.rs b/modules/nft/src/benchmarking.rs
index 9f585c7eb1..053bfed43a 100644
--- a/modules/nft/src/benchmarking.rs
+++ b/modules/nft/src/benchmarking.rs
@@ -204,7 +204,8 @@ mod mock {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
@@ -230,7 +231,10 @@ mod mock {
fn filter(&self, c: &RuntimeCall) -> bool {
match self {
ProxyType::Any => true,
- ProxyType::JustTransfer => matches!(c, RuntimeCall::Balances(pallet_balances::Call::transfer { .. })),
+ ProxyType::JustTransfer => matches!(
+ c,
+ RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { .. })
+ ),
ProxyType::JustUtility => matches!(c, RuntimeCall::Utility(..)),
}
}
diff --git a/modules/nft/src/mock.rs b/modules/nft/src/mock.rs
index dd55c11127..5f7bd11ad2 100644
--- a/modules/nft/src/mock.rs
+++ b/modules/nft/src/mock.rs
@@ -74,7 +74,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
@@ -101,7 +102,10 @@ impl InstanceFilter for ProxyType {
fn filter(&self, c: &RuntimeCall) -> bool {
match self {
ProxyType::Any => true,
- ProxyType::JustTransfer => matches!(c, RuntimeCall::Balances(pallet_balances::Call::transfer { .. })),
+ ProxyType::JustTransfer => matches!(
+ c,
+ RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { .. })
+ ),
ProxyType::JustUtility => matches!(c, RuntimeCall::Utility { .. }),
}
}
diff --git a/modules/nominees-election/src/mock.rs b/modules/nominees-election/src/mock.rs
index e601279d13..47814ae871 100644
--- a/modules/nominees-election/src/mock.rs
+++ b/modules/nominees-election/src/mock.rs
@@ -100,7 +100,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/transaction-pause/src/mock.rs b/modules/transaction-pause/src/mock.rs
index bc71214ef4..2a1fa84b65 100644
--- a/modules/transaction-pause/src/mock.rs
+++ b/modules/transaction-pause/src/mock.rs
@@ -75,7 +75,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ();
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/transaction-pause/src/tests.rs b/modules/transaction-pause/src/tests.rs
index ed584b860f..36128aeba1 100644
--- a/modules/transaction-pause/src/tests.rs
+++ b/modules/transaction-pause/src/tests.rs
@@ -26,7 +26,7 @@ use mock::{RuntimeEvent, *};
use sp_runtime::traits::BadOrigin;
const BALANCE_TRANSFER: &::RuntimeCall =
- &mock::RuntimeCall::Balances(pallet_balances::Call::transfer { dest: ALICE, value: 10 });
+ &mock::RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { dest: ALICE, value: 10 });
const TOKENS_TRANSFER: &::RuntimeCall =
&mock::RuntimeCall::Tokens(orml_tokens::Call::transfer {
dest: ALICE,
@@ -130,7 +130,7 @@ fn paused_transaction_filter_work() {
assert_ok!(TransactionPause::pause_transaction(
RuntimeOrigin::signed(1),
b"Balances".to_vec(),
- b"transfer".to_vec()
+ b"transfer_allow_death".to_vec()
));
assert_ok!(TransactionPause::pause_transaction(
RuntimeOrigin::signed(1),
@@ -142,7 +142,7 @@ fn paused_transaction_filter_work() {
assert_ok!(TransactionPause::unpause_transaction(
RuntimeOrigin::signed(1),
b"Balances".to_vec(),
- b"transfer".to_vec()
+ b"transfer_allow_death".to_vec()
));
assert_ok!(TransactionPause::unpause_transaction(
RuntimeOrigin::signed(1),
diff --git a/modules/transaction-payment/src/mock.rs b/modules/transaction-payment/src/mock.rs
index 0c27cd2041..d2c60151a2 100644
--- a/modules/transaction-payment/src/mock.rs
+++ b/modules/transaction-payment/src/mock.rs
@@ -134,7 +134,8 @@ impl pallet_balances::Config for Runtime {
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = ReserveIdentifier;
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/modules/transaction-payment/src/tests.rs b/modules/transaction-payment/src/tests.rs
index 2a4cc8a6e3..daaa89c971 100644
--- a/modules/transaction-payment/src/tests.rs
+++ b/modules/transaction-payment/src/tests.rs
@@ -1232,7 +1232,7 @@ fn query_info_works() {
.weight_fee(2)
.build()
.execute_with(|| {
- let call = RuntimeCall::PalletBalances(pallet_balances::Call::transfer {
+ let call = RuntimeCall::PalletBalances(pallet_balances::Call::transfer_allow_death {
dest: AccountId::new([2u8; 32]),
value: 69,
});
diff --git a/modules/xcm-interface/src/mocks/mod.rs b/modules/xcm-interface/src/mocks/mod.rs
index 7cf663d2c2..3a8ed7f6d8 100644
--- a/modules/xcm-interface/src/mocks/mod.rs
+++ b/modules/xcm-interface/src/mocks/mod.rs
@@ -194,7 +194,8 @@ macro_rules! impl_mock {
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = ();
- type RuntimeHoldReason = ();
+ type RuntimeHoldReason = RuntimeHoldReason;
+ type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = ();
type MaxHolds = ();
type MaxFreezes = ();
diff --git a/node/e2e-tests/Cargo.toml b/node/e2e-tests/Cargo.toml
deleted file mode 100644
index 350a3f108d..0000000000
--- a/node/e2e-tests/Cargo.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-[package]
-name = "e2e-tests"
-version = "2.22.0"
-authors = ["Acala Developers"]
-edition = "2021"
-
-[dependencies]
-test-service = { path = "./test-service" }
diff --git a/node/e2e-tests/src/lib.rs b/node/e2e-tests/src/lib.rs
deleted file mode 100644
index f0d5e13dc0..0000000000
--- a/node/e2e-tests/src/lib.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-// This file is part of Acala.
-
-// Copyright (C) 2020-2023 Acala Foundation.
-// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
-
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see .
-
-//! End to end runtime tests.
diff --git a/node/e2e-tests/test-service/Cargo.toml b/node/e2e-tests/test-service/Cargo.toml
deleted file mode 100644
index f7d4cc13f4..0000000000
--- a/node/e2e-tests/test-service/Cargo.toml
+++ /dev/null
@@ -1,103 +0,0 @@
-[package]
-name = "test-service"
-version = "2.22.0"
-authors = ["Acala Developers"]
-edition = "2021"
-
-[dependencies]
-codec = { package = "parity-scale-codec", version = "3.4.0" }
-rand = "0.8.5"
-serde = { version = "1.0.145", features = ["derive"] }
-async-trait = "0.1.71"
-tokio = { version = "1.21.2", features = ["macros"] }
-criterion = { version = "0.3.6", features = [ "async_tokio" ] }
-jsonrpsee = { version = "0.16.2", features = ["server", "macros"] }
-log = "0.4.17"
-futures = { package = "futures", version = "0.3", features = ["compat"] }
-tempfile = "3.7.0"
-hex-literal = "0.4.1"
-url = "2.3.1"
-rlp = "0.5.2"
-sha3 = "0.10"
-
-# Substrate dependencies
-frame-support = { workspace = true, features = ["std"] }
-frame-system = { workspace = true, features = ["std"] }
-frame-system-rpc-runtime-api = { workspace = true, features = ["std"] }
-pallet-balances = { workspace = true, features = ["std"] }
-pallet-sudo = { workspace = true, features = ["std"] }
-pallet-transaction-payment = { workspace = true, features = ["std"] }
-sc-basic-authorship = { workspace = true }
-sc-chain-spec = { workspace = true }
-sc-client-api = { workspace = true }
-sc-consensus = { workspace = true }
-sc-consensus-aura = { workspace = true }
-sc-consensus-manual-seal = { workspace = true }
-sc-executor = { workspace = true }
-sc-network = { workspace = true }
-sc-network-common = { workspace = true }
-sc-offchain = { workspace = true }
-sc-rpc = { workspace = true }
-sc-rpc-server = { workspace = true }
-sc-service = { workspace = true }
-sc-tracing = { workspace = true }
-sc-transaction-pool = { workspace = true }
-sc-transaction-pool-api = { workspace = true }
-sp-api = { workspace = true, features = ["std"] }
-sp-arithmetic = { workspace = true, features = ["std"] }
-sp-blockchain = { workspace = true }
-sp-consensus = { workspace = true }
-sp-consensus-aura = { workspace = true, features = ["std"] }
-sp-core = { workspace = true, features = ["std"] }
-sp-externalities = { workspace = true, features = ["std"] }
-sp-io = { workspace = true, features = ["std"] }
-sp-keyring = { workspace = true }
-sp-runtime = { workspace = true, features = ["std"] }
-sp-state-machine = { workspace = true, features = ["std"] }
-sp-timestamp = { workspace = true, features = ["std"] }
-sp-tracing = { workspace = true, features = ["std"] }
-sp-trie = { workspace = true, features = ["std"] }
-substrate-test-client = { workspace = true }
-
-# Polkadot dependencies
-polkadot-primitives = { workspace = true, features = ["std"] }
-polkadot-service = { workspace = true }
-polkadot-test-service = { workspace = true }
-
-# Cumulus dependencies
-cumulus-client-cli = { workspace = true }
-cumulus-client-consensus-aura = { workspace = true }
-cumulus-client-consensus-common = { workspace = true }
-cumulus-client-consensus-relay-chain = { workspace = true }
-cumulus-client-network = { workspace = true }
-cumulus-client-pov-recovery = { workspace = true }
-cumulus-client-service = { workspace = true }
-cumulus-primitives-core = { workspace = true, features = ["std"] }
-cumulus-primitives-parachain-inherent = { workspace = true, features = ["std"] }
-cumulus-relay-chain-inprocess-interface = { workspace = true }
-cumulus-relay-chain-interface = { workspace = true }
-cumulus-relay-chain-minimal-node = { workspace = true }
-cumulus-relay-chain-rpc-interface = { workspace = true }
-cumulus-test-relay-validation-worker-provider = { workspace = true }
-
-runtime-common = { path = "../../../runtime/common" }
-node-runtime = { package = "mandala-runtime", path = "../../../runtime/mandala" }
-node-primitives = { package = "acala-primitives", path = "../../../primitives" }
-node-cli = { package = "acala-cli", path = "../../cli", features = ["with-mandala-runtime"] }
-node-service = { package = "acala-service", path = "../../service", features = ["with-mandala-runtime"] }
-
-# module deps
-module-transaction-payment = { path = "../../../modules/transaction-payment" }
-module-evm = { path = "../../../modules/evm" }
-module-emergency-shutdown = { path = "../../../modules/emergency-shutdown" }
-module-cdp-engine = { path = "../../../modules/cdp-engine" }
-module-honzon = { path = "../../../modules/honzon" }
-orml-oracle = { path = "../../../orml/oracle" }
-orml-traits = { path = "../../../orml/traits" }
-
-[dev-dependencies]
-portpicker = "0.1.1"
-
-# Substrate dependencies
-sc-cli = { workspace = true }
-substrate-test-utils = { workspace = true }
diff --git a/node/e2e-tests/test-service/src/builder.rs b/node/e2e-tests/test-service/src/builder.rs
deleted file mode 100644
index 7ac2c81e0e..0000000000
--- a/node/e2e-tests/test-service/src/builder.rs
+++ /dev/null
@@ -1,347 +0,0 @@
-// This file is part of Acala.
-
-// Copyright (C) 2020-2023 Acala Foundation.
-// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
-
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see .
-
-use super::*;
-
-/// A builder to create a [`TestNode`].
-pub struct TestNodeBuilder {
- para_id: ParaId,
- tokio_handle: tokio::runtime::Handle,
- key: Sr25519Keyring,
- collator_key: Option,
- parachain_nodes: Vec,
- parachain_nodes_exclusive: bool,
- relay_chain_nodes: Vec,
- wrap_announce_block: Option AnnounceBlockFn>>,
- storage_update_func_parachain: Option>,
- storage_update_func_relay_chain: Option>,
- consensus: Consensus,
- seal_mode: SealMode,
- relay_chain_full_node_url: Vec,
- offchain_worker: bool,
-}
-
-impl TestNodeBuilder {
- /// Create a new instance of `Self`.
- ///
- /// `para_id` - The parachain id this node is running for.
- /// `tokio_handle` - The tokio handler to use.
- /// `key` - The key that will be used to generate the name and that will be passed as
- /// `dev_seed`.
- pub fn new(para_id: ParaId, tokio_handle: tokio::runtime::Handle, key: Sr25519Keyring) -> Self {
- TestNodeBuilder {
- key,
- para_id,
- tokio_handle,
- collator_key: None,
- parachain_nodes: Vec::new(),
- parachain_nodes_exclusive: false,
- relay_chain_nodes: Vec::new(),
- wrap_announce_block: None,
- storage_update_func_parachain: None,
- storage_update_func_relay_chain: None,
- consensus: Consensus::Aura,
- seal_mode: SealMode::DevAuraSeal,
- relay_chain_full_node_url: vec![],
- offchain_worker: true,
- }
- }
-
- /// Enable collator for this node.
- pub fn enable_collator(mut self) -> Self {
- let collator_key = CollatorPair::generate().0;
- self.collator_key = Some(collator_key);
- self
- }
-
- /// Disable offchain worker for this node.
- pub fn disable_offchain_worker(mut self) -> Self {
- self.offchain_worker = false;
- self
- }
-
- /// Instruct the node to exclusively connect to registered parachain nodes.
- ///
- /// Parachain nodes can be registered using [`Self::connect_to_parachain_node`] and
- /// [`Self::connect_to_parachain_nodes`].
- pub fn exclusively_connect_to_registered_parachain_nodes(mut self) -> Self {
- self.parachain_nodes_exclusive = true;
- self
- }
-
- /// Make the node connect to the given parachain node.
- ///
- /// By default the node will not be connected to any node or will be able to discover any other
- /// node.
- pub fn connect_to_parachain_node(mut self, node: &TestNode) -> Self {
- self.parachain_nodes.push(node.addr.clone());
- self
- }
-
- /// Make the node connect to the given parachain nodes.
- ///
- /// By default the node will not be connected to any node or will be able to discover any other
- /// node.
- pub fn connect_to_parachain_nodes<'a>(mut self, nodes: impl IntoIterator- ) -> Self {
- self.parachain_nodes.extend(nodes.into_iter().map(|n| n.addr.clone()));
- self
- }
-
- /// Make the node connect to the given relay chain node.
- ///
- /// By default the node will not be connected to any node or will be able to discover any other
- /// node.
- pub fn connect_to_relay_chain_node(mut self, node: &polkadot_test_service::PolkadotTestNode) -> Self {
- self.relay_chain_nodes.push(node.addr.clone());
- self
- }
-
- /// Make the node connect to the given relay chain nodes.
- ///
- /// By default the node will not be connected to any node or will be able to discover any other
- /// node.
- pub fn connect_to_relay_chain_nodes<'a>(
- mut self,
- nodes: impl IntoIterator
- ,
- ) -> Self {
- self.relay_chain_nodes.extend(nodes.into_iter().map(|n| n.addr.clone()));
- self
- }
-
- /// Wrap the announce block function of this node.
- pub fn wrap_announce_block(mut self, wrap: impl FnOnce(AnnounceBlockFn) -> AnnounceBlockFn + 'static) -> Self {
- self.wrap_announce_block = Some(Box::new(wrap));
- self
- }
-
- /// Allows accessing the parachain storage before the test node is built.
- pub fn update_storage_parachain(mut self, updater: impl Fn() + 'static) -> Self {
- self.storage_update_func_parachain = Some(Box::new(updater));
- self
- }
-
- /// Allows accessing the relay chain storage before the test node is built.
- pub fn update_storage_relay_chain(mut self, updater: impl Fn() + 'static) -> Self {
- self.storage_update_func_relay_chain = Some(Box::new(updater));
- self
- }
-
- /// Use the null consensus that will never author any block.
- pub fn use_null_consensus(mut self) -> Self {
- self.consensus = Consensus::Null;
- self
- }
-
- /// Use the relay-chain consensus.
- pub fn use_relay_consensus(mut self) -> Self {
- self.consensus = Consensus::RelayChain;
- self
- }
-
- /// Enable collator for this node.
- pub fn with_seal_mode(mut self, seal_mode: SealMode) -> Self {
- self.seal_mode = seal_mode;
- self
- }
-
- /// Connect to full node via RPC.
- pub fn use_external_relay_chain_node_at_url(mut self, network_address: Url) -> Self {
- self.relay_chain_full_node_url = vec![network_address];
- self
- }
-
- /// Connect to full node via RPC.
- pub fn use_external_relay_chain_node_at_port(mut self, port: u16) -> Self {
- let mut localhost_url = Url::parse("ws://localhost").expect("Should be able to parse localhost Url");
- localhost_url.set_port(Some(port)).expect("Should be able to set port");
- self.relay_chain_full_node_url = vec![localhost_url];
- self
- }
-
- /// Build the [`TestNode`].
- pub async fn build(self) -> TestNode {
- let mut parachain_config = node_config(
- self.storage_update_func_parachain.unwrap_or_else(|| Box::new(|| ())),
- self.tokio_handle.clone(),
- self.key,
- self.parachain_nodes,
- self.parachain_nodes_exclusive,
- self.collator_key.is_some(),
- )
- .expect("could not generate Configuration");
-
- parachain_config.offchain_worker.enabled = self.offchain_worker;
-
- // start relay-chain full node inside para-chain
- let mut relay_chain_config = polkadot_test_service::node_config(
- self.storage_update_func_relay_chain.unwrap_or_else(|| Box::new(|| ())),
- self.tokio_handle,
- self.key,
- self.relay_chain_nodes,
- false,
- );
-
- let collator_options = CollatorOptions {
- relay_chain_mode: cumulus_client_cli::RelayChainMode::ExternalRpc(self.relay_chain_full_node_url),
- };
-
- relay_chain_config.network.node_name = format!("{} (relay chain)", relay_chain_config.network.node_name);
-
- let multiaddr = parachain_config.network.listen_addresses[0].clone();
- let (task_manager, client, network, rpc_handlers, transaction_pool, backend, seal_sink) = match self.seal_mode {
- SealMode::DevInstantSeal | SealMode::DevAuraSeal => {
- log::info!("start as standalone dev node.");
- start_dev_node(parachain_config, self.seal_mode)
- .await
- .expect("could not start dev node!")
- }
- SealMode::ParaSeal => {
- log::info!("start as parachain node.");
- start_node_impl(
- parachain_config,
- self.collator_key,
- relay_chain_config,
- self.para_id,
- self.wrap_announce_block,
- |_| Ok(RpcModule::new(())),
- self.consensus,
- collator_options,
- self.seal_mode,
- )
- .await
- .expect("could not create collator!")
- }
- };
-
- let peer_id = network.local_peer_id();
- let addr = MultiaddrWithPeerId { multiaddr, peer_id };
-
- TestNode {
- task_manager,
- client,
- network,
- addr,
- rpc_handlers,
- transaction_pool,
- backend,
- seal_sink,
- }
- }
-}
-
-/// Create a Cumulus `Configuration`.
-///
-/// By default an in-memory socket will be used, therefore you need to provide nodes if you want the
-/// node to be connected to other nodes. If `nodes_exclusive` is `true`, the node will only connect
-/// to the given `nodes` and not to any other node. The `storage_update_func` can be used to make
-/// adjustments to the runtime genesis.
-pub fn node_config(
- storage_update_func: impl Fn(),
- tokio_handle: tokio::runtime::Handle,
- key: Sr25519Keyring,
- nodes: Vec,
- nodes_exlusive: bool,
- is_collator: bool,
-) -> Result {
- // https://github.com/paritytech/substrate/blob/f465fee723c87b734/client/service/src/config.rs#L280-L290
- // let base_path = BasePath::new_temp_dir()?;
- let base_path = BasePath::new(std::path::PathBuf::from(
- tempfile::Builder::new().prefix("substrate").tempdir()?.path(),
- ));
- let root = base_path.path().join(format!("cumulus_test_service_{}", key));
- let role = if is_collator { Role::Authority } else { Role::Full };
- let key_seed = key.to_seed();
- let mut spec = Box::new(dev_testnet_config(None).unwrap());
-
- let mut storage = spec
- .as_storage_builder()
- .build_storage()
- .expect("could not build storage");
-
- BasicExternalities::execute_with_storage(&mut storage, storage_update_func);
- spec.set_storage(storage);
-
- let mut network_config = NetworkConfiguration::new(
- format!("{} (parachain)", key_seed),
- "network/test/0.1",
- Default::default(),
- None,
- );
-
- if nodes_exlusive {
- network_config.default_peers_set.reserved_nodes = nodes;
- network_config.default_peers_set.non_reserved_mode = sc_network::config::NonReservedPeerMode::Deny;
- } else {
- network_config.boot_nodes = nodes;
- }
-
- network_config.allow_non_globals_in_dht = true;
-
- network_config
- .listen_addresses
- .push(multiaddr::Protocol::Memory(rand::random()).into());
-
- network_config.transport = TransportConfig::MemoryOnly;
-
- Ok(Configuration {
- impl_name: "cumulus-test-node".to_string(),
- impl_version: "0.1".to_string(),
- role,
- tokio_handle,
- transaction_pool: Default::default(),
- network: network_config,
- keystore: KeystoreConfig::InMemory,
- database: DatabaseSource::RocksDb {
- path: root.join("db"),
- cache_size: 128,
- },
- trie_cache_maximum_size: Some(64 * 1024 * 1024),
- state_pruning: Some(PruningMode::ArchiveAll),
- blocks_pruning: BlocksPruning::KeepAll,
- chain_spec: spec,
- wasm_method: Default::default(),
- rpc_addr: None,
- rpc_max_connections: Default::default(),
- rpc_cors: None,
- rpc_methods: Default::default(),
- rpc_max_request_size: Default::default(),
- rpc_max_response_size: Default::default(),
- rpc_id_provider: Default::default(),
- rpc_max_subs_per_conn: Default::default(),
- rpc_port: 9944,
- prometheus_config: None,
- telemetry_endpoints: None,
- default_heap_pages: None,
- offchain_worker: OffchainWorkerConfig {
- enabled: true,
- indexing_enabled: false,
- },
- force_authoring: false,
- disable_grandpa: false,
- dev_key_seed: Some(key_seed),
- tracing_targets: None,
- tracing_receiver: Default::default(),
- max_runtime_instances: 8,
- announce_block: true,
- base_path,
- informant_output_format: Default::default(),
- wasm_runtime_overrides: None,
- runtime_cache_size: 2,
- data_path: root,
- })
-}
diff --git a/node/e2e-tests/test-service/src/lib.rs b/node/e2e-tests/test-service/src/lib.rs
deleted file mode 100644
index 7709b154ca..0000000000
--- a/node/e2e-tests/test-service/src/lib.rs
+++ /dev/null
@@ -1,259 +0,0 @@
-// This file is part of Acala.
-
-// Copyright (C) 2020-2023 Acala Foundation.
-// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
-
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see .
-
-//! Crate used for testing with acala.
-#[macro_use]
-
-mod builder;
-mod node;
-mod rpc;
-mod service;
-
-use futures::channel::{mpsc, oneshot};
-use std::{
- future::Future,
- net::{IpAddr, Ipv4Addr, SocketAddr},
- sync::Arc,
- time::Duration,
-};
-
-use cumulus_client_cli::{generate_genesis_block, CollatorOptions};
-#[allow(deprecated)]
-use cumulus_client_consensus_aura::BuildAuraConsensusParams;
-use cumulus_client_consensus_aura::{AuraConsensus, SlotProportion};
-use cumulus_client_consensus_common::{
- ParachainBlockImport as TParachainBlockImport, ParachainCandidate, ParachainConsensus,
-};
-use cumulus_client_network::RequireSecondedInBlockAnnounce;
-use cumulus_client_service::{prepare_node_config, StartCollatorParams, StartFullNodeParams};
-#[allow(deprecated)]
-use cumulus_client_service::{start_collator, start_full_node};
-use cumulus_primitives_core::ParaId;
-use cumulus_relay_chain_inprocess_interface::RelayChainInProcessInterface;
-use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult};
-use cumulus_relay_chain_minimal_node::build_minimal_relay_chain_node_with_rpc;
-
-use crate::runtime::Weight;
-use frame_system_rpc_runtime_api::AccountNonceApi;
-use futures::{channel::mpsc::Sender, SinkExt};
-use jsonrpsee::RpcModule;
-use polkadot_primitives::v5::{CollatorPair, Hash as PHash, HeadData, PersistedValidationData};
-use sc_client_api::{Backend, CallExecutor, ExecutorProvider};
-use sc_consensus::{ImportQueue, LongestChain};
-use sc_consensus_aura::{ImportQueueParams, StartAuraParams};
-use sc_consensus_manual_seal::{
- rpc::{ManualSeal, ManualSealApiServer},
- EngineCommand,
-};
-use sc_executor::NativeElseWasmExecutor;
-use sc_network::{config::TransportConfig, multiaddr, NetworkBlock, NetworkService, NetworkStateInfo};
-pub use sc_rpc::SubscriptionTaskExecutor;
-use sc_service::{
- config::{
- BlocksPruning, DatabaseSource, KeystoreConfig, MultiaddrWithPeerId, NetworkConfiguration, OffchainWorkerConfig,
- PruningMode,
- },
- BasePath, ChainSpec, Configuration, Error as ServiceError, PartialComponents, Role, RpcHandlers, SpawnTasksParams,
- TFullBackend, TFullCallExecutor, TFullClient, TaskManager,
-};
-use sc_transaction_pool_api::TransactionPool;
-use sp_api::OverlayedChanges;
-use sp_api::ProvideRuntimeApi;
-use sp_arithmetic::traits::SaturatedConversion;
-use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata};
-use sp_core::{Pair, H256};
-use sp_keyring::Sr25519Keyring;
-use sp_runtime::{
- codec::Encode,
- generic::Era,
- traits::{Block as BlockT, Extrinsic, IdentifyAccount},
- transaction_validity::TransactionSource,
- MultiAddress,
-};
-use sp_state_machine::{BasicExternalities, Ext};
-use substrate_test_client::{BlockchainEventsExt, RpcHandlersExt, RpcTransactionError, RpcTransactionOutput};
-use url::Url;
-
-use node_primitives::{signature::AcalaMultiSignature, AccountId, Address, Balance, Signature};
-use node_runtime::{Block, BlockId, Hash, Header, Runtime, RuntimeApi, SignedExtra};
-use node_service::chain_spec::mandala::dev_testnet_config;
-
-pub use builder::TestNodeBuilder;
-pub use node::TestNode;
-pub use node_runtime as runtime;
-pub use service::{new_partial, start_dev_node, start_node_impl};
-
-/// A consensus that will never produce any block.
-#[derive(Clone)]
-struct NullConsensus;
-
-#[async_trait::async_trait]
-impl ParachainConsensus for NullConsensus {
- async fn produce_candidate(
- &mut self,
- _: &Header,
- _: PHash,
- _: &PersistedValidationData,
- ) -> Option> {
- None
- }
-}
-
-/// The signature of the announce block fn.
-pub type AnnounceBlockFn = Arc>) + Send + Sync>;
-
-/// Native executor instance.
-pub struct RuntimeExecutor;
-
-impl sc_executor::NativeExecutionDispatch for RuntimeExecutor {
- type ExtendHostFunctions = ();
-
- fn dispatch(method: &str, data: &[u8]) -> Option> {
- node_runtime::api::dispatch(method, data)
- }
-
- fn native_version() -> sc_executor::NativeVersion {
- node_runtime::native_version()
- }
-}
-
-/// The client type being used by the test service.
-pub type Client = TFullClient>;
-
-/// The backend type being used by the test service.
-pub type ParachainBackend = TFullBackend;
-
-/// Transaction pool type used by the test service
-pub type TxPool = Arc>;
-
-type ParachainBlockImport = TParachainBlockImport, ParachainBackend>;
-
-/// Maybe Mandala Dev full select chain.
-type MaybeFullSelectChain = Option>;
-
-pub enum Consensus {
- /// Use the relay-chain provided consensus.
- RelayChain,
- /// Use the null consensus that will never produce any block.
- Null,
- /// Use Aura consensus
- Aura,
-}
-
-#[derive(Clone, Copy)]
-pub enum SealMode {
- /// Dev instant seal
- DevInstantSeal,
- /// Dev aura seal
- DevAuraSeal,
- /// Parachain aura seal
- /// https://github.com/paritytech/cumulus/blob/27721d794ee63aae42317a7eeda21595dd3200d9/client/consensus/common/src/lib.rs#L93-L120
- /// NOTE: ParaSeal doesn't work with `ParachainBlockImport` anymore
- ParaSeal,
-}
-
-/// Fetch account nonce for key pair
-pub fn fetch_nonce(client: &Client, account: sp_core::sr25519::Public) -> u32 {
- let best_hash = client.chain_info().best_hash;
- client
- .runtime_api()
- .account_nonce(best_hash, account.into())
- .expect("Fetching account nonce works; qed")
-}
-
-/// Construct an extrinsic that can be applied to the test runtime.
-pub fn construct_extrinsic(
- client: &Client,
- function: impl Into,
- caller: sp_core::sr25519::Pair,
- nonce: Option,
-) -> runtime::UncheckedExtrinsic {
- let function = function.into();
- let current_block = client.info().best_number.saturated_into();
- let genesis_block = client.hash(0).unwrap().unwrap();
- let current_block_hash = client.info().best_hash;
- let nonce = nonce.unwrap_or_else(|| fetch_nonce(client, caller.public()));
- let period = runtime::BlockHashCount::get()
- .checked_next_power_of_two()
- .map(|c| c / 2)
- .unwrap_or(2) as u64;
- let tip = 0;
- let extra: runtime::SignedExtra = (
- frame_system::CheckNonZeroSender::::new(),
- frame_system::CheckSpecVersion::::new(),
- frame_system::CheckTxVersion::::new(),
- frame_system::CheckGenesis::::new(),
- frame_system::CheckEra::::from(Era::mortal(period, current_block)),
- runtime_common::CheckNonce::::from(nonce),
- frame_system::CheckWeight::::new(),
- module_evm::SetEvmOrigin::::new(),
- module_transaction_payment::ChargeTransactionPayment::::from(tip),
- );
- let raw_payload = runtime::SignedPayload::from_raw(
- function,
- extra,
- (
- (),
- runtime::VERSION.spec_version,
- runtime::VERSION.transaction_version,
- genesis_block,
- current_block_hash,
- (),
- (),
- (),
- (),
- ),
- );
- let signature = raw_payload.using_encoded(|e| caller.sign(e));
- let account: AccountId = caller.public().into();
- let address: Address = account.into();
- let (call, extra, _) = raw_payload.deconstruct();
- let signed_data: (Address, AcalaMultiSignature, SignedExtra) = (address, Signature::Sr25519(signature), extra);
- runtime::UncheckedExtrinsic::new(call, Some(signed_data)).unwrap()
-}
-
-/// Run a relay-chain validator node.
-///
-/// This is essentially a wrapper around
-/// [`run_validator_node`](polkadot_test_service::run_validator_node).
-pub fn run_relay_chain_validator_node(
- tokio_handle: tokio::runtime::Handle,
- key: Sr25519Keyring,
- storage_update_func: impl Fn(),
- boot_nodes: Vec,
- websocket_port: Option,
-) -> polkadot_test_service::PolkadotTestNode {
- let mut config = polkadot_test_service::node_config(storage_update_func, tokio_handle, key, boot_nodes, true);
-
- if let Some(port) = websocket_port {
- config.rpc_addr = Some(SocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), port));
- }
-
- polkadot_test_service::run_validator_node(
- config,
- Some(cumulus_test_relay_validation_worker_provider::VALIDATION_WORKER.into()),
- )
-}
-
-/// Returns the initial head data for a parachain ID.
-pub fn initial_head_data() -> HeadData {
- let spec = dev_testnet_config(None).unwrap();
- let block: Block = generate_genesis_block(&spec, sp_runtime::StateVersion::V1).unwrap();
- let genesis_state = block.header().encode();
- genesis_state.into()
-}
diff --git a/node/e2e-tests/test-service/src/node.rs b/node/e2e-tests/test-service/src/node.rs
deleted file mode 100644
index aa4c6aedaa..0000000000
--- a/node/e2e-tests/test-service/src/node.rs
+++ /dev/null
@@ -1,198 +0,0 @@
-// This file is part of Acala.
-
-// Copyright (C) 2020-2023 Acala Foundation.
-// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
-
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see .
-use super::*;
-
-use node_primitives::Nonce;
-
-/// A Cumulus test node instance used for testing.
-pub struct TestNode {
- /// TaskManager's instance.
- pub task_manager: TaskManager,
- /// Client's instance.
- pub client: Arc,
- /// Node's network.
- pub network: Arc>,
- /// The `MultiaddrWithPeerId` to this node. This is useful if you want to pass it as "boot node"
- /// to other nodes.
- pub addr: MultiaddrWithPeerId,
- /// RPCHandlers to make RPC queries.
- pub rpc_handlers: RpcHandlers,
- /// Node's transaction pool
- pub transaction_pool: TxPool,
- /// Nodes' backend
- pub backend: Arc>,
- /// manual instant seal sink command
- pub seal_sink: Sender>,
-}
-
-impl TestNode {
- /// Wait for `count` blocks to be imported in the node and then exit. This function will not
- /// return if no blocks are ever created, thus you should restrict the maximum amount of time of
- /// the test execution.
- pub fn wait_for_blocks(&self, count: usize) -> impl Future