From 119c3b0019702f1441cea8ece1d7aa38c2269509 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Fri, 18 Jun 2021 10:57:30 +0200 Subject: [PATCH 01/32] mark template and utils as non-publish --- bin/node-template/node/Cargo.toml | 1 + bin/node-template/pallets/template/Cargo.toml | 1 + bin/node-template/runtime/Cargo.toml | 1 + bin/utils/chain-spec-builder/Cargo.toml | 1 + bin/utils/subkey/Cargo.toml | 1 + 5 files changed, 5 insertions(+) diff --git a/bin/node-template/node/Cargo.toml b/bin/node-template/node/Cargo.toml index d45241362fd2f..9c6ef04e6c95e 100644 --- a/bin/node-template/node/Cargo.toml +++ b/bin/node-template/node/Cargo.toml @@ -8,6 +8,7 @@ license = "Unlicense" build = "build.rs" homepage = "https://substrate.dev" repository = "https://github.com/substrate-developer-hub/substrate-node-template/" +publish = false [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/bin/node-template/pallets/template/Cargo.toml b/bin/node-template/pallets/template/Cargo.toml index df76d20a4a7e1..a6fe997aa46fb 100644 --- a/bin/node-template/pallets/template/Cargo.toml +++ b/bin/node-template/pallets/template/Cargo.toml @@ -8,6 +8,7 @@ homepage = "https://substrate.dev" repository = "https://github.com/substrate-developer-hub/substrate-node-template/" description = "FRAME pallet template for defining custom runtime logic." readme = "README.md" +publish = false [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/bin/node-template/runtime/Cargo.toml b/bin/node-template/runtime/Cargo.toml index 6234f8958aad8..c581d19866614 100644 --- a/bin/node-template/runtime/Cargo.toml +++ b/bin/node-template/runtime/Cargo.toml @@ -6,6 +6,7 @@ edition = "2018" license = "Unlicense" homepage = "https://substrate.dev" repository = "https://github.com/substrate-developer-hub/substrate-node-template/" +publish = false [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/bin/utils/chain-spec-builder/Cargo.toml b/bin/utils/chain-spec-builder/Cargo.toml index 3c60d654db944..da9fbcfd3ef44 100644 --- a/bin/utils/chain-spec-builder/Cargo.toml +++ b/bin/utils/chain-spec-builder/Cargo.toml @@ -8,6 +8,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/substrate/" readme = "README.md" +publish = false [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/bin/utils/subkey/Cargo.toml b/bin/utils/subkey/Cargo.toml index 1adbd88c72176..e5f0b2387b4d2 100644 --- a/bin/utils/subkey/Cargo.toml +++ b/bin/utils/subkey/Cargo.toml @@ -7,6 +7,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/substrate/" readme = "README.md" +publish = false [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] From 209007ce48270a9ae23727e43ee2d72959022a60 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Fri, 18 Jun 2021 11:00:43 +0200 Subject: [PATCH 02/32] switch to development version for testing --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2ffa8a4b977ba..961ca662d677b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,7 +40,7 @@ variables: &default-vars ARCH: "x86_64" CI_IMAGE: "paritytech/ci-linux:production" # FIXME set to release - CARGO_UNLEASH_INSTALL_PARAMS: "--version 1.0.0-alpha.11" + CARGO_UNLEASH_INSTALL_PARAMS: "--git https://github.com/paritytech/cargo-unleash" CARGO_UNLEASH_PKG_DEF: "--skip node node-* pallet-template pallet-example pallet-example-* subkey chain-spec-builder" default: From 143217761cac3380ad023996d490e192477b63b3 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Fri, 18 Jun 2021 11:05:50 +0200 Subject: [PATCH 03/32] activate unleash check --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 961ca662d677b..72206af9dea5a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -329,8 +329,8 @@ unleash-check: rules: - if: $CI_PIPELINE_SOURCE == "pipeline" when: never - - if: $CI_COMMIT_REF_NAME == "master" - - if: $CI_COMMIT_REF_NAME =~ /^v[0-9]+\.[0-9]+.*$/ # i.e. v1.0, v2.1rc1 + # - if: $CI_COMMIT_REF_NAME == "master" + # - if: $CI_COMMIT_REF_NAME =~ /^v[0-9]+\.[0-9]+.*$/ # i.e. v1.0, v2.1rc1 script: - cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS} - cargo unleash check ${CARGO_UNLEASH_PKG_DEF} From dc7c26132cdd4a0b1ed3e442bac3a1692520bf28 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Fri, 18 Jun 2021 11:23:36 +0200 Subject: [PATCH 04/32] maybe if I disable all rules... --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 72206af9dea5a..f3b4751c78684 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -326,9 +326,9 @@ test-linux-stable: &test-linux unleash-check: stage: test <<: *docker-env - rules: - - if: $CI_PIPELINE_SOURCE == "pipeline" - when: never + #rules: + # - if: $CI_PIPELINE_SOURCE == "pipeline" + # when: never # - if: $CI_COMMIT_REF_NAME == "master" # - if: $CI_COMMIT_REF_NAME =~ /^v[0-9]+\.[0-9]+.*$/ # i.e. v1.0, v2.1rc1 script: From 639560b5578f1e2823f072e50dabcbdd120ff59c Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Mon, 14 Jun 2021 16:00:56 +0200 Subject: [PATCH 05/32] Fix isolated compilation of `max-encoded-len-derive` with `syn` error[E0369]: binary operation `==` cannot be applied to type `syn::Path` --> src/lib.rs:88:29 | 88 | .filter(|attr| attr.path == parse_quote!(max_encoded_len_crate)) | --------- ^^ ----------------------------------- _ | | | syn::Path error: aborting due to previous error For more information about this error, try `rustc --explain E0369`. Error: could not compile `max-encoded-len-derive` --- max-encoded-len/derive/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/max-encoded-len/derive/Cargo.toml b/max-encoded-len/derive/Cargo.toml index 42c13dc50edd6..7dec2bd25f7fe 100644 --- a/max-encoded-len/derive/Cargo.toml +++ b/max-encoded-len/derive/Cargo.toml @@ -18,7 +18,7 @@ proc-macro = true proc-macro2 = "1.0.6" proc-macro-crate = "1.0.0" quote = "1.0.3" -syn = { version = "1.0.58", features = ["full"] } +syn = { version = "1.0.58", features = ["full", "extra-traits"] } [features] default = ["std"] From 02c0ae1df6d5b85974fd8927345dce4045286449 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Fri, 18 Jun 2021 12:39:03 +0200 Subject: [PATCH 06/32] WIP: bump changes crates since v3 tag to next breaking cargo unleash version bump-breaking --changed-since v3.0.0 cargo unleash version set-pre dev --changed-since v3.0.0 FIXME: Don't modify crates that are not yet released, e.g. `max-encoded-len-derive` --- bin/node-template/node/Cargo.toml | 52 +++---- bin/node-template/pallets/template/Cargo.toml | 12 +- bin/node-template/runtime/Cargo.toml | 44 +++--- bin/node/bench/Cargo.toml | 30 ++-- bin/node/browser-testing/Cargo.toml | 6 +- bin/node/cli/Cargo.toml | 122 ++++++++--------- bin/node/executor/Cargo.toml | 50 +++---- bin/node/inspect/Cargo.toml | 14 +- bin/node/primitives/Cargo.toml | 8 +- bin/node/rpc-client/Cargo.toml | 4 +- bin/node/rpc/Cargo.toml | 42 +++--- bin/node/runtime/Cargo.toml | 128 +++++++++--------- bin/node/test-runner-example/Cargo.toml | 46 +++---- bin/node/testing/Cargo.toml | 60 ++++---- bin/utils/chain-spec-builder/Cargo.toml | 10 +- bin/utils/subkey/Cargo.toml | 2 +- client/api/Cargo.toml | 34 ++--- client/authority-discovery/Cargo.toml | 20 +-- client/basic-authorship/Cargo.toml | 22 +-- client/block-builder/Cargo.toml | 20 +-- client/chain-spec/Cargo.toml | 20 +-- client/chain-spec/derive/Cargo.toml | 2 +- client/cli/Cargo.toml | 26 ++-- client/consensus/aura/Cargo.toml | 46 +++---- client/consensus/babe/Cargo.toml | 52 +++---- client/consensus/babe/rpc/Cargo.toml | 28 ++-- client/consensus/common/Cargo.toml | 10 +- client/consensus/epochs/Cargo.toml | 10 +- client/consensus/manual-seal/Cargo.toml | 30 ++-- client/consensus/pow/Cargo.toml | 18 +-- client/consensus/slots/Cargo.toml | 28 ++-- client/consensus/uncles/Cargo.toml | 8 +- client/db/Cargo.toml | 26 ++-- client/executor/Cargo.toml | 34 ++--- client/executor/common/Cargo.toml | 10 +- client/executor/runtime-test/Cargo.toml | 16 +-- client/executor/wasmi/Cargo.toml | 12 +- client/executor/wasmtime/Cargo.toml | 12 +- client/finality-grandpa-warp-sync/Cargo.toml | 20 +-- client/finality-grandpa/Cargo.toml | 46 +++---- client/finality-grandpa/rpc/Cargo.toml | 24 ++-- client/informant/Cargo.toml | 10 +- client/keystore/Cargo.toml | 8 +- client/light/Cargo.toml | 18 +-- client/network-gossip/Cargo.toml | 6 +- client/network/Cargo.toml | 22 +-- client/network/test/Cargo.toml | 22 +-- client/offchain/Cargo.toml | 26 ++-- client/peerset/Cargo.toml | 4 +- client/rpc-api/Cargo.toml | 12 +- client/rpc-servers/Cargo.toml | 4 +- client/rpc/Cargo.toml | 44 +++--- client/service/Cargo.toml | 74 +++++----- client/service/test/Cargo.toml | 34 ++--- client/state-db/Cargo.toml | 6 +- client/sync-state-rpc/Cargo.toml | 18 +-- client/telemetry/Cargo.toml | 2 +- client/tracing/Cargo.toml | 26 ++-- client/tracing/proc-macro/Cargo.toml | 2 +- client/transaction-pool/Cargo.toml | 22 +-- client/transaction-pool/graph/Cargo.toml | 10 +- frame/assets/Cargo.toml | 22 +-- frame/atomic-swap/Cargo.toml | 16 +-- frame/aura/Cargo.toml | 22 +-- frame/authority-discovery/Cargo.toml | 20 +-- frame/authorship/Cargo.toml | 16 +-- frame/babe/Cargo.toml | 40 +++--- frame/balances/Cargo.toml | 20 +-- frame/benchmarking/Cargo.toml | 18 +-- frame/bounties/Cargo.toml | 22 +-- frame/collective/Cargo.toml | 18 +-- frame/contracts/Cargo.toml | 28 ++-- frame/contracts/common/Cargo.toml | 8 +- frame/contracts/proc-macro/Cargo.toml | 2 +- frame/contracts/rpc/Cargo.toml | 16 +-- frame/contracts/rpc/runtime-api/Cargo.toml | 10 +- frame/democracy/Cargo.toml | 24 ++-- .../election-provider-multi-phase/Cargo.toml | 38 +++--- frame/election-provider-support/Cargo.toml | 16 +-- frame/elections-phragmen/Cargo.toml | 24 ++-- frame/elections/Cargo.toml | 16 +-- frame/example-offchain-worker/Cargo.toml | 16 +-- frame/example-parallel/Cargo.toml | 16 +-- frame/example/Cargo.toml | 18 +-- frame/executive/Cargo.toml | 30 ++-- frame/gilt/Cargo.toml | 20 +-- frame/grandpa/Cargo.toml | 42 +++--- frame/identity/Cargo.toml | 18 +-- frame/im-online/Cargo.toml | 24 ++-- frame/indices/Cargo.toml | 18 +-- frame/lottery/Cargo.toml | 18 +-- frame/membership/Cargo.toml | 16 +-- frame/merkle-mountain-range/Cargo.toml | 18 +-- .../primitives/Cargo.toml | 14 +- frame/merkle-mountain-range/rpc/Cargo.toml | 12 +- frame/metadata/Cargo.toml | 6 +- frame/multisig/Cargo.toml | 20 +-- frame/nicks/Cargo.toml | 16 +-- frame/node-authorization/Cargo.toml | 14 +- frame/offences/Cargo.toml | 18 +-- frame/offences/benchmarking/Cargo.toml | 38 +++--- frame/proxy/Cargo.toml | 24 ++-- frame/randomness-collective-flip/Cargo.toml | 14 +- frame/recovery/Cargo.toml | 16 +-- frame/scheduler/Cargo.toml | 18 +-- frame/scored-pool/Cargo.toml | 16 +-- frame/session/Cargo.toml | 24 ++-- frame/session/benchmarking/Cargo.toml | 30 ++-- frame/society/Cargo.toml | 16 +-- frame/staking/Cargo.toml | 42 +++--- frame/staking/reward-curve/Cargo.toml | 4 +- frame/staking/reward-fn/Cargo.toml | 4 +- frame/sudo/Cargo.toml | 14 +- frame/support/Cargo.toml | 28 ++-- frame/support/procedural/Cargo.toml | 4 +- frame/support/procedural/tools/Cargo.toml | 2 +- frame/support/test/Cargo.toml | 16 +-- frame/system/Cargo.toml | 16 +-- frame/system/benchmarking/Cargo.toml | 16 +-- frame/system/rpc/runtime-api/Cargo.toml | 2 +- frame/timestamp/Cargo.toml | 22 +-- frame/tips/Cargo.toml | 22 +-- frame/transaction-payment/Cargo.toml | 18 +-- frame/transaction-payment/rpc/Cargo.toml | 10 +- .../rpc/runtime-api/Cargo.toml | 6 +- frame/transaction-storage/Cargo.toml | 24 ++-- frame/treasury/Cargo.toml | 20 +-- frame/try-runtime/Cargo.toml | 10 +- frame/uniques/Cargo.toml | 22 +-- frame/utility/Cargo.toml | 20 +-- frame/vesting/Cargo.toml | 20 +-- max-encoded-len/Cargo.toml | 6 +- max-encoded-len/derive/Cargo.toml | 2 +- primitives/allocator/Cargo.toml | 8 +- primitives/api/Cargo.toml | 14 +- primitives/api/proc-macro/Cargo.toml | 2 +- primitives/api/test/Cargo.toml | 18 +-- primitives/application-crypto/Cargo.toml | 10 +- primitives/application-crypto/test/Cargo.toml | 10 +- primitives/arithmetic/Cargo.toml | 4 +- primitives/arithmetic/fuzzer/Cargo.toml | 2 +- primitives/authority-discovery/Cargo.toml | 8 +- primitives/authorship/Cargo.toml | 8 +- primitives/block-builder/Cargo.toml | 10 +- primitives/blockchain/Cargo.toml | 12 +- primitives/consensus/aura/Cargo.toml | 16 +-- primitives/consensus/babe/Cargo.toml | 20 +-- primitives/consensus/common/Cargo.toml | 20 +-- primitives/consensus/pow/Cargo.toml | 8 +- primitives/consensus/slots/Cargo.toml | 4 +- primitives/consensus/vrf/Cargo.toml | 6 +- primitives/core/Cargo.toml | 12 +- primitives/database/Cargo.toml | 2 +- primitives/externalities/Cargo.toml | 6 +- primitives/finality-grandpa/Cargo.toml | 14 +- primitives/inherents/Cargo.toml | 8 +- primitives/io/Cargo.toml | 22 +-- primitives/keyring/Cargo.toml | 4 +- primitives/keystore/Cargo.toml | 6 +- primitives/maybe-compressed-blob/Cargo.toml | 2 +- primitives/npos-elections/Cargo.toml | 14 +- primitives/npos-elections/compact/Cargo.toml | 6 +- primitives/npos-elections/fuzzer/Cargo.toml | 8 +- primitives/offchain/Cargo.toml | 8 +- primitives/rpc/Cargo.toml | 4 +- primitives/runtime-interface/Cargo.toml | 20 +-- .../runtime-interface/proc-macro/Cargo.toml | 2 +- .../test-wasm-deprecated/Cargo.toml | 10 +- .../runtime-interface/test-wasm/Cargo.toml | 10 +- primitives/runtime-interface/test/Cargo.toml | 14 +- primitives/runtime/Cargo.toml | 20 +-- primitives/sandbox/Cargo.toml | 10 +- primitives/session/Cargo.toml | 12 +- primitives/staking/Cargo.toml | 6 +- primitives/state-machine/Cargo.toml | 12 +- primitives/std/Cargo.toml | 2 +- primitives/storage/Cargo.toml | 4 +- primitives/tasks/Cargo.toml | 12 +- primitives/test-primitives/Cargo.toml | 6 +- primitives/timestamp/Cargo.toml | 10 +- primitives/tracing/Cargo.toml | 4 +- primitives/transaction-pool/Cargo.toml | 6 +- .../transaction-storage-proof/Cargo.toml | 12 +- primitives/trie/Cargo.toml | 8 +- primitives/utils/Cargo.toml | 2 +- primitives/version/Cargo.toml | 8 +- primitives/version/proc-macro/Cargo.toml | 4 +- primitives/wasm-interface/Cargo.toml | 4 +- test-utils/Cargo.toml | 6 +- test-utils/client/Cargo.toml | 26 ++-- test-utils/derive/Cargo.toml | 2 +- test-utils/runtime/Cargo.toml | 50 +++---- test-utils/runtime/client/Cargo.toml | 20 +-- .../runtime/transaction-pool/Cargo.toml | 6 +- test-utils/test-crate/Cargo.toml | 4 +- test-utils/test-runner/Cargo.toml | 54 ++++---- utils/browser/Cargo.toml | 14 +- utils/frame/benchmarking-cli/Cargo.toml | 22 +-- utils/frame/frame-utilities-cli/Cargo.toml | 12 +- utils/frame/remote-externalities/Cargo.toml | 12 +- utils/frame/rpc/support/Cargo.toml | 8 +- utils/frame/rpc/system/Cargo.toml | 20 +-- utils/frame/try-runtime/cli/Cargo.toml | 30 ++-- utils/wasm-builder/Cargo.toml | 4 +- 204 files changed, 1827 insertions(+), 1827 deletions(-) diff --git a/bin/node-template/node/Cargo.toml b/bin/node-template/node/Cargo.toml index 9c6ef04e6c95e..518516eb52b67 100644 --- a/bin/node-template/node/Cargo.toml +++ b/bin/node-template/node/Cargo.toml @@ -19,39 +19,39 @@ name = "node-template" [dependencies] structopt = "0.3.8" -sc-cli = { version = "0.9.0", path = "../../../client/cli", features = ["wasmtime"] } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sc-executor = { version = "0.9.0", path = "../../../client/executor", features = ["wasmtime"] } -sc-service = { version = "0.9.0", path = "../../../client/service", features = ["wasmtime"] } -sc-telemetry = { version = "3.0.0", path = "../../../client/telemetry" } -sc-keystore = { version = "3.0.0", path = "../../../client/keystore" } -sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" } -sc-transaction-pool = { version = "3.0.0", path = "../../../client/transaction-pool" } +sc-cli = { version = "0.10.0-dev", path = "../../../client/cli", features = ["wasmtime"] } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sc-executor = { version = "0.10.0-dev", path = "../../../client/executor", features = ["wasmtime"] } +sc-service = { version = "0.10.0-dev", path = "../../../client/service", features = ["wasmtime"] } +sc-telemetry = { version = "4.0.0-dev", path = "../../../client/telemetry" } +sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" } +sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } +sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" } sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } -sc-consensus-aura = { version = "0.9.0", path = "../../../client/consensus/aura" } -sp-consensus-aura = { version = "0.9.0", path = "../../../primitives/consensus/aura" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } -sc-consensus = { version = "0.9.0", path = "../../../client/consensus/common" } -sc-finality-grandpa = { version = "0.9.0", path = "../../../client/finality-grandpa" } -sp-finality-grandpa = { version = "3.0.0", path = "../../../primitives/finality-grandpa" } -sc-client-api = { version = "3.0.0", path = "../../../client/api" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" } +sc-consensus-aura = { version = "0.10.0-dev", path = "../../../client/consensus/aura" } +sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consensus/aura" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } +sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" } +sc-finality-grandpa = { version = "0.10.0-dev", path = "../../../client/finality-grandpa" } +sp-finality-grandpa = { version = "4.0.0-dev", path = "../../../primitives/finality-grandpa" } +sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } # These dependencies are used for the node template's RPCs jsonrpc-core = "15.1.0" -sc-rpc = { version = "3.0.0", path = "../../../client/rpc" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sc-rpc-api = { version = "0.9.0", path = "../../../client/rpc-api" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" } -sc-basic-authorship = { version = "0.9.0", path = "../../../client/basic-authorship" } -substrate-frame-rpc-system = { version = "3.0.0", path = "../../../utils/frame/rpc/system" } +sc-rpc = { version = "4.0.0-dev", path = "../../../client/rpc" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sc-rpc-api = { version = "0.10.0-dev", path = "../../../client/rpc-api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } +sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" } +substrate-frame-rpc-system = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/system" } pallet-transaction-payment-rpc = { version = "3.0.0", path = "../../../frame/transaction-payment/rpc/" } # These dependencies are used for runtime benchmarking -frame-benchmarking = { version = "3.1.0", path = "../../../frame/benchmarking" } -frame-benchmarking-cli = { version = "3.0.0", path = "../../../utils/frame/benchmarking-cli" } +frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" } +frame-benchmarking-cli = { version = "4.0.0-dev", path = "../../../utils/frame/benchmarking-cli" } node-template-runtime = { version = "3.0.0", path = "../runtime" } diff --git a/bin/node-template/pallets/template/Cargo.toml b/bin/node-template/pallets/template/Cargo.toml index a6fe997aa46fb..60118013c11b9 100644 --- a/bin/node-template/pallets/template/Cargo.toml +++ b/bin/node-template/pallets/template/Cargo.toml @@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -frame-support = { default-features = false, version = "3.0.0", path = "../../../../frame/support" } -frame-system = { default-features = false, version = "3.0.0", path = "../../../../frame/system" } -frame-benchmarking = { default-features = false, version = "3.1.0", path = "../../../../frame/benchmarking", optional = true } +frame-support = { default-features = false, version = "4.0.0-dev", path = "../../../../frame/support" } +frame-system = { default-features = false, version = "4.0.0-dev", path = "../../../../frame/system" } +frame-benchmarking = { default-features = false, version = "4.0.0-dev", path = "../../../../frame/benchmarking", optional = true } [dev-dependencies] serde = { version = "1.0.119" } -sp-core = { default-features = false, version = "3.0.0", path = "../../../../primitives/core" } -sp-io = { default-features = false, version = "3.0.0", path = "../../../../primitives/io" } -sp-runtime = { default-features = false, version = "3.0.0", path = "../../../../primitives/runtime" } +sp-core = { default-features = false, version = "4.0.0-dev", path = "../../../../primitives/core" } +sp-io = { default-features = false, version = "4.0.0-dev", path = "../../../../primitives/io" } +sp-runtime = { default-features = false, version = "4.0.0-dev", path = "../../../../primitives/runtime" } [features] default = ['std'] diff --git a/bin/node-template/runtime/Cargo.toml b/bin/node-template/runtime/Cargo.toml index c581d19866614..afad9a527dc99 100644 --- a/bin/node-template/runtime/Cargo.toml +++ b/bin/node-template/runtime/Cargo.toml @@ -14,41 +14,41 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -pallet-aura = { version = "3.0.0", default-features = false, path = "../../../frame/aura" } -pallet-balances = { version = "3.0.0", default-features = false, path = "../../../frame/balances" } -frame-support = { version = "3.0.0", default-features = false, path = "../../../frame/support" } -pallet-grandpa = { version = "3.1.0", default-features = false, path = "../../../frame/grandpa" } -pallet-randomness-collective-flip = { version = "3.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" } -pallet-sudo = { version = "3.0.0", default-features = false, path = "../../../frame/sudo" } -frame-system = { version = "3.0.0", default-features = false, path = "../../../frame/system" } -pallet-timestamp = { version = "3.0.0", default-features = false, path = "../../../frame/timestamp" } -pallet-transaction-payment = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment" } -frame-executive = { version = "3.0.0", default-features = false, path = "../../../frame/executive" } -sp-api = { version = "3.0.0", default-features = false, path = "../../../primitives/api" } -sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "3.0.0"} -sp-consensus-aura = { version = "0.9.0", default-features = false, path = "../../../primitives/consensus/aura" } -sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" } -sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "3.0.0"} +pallet-aura = { version = "4.0.0-dev", default-features = false, path = "../../../frame/aura" } +pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../../frame/balances" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/support" } +pallet-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../frame/grandpa" } +pallet-randomness-collective-flip = { version = "4.0.0-dev", default-features = false, path = "../../../frame/randomness-collective-flip" } +pallet-sudo = { version = "4.0.0-dev", default-features = false, path = "../../../frame/sudo" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" } +pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../frame/timestamp" } +pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" } +frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../../frame/executive" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" } +sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "4.0.0-dev"} +sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/aura" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" } +sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "4.0.0-dev"} sp-offchain = { version = "3.0.0", default-features = false, path = "../../../primitives/offchain" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } -sp-session = { version = "3.0.0", default-features = false, path = "../../../primitives/session" } -sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } +sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } sp-transaction-pool = { version = "3.0.0", default-features = false, path = "../../../primitives/transaction-pool" } -sp-version = { version = "3.0.0", default-features = false, path = "../../../primitives/version" } +sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" } # Used for the node template's RPCs frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" } pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" } # Used for runtime benchmarking -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../../../frame/benchmarking", optional = true } -frame-system-benchmarking = { version = "3.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/benchmarking", optional = true } +frame-system-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/benchmarking", optional = true } hex-literal = { version = "0.3.1", optional = true } pallet-template = { version = "3.0.0", default-features = false, path = "../pallets/template" } [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" } +substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder" } [features] default = ["std"] diff --git a/bin/node/bench/Cargo.toml b/bin/node/bench/Cargo.toml index 93ee35d98f98d..e4f961e2677b0 100644 --- a/bin/node/bench/Cargo.toml +++ b/bin/node/bench/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-bench" -version = "0.8.0" +version = "0.9.0-dev" authors = ["Parity Technologies "] description = "Substrate node integration benchmarks." edition = "2018" @@ -11,26 +11,26 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0" [dependencies] log = "0.4.8" node-primitives = { version = "2.0.0", path = "../primitives" } -node-testing = { version = "2.0.0", path = "../testing" } -node-runtime = { version = "2.0.0", path = "../runtime" } -sc-cli = { version = "0.9.0", path = "../../../client/cli" } -sc-client-api = { version = "3.0.0", path = "../../../client/api/" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" } +node-testing = { version = "3.0.0-dev", path = "../testing" } +node-runtime = { version = "3.0.0-dev", path = "../runtime" } +sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" } +sc-client-api = { version = "4.0.0-dev", path = "../../../client/api/" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-state-machine = { version = "0.10.0-dev", path = "../../../primitives/state-machine" } serde = "1.0.101" serde_json = "1.0.41" structopt = "0.3" derive_more = "0.99.2" kvdb = "0.9.0" kvdb-rocksdb = "0.11.0" -sp-trie = { version = "3.0.0", path = "../../../primitives/trie" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } +sp-trie = { version = "4.0.0-dev", path = "../../../primitives/trie" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } -sc-basic-authorship = { version = "0.9.0", path = "../../../client/basic-authorship" } -sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" } -sp-timestamp = { version = "3.0.0", default-features = false, path = "../../../primitives/timestamp" } -sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" } +sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" } +sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } +sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/timestamp" } +sp-tracing = { version = "4.0.0-dev", path = "../../../primitives/tracing" } hash-db = "0.15.2" tempfile = "3.1.0" fs_extra = "1" @@ -39,5 +39,5 @@ rand = { version = "0.7.2", features = ["small_rng"] } lazy_static = "1.4.0" parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } parity-db = { version = "0.2.4" } -sc-transaction-pool = { version = "3.0.0", path = "../../../client/transaction-pool" } +sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" } futures = { version = "0.3.4", features = ["thread-pool"] } diff --git a/bin/node/browser-testing/Cargo.toml b/bin/node/browser-testing/Cargo.toml index 93bf8f5131e3f..bb6566837c80b 100644 --- a/bin/node/browser-testing/Cargo.toml +++ b/bin/node/browser-testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-browser-testing" -version = "2.0.0" +version = "3.0.0-dev" authors = ["Parity Technologies "] description = "Tests for the in-browser light client." edition = "2018" @@ -17,5 +17,5 @@ wasm-bindgen-futures = "0.4.18" wasm-bindgen-test = "0.3.18" futures = "0.3.9" -node-cli = { path = "../cli", default-features = false, features = ["browser"], version = "2.0.0"} -sc-rpc-api = { path = "../../../client/rpc-api", version = "0.9.0"} +node-cli = { path = "../cli", default-features = false, features = ["browser"], version = "3.0.0-dev"} +sc-rpc-api = { path = "../../../client/rpc-api", version = "0.10.0-dev"} diff --git a/bin/node/cli/Cargo.toml b/bin/node/cli/Cargo.toml index 9fcd0875e8dca..78961ebbaf069 100644 --- a/bin/node/cli/Cargo.toml +++ b/bin/node/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-cli" -version = "2.0.0" +version = "3.0.0-dev" authors = ["Parity Technologies "] description = "Generic Substrate node implementation in Rust." build = "build.rs" @@ -45,81 +45,81 @@ parking_lot = "0.11.1" # primitives sp-authority-discovery = { version = "3.0.0", path = "../../../primitives/authority-discovery" } -sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" } -grandpa-primitives = { version = "3.0.0", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" } -sp-authorship = { version = "3.0.0", path = "../../../primitives/authorship" } -sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" } +grandpa-primitives = { version = "4.0.0-dev", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } +sp-authorship = { version = "4.0.0-dev", path = "../../../primitives/authorship" } +sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } -sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" } -sp-io = { version = "3.0.0", path = "../../../primitives/io" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } +sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } +sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } # client dependencies -sc-client-api = { version = "3.0.0", path = "../../../client/api" } -sc-chain-spec = { version = "3.0.0", path = "../../../client/chain-spec" } -sc-consensus = { version = "0.9.0", path = "../../../client/consensus/common" } -sc-transaction-pool = { version = "3.0.0", path = "../../../client/transaction-pool" } -sc-network = { version = "0.9.0", path = "../../../client/network" } -sc-consensus-slots = { version = "0.9.0", path = "../../../client/consensus/slots" } -sc-consensus-babe = { version = "0.9.0", path = "../../../client/consensus/babe" } -sc-consensus-uncles = { version = "0.9.0", path = "../../../client/consensus/uncles" } -grandpa = { version = "0.9.0", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" } -sc-client-db = { version = "0.9.0", default-features = false, path = "../../../client/db" } -sc-offchain = { version = "3.0.0", path = "../../../client/offchain" } -sc-rpc = { version = "3.0.0", path = "../../../client/rpc" } -sc-basic-authorship = { version = "0.9.0", path = "../../../client/basic-authorship" } -sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service" } -sc-tracing = { version = "3.0.0", path = "../../../client/tracing" } -sc-telemetry = { version = "3.0.0", path = "../../../client/telemetry" } -sc-authority-discovery = { version = "0.9.0", path = "../../../client/authority-discovery" } -sc-finality-grandpa-warp-sync = { version = "0.9.0", path = "../../../client/finality-grandpa-warp-sync", optional = true } +sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" } +sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" } +sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" } +sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" } +sc-network = { version = "0.10.0-dev", path = "../../../client/network" } +sc-consensus-slots = { version = "0.10.0-dev", path = "../../../client/consensus/slots" } +sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/babe" } +sc-consensus-uncles = { version = "0.10.0-dev", path = "../../../client/consensus/uncles" } +grandpa = { version = "0.10.0-dev", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" } +sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../../../client/db" } +sc-offchain = { version = "4.0.0-dev", path = "../../../client/offchain" } +sc-rpc = { version = "4.0.0-dev", path = "../../../client/rpc" } +sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" } +sc-tracing = { version = "4.0.0-dev", path = "../../../client/tracing" } +sc-telemetry = { version = "4.0.0-dev", path = "../../../client/telemetry" } +sc-authority-discovery = { version = "0.10.0-dev", path = "../../../client/authority-discovery" } +sc-finality-grandpa-warp-sync = { version = "0.10.0-dev", path = "../../../client/finality-grandpa-warp-sync", optional = true } # frame dependencies -pallet-indices = { version = "3.0.0", path = "../../../frame/indices" } -pallet-timestamp = { version = "3.0.0", default-features = false, path = "../../../frame/timestamp" } -pallet-contracts = { version = "3.0.0", path = "../../../frame/contracts" } -frame-system = { version = "3.0.0", path = "../../../frame/system" } -pallet-balances = { version = "3.0.0", path = "../../../frame/balances" } -pallet-transaction-payment = { version = "3.0.0", path = "../../../frame/transaction-payment" } -frame-support = { version = "3.0.0", default-features = false, path = "../../../frame/support" } -pallet-im-online = { version = "3.0.0", default-features = false, path = "../../../frame/im-online" } -pallet-authority-discovery = { version = "3.0.0", path = "../../../frame/authority-discovery" } -pallet-staking = { version = "3.0.0", path = "../../../frame/staking" } -pallet-grandpa = { version = "3.1.0", path = "../../../frame/grandpa" } +pallet-indices = { version = "4.0.0-dev", path = "../../../frame/indices" } +pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../frame/timestamp" } +pallet-contracts = { version = "4.0.0-dev", path = "../../../frame/contracts" } +frame-system = { version = "4.0.0-dev", path = "../../../frame/system" } +pallet-balances = { version = "4.0.0-dev", path = "../../../frame/balances" } +pallet-transaction-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/support" } +pallet-im-online = { version = "4.0.0-dev", default-features = false, path = "../../../frame/im-online" } +pallet-authority-discovery = { version = "4.0.0-dev", path = "../../../frame/authority-discovery" } +pallet-staking = { version = "4.0.0-dev", path = "../../../frame/staking" } +pallet-grandpa = { version = "4.0.0-dev", path = "../../../frame/grandpa" } # node-specific dependencies -node-runtime = { version = "2.0.0", path = "../runtime" } -node-rpc = { version = "2.0.0", path = "../rpc" } +node-runtime = { version = "3.0.0-dev", path = "../runtime" } +node-rpc = { version = "3.0.0-dev", path = "../rpc" } node-primitives = { version = "2.0.0", path = "../primitives" } -node-executor = { version = "2.0.0", path = "../executor" } +node-executor = { version = "3.0.0-dev", path = "../executor" } # CLI-specific dependencies -sc-cli = { version = "0.9.0", optional = true, path = "../../../client/cli" } -frame-benchmarking-cli = { version = "3.0.0", optional = true, path = "../../../utils/frame/benchmarking-cli" } -node-inspect = { version = "0.8.0", optional = true, path = "../inspect" } -try-runtime-cli = { version = "0.9.0", optional = true, path = "../../../utils/frame/try-runtime/cli" } +sc-cli = { version = "0.10.0-dev", optional = true, path = "../../../client/cli" } +frame-benchmarking-cli = { version = "4.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" } +node-inspect = { version = "0.9.0-dev", optional = true, path = "../inspect" } +try-runtime-cli = { version = "0.10.0-dev", optional = true, path = "../../../utils/frame/try-runtime/cli" } # WASM-specific dependencies wasm-bindgen = { version = "0.2.73", optional = true } wasm-bindgen-futures = { version = "0.4.18", optional = true } -browser-utils = { package = "substrate-browser-utils", path = "../../../utils/browser", optional = true, version = "0.9.0"} +browser-utils = { package = "substrate-browser-utils", path = "../../../utils/browser", optional = true, version = "0.10.0-dev"} libp2p-wasm-ext = { version = "0.28", features = ["websocket"], optional = true } [target.'cfg(target_arch="x86_64")'.dependencies] -node-executor = { version = "2.0.0", path = "../executor", features = [ "wasmtime" ] } -sc-cli = { version = "0.9.0", optional = true, path = "../../../client/cli", features = [ "wasmtime" ] } -sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service", features = [ "wasmtime" ] } -sp-trie = { version = "3.0.0", default-features = false, path = "../../../primitives/trie", features = ["memory-tracker"] } +node-executor = { version = "3.0.0-dev", path = "../executor", features = [ "wasmtime" ] } +sc-cli = { version = "0.10.0-dev", optional = true, path = "../../../client/cli", features = [ "wasmtime" ] } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service", features = [ "wasmtime" ] } +sp-trie = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/trie", features = ["memory-tracker"] } [dev-dependencies] -sc-keystore = { version = "3.0.0", path = "../../../client/keystore" } -sc-consensus = { version = "0.9.0", path = "../../../client/consensus/common" } -sc-consensus-babe = { version = "0.9.0", path = "../../../client/consensus/babe" } -sc-consensus-epochs = { version = "0.9.0", path = "../../../client/consensus/epochs" } +sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" } +sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" } +sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/babe" } +sc-consensus-epochs = { version = "0.10.0-dev", path = "../../../client/consensus/epochs" } sc-service-test = { version = "2.0.0", path = "../../../client/service/test" } futures = "0.3.9" tempfile = "3.1.0" @@ -133,14 +133,14 @@ soketto = "0.4.2" [build-dependencies] structopt = { version = "0.3.8", optional = true } -node-inspect = { version = "0.8.0", optional = true, path = "../inspect" } -frame-benchmarking-cli = { version = "3.0.0", optional = true, path = "../../../utils/frame/benchmarking-cli" } +node-inspect = { version = "0.9.0-dev", optional = true, path = "../inspect" } +frame-benchmarking-cli = { version = "4.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" } substrate-build-script-utils = { version = "3.0.0", optional = true, path = "../../../utils/build-script-utils" } -substrate-frame-cli = { version = "3.0.0", optional = true, path = "../../../utils/frame/frame-utilities-cli" } -try-runtime-cli = { version = "0.9.0", optional = true, path = "../../../utils/frame/try-runtime/cli" } +substrate-frame-cli = { version = "4.0.0-dev", optional = true, path = "../../../utils/frame/frame-utilities-cli" } +try-runtime-cli = { version = "0.10.0-dev", optional = true, path = "../../../utils/frame/try-runtime/cli" } [build-dependencies.sc-cli] -version = "0.9.0" +version = "0.10.0-dev" package = "sc-cli" path = "../../../client/cli" optional = true diff --git a/bin/node/executor/Cargo.toml b/bin/node/executor/Cargo.toml index b08d1d78b4aaa..5b0617d6af8e0 100644 --- a/bin/node/executor/Cargo.toml +++ b/bin/node/executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-executor" -version = "2.0.0" +version = "3.0.0-dev" authors = ["Parity Technologies "] description = "Substrate node implementation in Rust." edition = "2018" @@ -14,34 +14,34 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0" } node-primitives = { version = "2.0.0", path = "../primitives" } -node-runtime = { version = "2.0.0", path = "../runtime" } -sc-executor = { version = "0.9.0", path = "../../../client/executor" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" } -sp-io = { version = "3.0.0", path = "../../../primitives/io" } -sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" } -sp-trie = { version = "3.0.0", path = "../../../primitives/trie" } +node-runtime = { version = "3.0.0-dev", path = "../runtime" } +sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } +sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } +sp-state-machine = { version = "0.10.0-dev", path = "../../../primitives/state-machine" } +sp-trie = { version = "4.0.0-dev", path = "../../../primitives/trie" } trie-root = "0.16.0" -frame-benchmarking = { version = "3.1.0", path = "../../../frame/benchmarking" } +frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" } [dev-dependencies] criterion = "0.3.0" -frame-support = { version = "3.0.0", path = "../../../frame/support" } -frame-system = { version = "3.0.0", path = "../../../frame/system" } -node-testing = { version = "2.0.0", path = "../testing" } -pallet-balances = { version = "3.0.0", path = "../../../frame/balances" } -pallet-contracts = { version = "3.0.0", path = "../../../frame/contracts" } -pallet-grandpa = { version = "3.1.0", path = "../../../frame/grandpa" } -pallet-im-online = { version = "3.0.0", path = "../../../frame/im-online" } -pallet-indices = { version = "3.0.0", path = "../../../frame/indices" } -pallet-session = { version = "3.0.0", path = "../../../frame/session" } -pallet-timestamp = { version = "3.0.0", path = "../../../frame/timestamp" } -pallet-transaction-payment = { version = "3.0.0", path = "../../../frame/transaction-payment" } -pallet-treasury = { version = "3.0.0", path = "../../../frame/treasury" } -sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" } -sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-externalities = { version = "0.9.0", path = "../../../primitives/externalities" } +frame-support = { version = "4.0.0-dev", path = "../../../frame/support" } +frame-system = { version = "4.0.0-dev", path = "../../../frame/system" } +node-testing = { version = "3.0.0-dev", path = "../testing" } +pallet-balances = { version = "4.0.0-dev", path = "../../../frame/balances" } +pallet-contracts = { version = "4.0.0-dev", path = "../../../frame/contracts" } +pallet-grandpa = { version = "4.0.0-dev", path = "../../../frame/grandpa" } +pallet-im-online = { version = "4.0.0-dev", path = "../../../frame/im-online" } +pallet-indices = { version = "4.0.0-dev", path = "../../../frame/indices" } +pallet-session = { version = "4.0.0-dev", path = "../../../frame/session" } +pallet-timestamp = { version = "4.0.0-dev", path = "../../../frame/timestamp" } +pallet-transaction-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment" } +pallet-treasury = { version = "4.0.0-dev", path = "../../../frame/treasury" } +sp-application-crypto = { version = "4.0.0-dev", path = "../../../primitives/application-crypto" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-externalities = { version = "0.10.0-dev", path = "../../../primitives/externalities" } substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" } wat = "1.0" futures = "0.3.9" diff --git a/bin/node/inspect/Cargo.toml b/bin/node/inspect/Cargo.toml index 3d89a68aed309..abd54cdbcd957 100644 --- a/bin/node/inspect/Cargo.toml +++ b/bin/node/inspect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-inspect" -version = "0.8.0" +version = "0.9.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -14,10 +14,10 @@ targets = ["x86_64-unknown-linux-gnu"] codec = { package = "parity-scale-codec", version = "2.0.0" } derive_more = "0.99" log = "0.4.8" -sc-cli = { version = "0.9.0", path = "../../../client/cli" } -sc-client-api = { version = "3.0.0", path = "../../../client/api" } -sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" } +sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } structopt = "0.3.8" diff --git a/bin/node/primitives/Cargo.toml b/bin/node/primitives/Cargo.toml index 043ec5ab21cec..170983d7e0964 100644 --- a/bin/node/primitives/Cargo.toml +++ b/bin/node/primitives/Cargo.toml @@ -12,10 +12,10 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -frame-system = { version = "3.0.0", default-features = false, path = "../../../frame/system" } -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../../primitives/application-crypto" } -sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/application-crypto" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } [dev-dependencies] sp-serializer = { version = "3.0.0", path = "../../../primitives/serializer" } diff --git a/bin/node/rpc-client/Cargo.toml b/bin/node/rpc-client/Cargo.toml index 1d9819de24b6d..9ccb6c0817fd0 100644 --- a/bin/node/rpc-client/Cargo.toml +++ b/bin/node/rpc-client/Cargo.toml @@ -16,5 +16,5 @@ hyper = "~0.12.35" jsonrpc-core-client = { version = "15.1.0", default-features = false, features = ["http"] } log = "0.4.8" node-primitives = { version = "2.0.0", path = "../primitives" } -sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" } -sc-rpc = { version = "3.0.0", path = "../../../client/rpc" } +sp-tracing = { version = "4.0.0-dev", path = "../../../primitives/tracing" } +sc-rpc = { version = "4.0.0-dev", path = "../../../client/rpc" } diff --git a/bin/node/rpc/Cargo.toml b/bin/node/rpc/Cargo.toml index fc1701d1856f8..327da104df4e8 100644 --- a/bin/node/rpc/Cargo.toml +++ b/bin/node/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-rpc" -version = "2.0.0" +version = "3.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,26 +13,26 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] jsonrpc-core = "15.1.0" node-primitives = { version = "2.0.0", path = "../primitives" } -pallet-contracts-rpc = { version = "3.0.0", path = "../../../frame/contracts/rpc/" } +pallet-contracts-rpc = { version = "4.0.0-dev", path = "../../../frame/contracts/rpc/" } pallet-mmr-rpc = { version = "3.0.0", path = "../../../frame/merkle-mountain-range/rpc/" } pallet-transaction-payment-rpc = { version = "3.0.0", path = "../../../frame/transaction-payment/rpc/" } -sc-client-api = { version = "3.0.0", path = "../../../client/api" } -sc-consensus-babe = { version = "0.9.0", path = "../../../client/consensus/babe" } -sc-consensus-babe-rpc = { version = "0.9.0", path = "../../../client/consensus/babe/rpc" } -sc-consensus-epochs = { version = "0.9.0", path = "../../../client/consensus/epochs" } -sc-chain-spec = { version = "3.0.0", path = "../../../client/chain-spec" } -sc-finality-grandpa = { version = "0.9.0", path = "../../../client/finality-grandpa" } -sc-finality-grandpa-rpc = { version = "0.9.0", path = "../../../client/finality-grandpa/rpc" } -sc-keystore = { version = "3.0.0", path = "../../../client/keystore" } -sc-rpc-api = { version = "0.9.0", path = "../../../client/rpc-api" } -sc-rpc = { version = "3.0.0", path = "../../../client/rpc" } -sc-sync-state-rpc = { version = "0.9.0", path = "../../../client/sync-state-rpc" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } -sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" } +sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/babe" } +sc-consensus-babe-rpc = { version = "0.10.0-dev", path = "../../../client/consensus/babe/rpc" } +sc-consensus-epochs = { version = "0.10.0-dev", path = "../../../client/consensus/epochs" } +sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" } +sc-finality-grandpa = { version = "0.10.0-dev", path = "../../../client/finality-grandpa" } +sc-finality-grandpa-rpc = { version = "0.10.0-dev", path = "../../../client/finality-grandpa/rpc" } +sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" } +sc-rpc-api = { version = "0.10.0-dev", path = "../../../client/rpc-api" } +sc-rpc = { version = "4.0.0-dev", path = "../../../client/rpc" } +sc-sync-state-rpc = { version = "0.10.0-dev", path = "../../../client/sync-state-rpc" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } -substrate-frame-rpc-system = { version = "3.0.0", path = "../../../utils/frame/rpc/system" } +substrate-frame-rpc-system = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/system" } diff --git a/bin/node/runtime/Cargo.toml b/bin/node/runtime/Cargo.toml index 9b182c4085790..6b091fd9cddb4 100644 --- a/bin/node/runtime/Cargo.toml +++ b/bin/node/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-runtime" -version = "2.0.1" +version = "3.0.0-dev" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" @@ -21,82 +21,82 @@ log = { version = "0.4.14", default-features = false } # primitives sp-authority-discovery = { version = "3.0.0", default-features = false, path = "../../../primitives/authority-discovery" } -sp-consensus-babe = { version = "0.9.0", default-features = false, path = "../../../primitives/consensus/babe" } -sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "3.0.0"} -sp-inherents = { version = "3.0.0", default-features = false, path = "../../../primitives/inherents" } +sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/babe" } +sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "4.0.0-dev"} +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents" } node-primitives = { version = "2.0.0", default-features = false, path = "../primitives" } sp-offchain = { version = "3.0.0", default-features = false, path = "../../../primitives/offchain" } -sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" } -sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" } -sp-api = { version = "3.0.0", default-features = false, path = "../../../primitives/api" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../../primitives/staking" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" } sp-keyring = { version = "3.0.0", optional = true, path = "../../../primitives/keyring" } -sp-session = { version = "3.0.0", default-features = false, path = "../../../primitives/session" } +sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" } sp-transaction-pool = { version = "3.0.0", default-features = false, path = "../../../primitives/transaction-pool" } -sp-version = { version = "3.0.0", default-features = false, path = "../../../primitives/version" } -sp-npos-elections = { version = "3.0.0", default-features = false, path = "../../../primitives/npos-elections" } +sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" } +sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/npos-elections" } # frame dependencies -frame-executive = { version = "3.0.0", default-features = false, path = "../../../frame/executive" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../../../frame/benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../../../frame/support" } -frame-system = { version = "3.0.0", default-features = false, path = "../../../frame/system" } -frame-system-benchmarking = { version = "3.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true } -frame-election-provider-support = { version = "3.0.0", default-features = false, path = "../../../frame/election-provider-support" } +frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../../frame/executive" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" } +frame-system-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/benchmarking", optional = true } +frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/election-provider-support" } frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" } -frame-try-runtime = { version = "0.9.0", default-features = false, path = "../../../frame/try-runtime", optional = true } -pallet-assets = { version = "3.0.0", default-features = false, path = "../../../frame/assets" } -pallet-authority-discovery = { version = "3.0.0", default-features = false, path = "../../../frame/authority-discovery" } -pallet-authorship = { version = "3.0.0", default-features = false, path = "../../../frame/authorship" } -pallet-babe = { version = "3.0.0", default-features = false, path = "../../../frame/babe" } -pallet-balances = { version = "3.0.0", default-features = false, path = "../../../frame/balances" } -pallet-bounties = { version = "3.0.0", default-features = false, path = "../../../frame/bounties" } -pallet-collective = { version = "3.0.0", default-features = false, path = "../../../frame/collective" } -pallet-contracts = { version = "3.0.0", default-features = false, path = "../../../frame/contracts" } -pallet-contracts-primitives = { version = "3.0.0", default-features = false, path = "../../../frame/contracts/common/" } -pallet-contracts-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" } -pallet-democracy = { version = "3.0.0", default-features = false, path = "../../../frame/democracy" } -pallet-election-provider-multi-phase = { version = "3.0.0", default-features = false, path = "../../../frame/election-provider-multi-phase" } -pallet-elections-phragmen = { version = "4.0.0", default-features = false, path = "../../../frame/elections-phragmen" } -pallet-gilt = { version = "3.0.0", default-features = false, path = "../../../frame/gilt" } -pallet-grandpa = { version = "3.1.0", default-features = false, path = "../../../frame/grandpa" } -pallet-im-online = { version = "3.0.0", default-features = false, path = "../../../frame/im-online" } -pallet-indices = { version = "3.0.0", default-features = false, path = "../../../frame/indices" } -pallet-identity = { version = "3.0.0", default-features = false, path = "../../../frame/identity" } -pallet-lottery = { version = "3.0.0", default-features = false, path = "../../../frame/lottery" } -pallet-membership = { version = "3.0.0", default-features = false, path = "../../../frame/membership" } -pallet-mmr = { version = "3.0.0", default-features = false, path = "../../../frame/merkle-mountain-range" } -pallet-multisig = { version = "3.0.0", default-features = false, path = "../../../frame/multisig" } -pallet-offences = { version = "3.0.0", default-features = false, path = "../../../frame/offences" } -pallet-offences-benchmarking = { version = "3.0.0", path = "../../../frame/offences/benchmarking", default-features = false, optional = true } -pallet-proxy = { version = "3.0.0", default-features = false, path = "../../../frame/proxy" } -pallet-randomness-collective-flip = { version = "3.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" } -pallet-recovery = { version = "3.0.0", default-features = false, path = "../../../frame/recovery" } -pallet-session = { version = "3.0.0", features = ["historical"], path = "../../../frame/session", default-features = false } -pallet-session-benchmarking = { version = "3.0.0", path = "../../../frame/session/benchmarking", default-features = false, optional = true } -pallet-staking = { version = "3.0.0", default-features = false, path = "../../../frame/staking" } -pallet-staking-reward-curve = { version = "3.0.0", default-features = false, path = "../../../frame/staking/reward-curve" } -pallet-scheduler = { version = "3.0.0", default-features = false, path = "../../../frame/scheduler" } -pallet-society = { version = "3.0.0", default-features = false, path = "../../../frame/society" } -pallet-sudo = { version = "3.0.0", default-features = false, path = "../../../frame/sudo" } -pallet-timestamp = { version = "3.0.0", default-features = false, path = "../../../frame/timestamp" } -pallet-tips = { version = "3.0.0", default-features = false, path = "../../../frame/tips" } -pallet-treasury = { version = "3.0.0", default-features = false, path = "../../../frame/treasury" } -pallet-utility = { version = "3.0.0", default-features = false, path = "../../../frame/utility" } -pallet-transaction-payment = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment" } +frame-try-runtime = { version = "0.10.0-dev", default-features = false, path = "../../../frame/try-runtime", optional = true } +pallet-assets = { version = "4.0.0-dev", default-features = false, path = "../../../frame/assets" } +pallet-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/authority-discovery" } +pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../../../frame/authorship" } +pallet-babe = { version = "4.0.0-dev", default-features = false, path = "../../../frame/babe" } +pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../../frame/balances" } +pallet-bounties = { version = "4.0.0-dev", default-features = false, path = "../../../frame/bounties" } +pallet-collective = { version = "4.0.0-dev", default-features = false, path = "../../../frame/collective" } +pallet-contracts = { version = "4.0.0-dev", default-features = false, path = "../../../frame/contracts" } +pallet-contracts-primitives = { version = "4.0.0-dev", default-features = false, path = "../../../frame/contracts/common/" } +pallet-contracts-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" } +pallet-democracy = { version = "4.0.0-dev", default-features = false, path = "../../../frame/democracy" } +pallet-election-provider-multi-phase = { version = "4.0.0-dev", default-features = false, path = "../../../frame/election-provider-multi-phase" } +pallet-elections-phragmen = { version = "5.0.0-dev", default-features = false, path = "../../../frame/elections-phragmen" } +pallet-gilt = { version = "4.0.0-dev", default-features = false, path = "../../../frame/gilt" } +pallet-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../frame/grandpa" } +pallet-im-online = { version = "4.0.0-dev", default-features = false, path = "../../../frame/im-online" } +pallet-indices = { version = "4.0.0-dev", default-features = false, path = "../../../frame/indices" } +pallet-identity = { version = "4.0.0-dev", default-features = false, path = "../../../frame/identity" } +pallet-lottery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/lottery" } +pallet-membership = { version = "4.0.0-dev", default-features = false, path = "../../../frame/membership" } +pallet-mmr = { version = "4.0.0-dev", default-features = false, path = "../../../frame/merkle-mountain-range" } +pallet-multisig = { version = "4.0.0-dev", default-features = false, path = "../../../frame/multisig" } +pallet-offences = { version = "4.0.0-dev", default-features = false, path = "../../../frame/offences" } +pallet-offences-benchmarking = { version = "4.0.0-dev", path = "../../../frame/offences/benchmarking", default-features = false, optional = true } +pallet-proxy = { version = "4.0.0-dev", default-features = false, path = "../../../frame/proxy" } +pallet-randomness-collective-flip = { version = "4.0.0-dev", default-features = false, path = "../../../frame/randomness-collective-flip" } +pallet-recovery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/recovery" } +pallet-session = { version = "4.0.0-dev", features = ["historical"], path = "../../../frame/session", default-features = false } +pallet-session-benchmarking = { version = "4.0.0-dev", path = "../../../frame/session/benchmarking", default-features = false, optional = true } +pallet-staking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/staking" } +pallet-staking-reward-curve = { version = "4.0.0-dev", default-features = false, path = "../../../frame/staking/reward-curve" } +pallet-scheduler = { version = "4.0.0-dev", default-features = false, path = "../../../frame/scheduler" } +pallet-society = { version = "4.0.0-dev", default-features = false, path = "../../../frame/society" } +pallet-sudo = { version = "4.0.0-dev", default-features = false, path = "../../../frame/sudo" } +pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../frame/timestamp" } +pallet-tips = { version = "4.0.0-dev", default-features = false, path = "../../../frame/tips" } +pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../../../frame/treasury" } +pallet-utility = { version = "4.0.0-dev", default-features = false, path = "../../../frame/utility" } +pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" } pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" } -pallet-transaction-storage = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-storage" } -pallet-uniques = { version = "3.0.0", default-features = false, path = "../../../frame/uniques" } -pallet-vesting = { version = "3.0.0", default-features = false, path = "../../../frame/vesting" } +pallet-transaction-storage = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-storage" } +pallet-uniques = { version = "4.0.0-dev", default-features = false, path = "../../../frame/uniques" } +pallet-vesting = { version = "4.0.0-dev", default-features = false, path = "../../../frame/vesting" } -max-encoded-len = { version = "3.0.0", default-features = false, path = "../../../max-encoded-len", features = [ "derive" ] } +max-encoded-len = { version = "4.0.0-dev", default-features = false, path = "../../../max-encoded-len", features = [ "derive" ] } [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" } +substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder" } [dev-dependencies] -sp-io = { version = "3.0.0", path = "../../../primitives/io" } +sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } [features] default = ["std"] diff --git a/bin/node/test-runner-example/Cargo.toml b/bin/node/test-runner-example/Cargo.toml index 7b86582031323..f4c13b699f339 100644 --- a/bin/node/test-runner-example/Cargo.toml +++ b/bin/node/test-runner-example/Cargo.toml @@ -8,33 +8,33 @@ publish = false [dependencies] test-runner = { path = "../../../test-utils/test-runner", version = "0.9.0" } -frame-system = { version = "3.0.0", path = "../../../frame/system" } -frame-support = { path = "../../../frame/support", version = "3.0.0" } -frame-benchmarking = { path = "../../../frame/benchmarking", version = "3.0.0" } -pallet-balances = { path = "../../../frame/balances", version = "3.0.0" } -pallet-sudo = { path = "../../../frame/sudo", version = "3.0.0" } -pallet-transaction-payment = { version = "3.0.0", path = "../../../frame/transaction-payment" } +frame-system = { version = "4.0.0-dev", path = "../../../frame/system" } +frame-support = { path = "../../../frame/support", version = "4.0.0-dev"} +frame-benchmarking = { path = "../../../frame/benchmarking", version = "4.0.0-dev"} +pallet-balances = { path = "../../../frame/balances", version = "4.0.0-dev"} +pallet-sudo = { path = "../../../frame/sudo", version = "4.0.0-dev"} +pallet-transaction-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment" } -node-runtime = { path = "../runtime", version = "2.0.1" } +node-runtime = { path = "../runtime", version = "3.0.0-dev"} node-primitives = { version = "2.0.0", path = "../primitives" } -node-cli = { path = "../cli", version = "2.0.0" } +node-cli = { path = "../cli", version = "3.0.0-dev"} -grandpa = { version = "0.9.0", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" } -sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" } -sc-consensus-babe = { version = "0.9.0", path = "../../../client/consensus/babe" } -sc-consensus-manual-seal = { version = "0.9.0", path = "../../../client/consensus/manual-seal" } -sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service" } -sc-executor = { version = "0.9.0", path = "../../../client/executor" } -sc-client-api = { version = "3.0.0", path = "../../../client/api" } -sc-network = { version = "0.9.0", path = "../../../client/network" } -sc-informant = { version = "0.9.0", path = "../../../client/informant" } -sc-consensus = { version = "0.9.0", path = "../../../client/consensus/common" } +grandpa = { version = "0.10.0-dev", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" } +sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/babe" } +sc-consensus-manual-seal = { version = "0.10.0-dev", path = "../../../client/consensus/manual-seal" } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" } +sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" } +sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" } +sc-network = { version = "0.10.0-dev", path = "../../../client/network" } +sc-informant = { version = "0.10.0-dev", path = "../../../client/informant" } +sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" } -sp-runtime = { path = "../../../primitives/runtime", version = "3.0.0" } +sp-runtime = { path = "../../../primitives/runtime", version = "4.0.0-dev"} sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } -sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" } -sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" } +sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } +sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } log = "0.4.14" diff --git a/bin/node/testing/Cargo.toml b/bin/node/testing/Cargo.toml index 706816ddae671..1e2b071bed1e4 100644 --- a/bin/node/testing/Cargo.toml +++ b/bin/node/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-testing" -version = "2.0.0" +version = "3.0.0-dev" authors = ["Parity Technologies "] description = "Test utilities for Substrate node." edition = "2018" @@ -13,38 +13,38 @@ publish = true targets = ["x86_64-unknown-linux-gnu"] [dependencies] -pallet-balances = { version = "3.0.0", path = "../../../frame/balances" } -sc-service = { version = "0.9.0", features = ["test-helpers", "db"], path = "../../../client/service" } -sc-client-db = { version = "0.9.0", path = "../../../client/db/", features = ["kvdb-rocksdb", "parity-db"] } -sc-client-api = { version = "3.0.0", path = "../../../client/api/" } +pallet-balances = { version = "4.0.0-dev", path = "../../../frame/balances" } +sc-service = { version = "0.10.0-dev", features = ["test-helpers", "db"], path = "../../../client/service" } +sc-client-db = { version = "0.10.0-dev", path = "../../../client/db/", features = ["kvdb-rocksdb", "parity-db"] } +sc-client-api = { version = "4.0.0-dev", path = "../../../client/api/" } codec = { package = "parity-scale-codec", version = "2.0.0" } -pallet-contracts = { version = "3.0.0", path = "../../../frame/contracts" } -pallet-grandpa = { version = "3.1.0", path = "../../../frame/grandpa" } -pallet-indices = { version = "3.0.0", path = "../../../frame/indices" } +pallet-contracts = { version = "4.0.0-dev", path = "../../../frame/contracts" } +pallet-grandpa = { version = "4.0.0-dev", path = "../../../frame/grandpa" } +pallet-indices = { version = "4.0.0-dev", path = "../../../frame/indices" } sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } -node-executor = { version = "2.0.0", path = "../executor" } +node-executor = { version = "3.0.0-dev", path = "../executor" } node-primitives = { version = "2.0.0", path = "../primitives" } -node-runtime = { version = "2.0.0", path = "../runtime" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-io = { version = "3.0.0", path = "../../../primitives/io" } -frame-support = { version = "3.0.0", path = "../../../frame/support" } -pallet-session = { version = "3.0.0", path = "../../../frame/session" } -pallet-society = { version = "3.0.0", path = "../../../frame/society" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -pallet-staking = { version = "3.0.0", path = "../../../frame/staking" } -sc-executor = { version = "0.9.0", path = "../../../client/executor", features = ["wasmtime"] } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } -frame-system = { version = "3.0.0", path = "../../../frame/system" } +node-runtime = { version = "3.0.0-dev", path = "../runtime" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } +frame-support = { version = "4.0.0-dev", path = "../../../frame/support" } +pallet-session = { version = "4.0.0-dev", path = "../../../frame/session" } +pallet-society = { version = "4.0.0-dev", path = "../../../frame/society" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +pallet-staking = { version = "4.0.0-dev", path = "../../../frame/staking" } +sc-executor = { version = "0.10.0-dev", path = "../../../client/executor", features = ["wasmtime"] } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } +frame-system = { version = "4.0.0-dev", path = "../../../frame/system" } substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" } -pallet-timestamp = { version = "3.0.0", path = "../../../frame/timestamp" } -pallet-transaction-payment = { version = "3.0.0", path = "../../../frame/transaction-payment" } -pallet-treasury = { version = "3.0.0", path = "../../../frame/treasury" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-timestamp = { version = "3.0.0", default-features = false, path = "../../../primitives/timestamp" } -sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" } -sc-block-builder = { version = "0.9.0", path = "../../../client/block-builder" } -sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } +pallet-timestamp = { version = "4.0.0-dev", path = "../../../frame/timestamp" } +pallet-transaction-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment" } +pallet-treasury = { version = "4.0.0-dev", path = "../../../frame/treasury" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/timestamp" } +sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } +sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" } +sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } log = "0.4.8" tempfile = "3.1.0" fs_extra = "1" @@ -52,4 +52,4 @@ futures = "0.3.1" [dev-dependencies] criterion = "0.3.0" -sc-cli = { version = "0.9.0", path = "../../../client/cli" } +sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" } diff --git a/bin/utils/chain-spec-builder/Cargo.toml b/bin/utils/chain-spec-builder/Cargo.toml index da9fbcfd3ef44..5bdf01badc3f4 100644 --- a/bin/utils/chain-spec-builder/Cargo.toml +++ b/bin/utils/chain-spec-builder/Cargo.toml @@ -15,10 +15,10 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] ansi_term = "0.12.1" -sc-keystore = { version = "3.0.0", path = "../../../client/keystore" } -sc-chain-spec = { version = "3.0.0", path = "../../../client/chain-spec" } -node-cli = { version = "2.0.0", path = "../../node/cli" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" } +sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" } +sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" } +node-cli = { version = "3.0.0-dev", path = "../../node/cli" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } rand = "0.7.2" structopt = "0.3.8" diff --git a/bin/utils/subkey/Cargo.toml b/bin/utils/subkey/Cargo.toml index e5f0b2387b4d2..9bd38a21a664b 100644 --- a/bin/utils/subkey/Cargo.toml +++ b/bin/utils/subkey/Cargo.toml @@ -17,5 +17,5 @@ path = "src/main.rs" name = "subkey" [dependencies] -sc-cli = { version = "0.9.0", path = "../../../client/cli" } +sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" } structopt = "0.3.14" diff --git a/client/api/Cargo.toml b/client/api/Cargo.toml index 637dae4a29abd..0f7d43e761fd1 100644 --- a/client/api/Cargo.toml +++ b/client/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-client-api" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -15,30 +15,30 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } derive_more = "0.99.2" -sc-executor = { version = "0.9.0", path = "../executor" } -sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" } +sc-executor = { version = "0.10.0-dev", path = "../executor" } +sp-externalities = { version = "0.10.0-dev", path = "../../primitives/externalities" } fnv = "1.0.6" futures = "0.3.1" hash-db = { version = "0.15.2", default-features = false } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-inherents = { version = "3.0.0", default-features = false, path = "../../primitives/inherents" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" } kvdb = "0.9.0" log = "0.4.8" parking_lot = "0.11.1" lazy_static = "1.4.0" -sp-database = { version = "3.0.0", path = "../../primitives/database" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-keystore = { version = "0.9.0", default-features = false, path = "../../primitives/keystore" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-version = { version = "3.0.0", default-features = false, path = "../../primitives/version" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sp-utils = { version = "3.0.0", path = "../../primitives/utils" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } -sp-trie = { version = "3.0.0", path = "../../primitives/trie" } -sp-storage = { version = "3.0.0", path = "../../primitives/storage" } +sp-database = { version = "4.0.0-dev", path = "../../primitives/database" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", default-features = false, path = "../../primitives/keystore" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-version = { version = "4.0.0-dev", default-features = false, path = "../../primitives/version" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } +sp-trie = { version = "4.0.0-dev", path = "../../primitives/trie" } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" } diff --git a/client/authority-discovery/Cargo.toml b/client/authority-discovery/Cargo.toml index 5b5baa999c8b3..5365c20ba96b7 100644 --- a/client/authority-discovery/Cargo.toml +++ b/client/authority-discovery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-authority-discovery" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" @@ -29,18 +29,18 @@ log = "0.4.8" prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} prost = "0.7" rand = "0.7.2" -sc-client-api = { version = "3.0.0", path = "../api" } -sc-network = { version = "0.9.0", path = "../network" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sc-network = { version = "0.10.0-dev", path = "../network" } serde_json = "1.0.41" sp-authority-discovery = { version = "3.0.0", path = "../../primitives/authority-discovery" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } [dev-dependencies] quickcheck = "1.0.3" -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } -sc-peerset = { version = "3.0.0", path = "../peerset" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } +sc-peerset = { version = "4.0.0-dev", path = "../peerset" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client"} diff --git a/client/basic-authorship/Cargo.toml b/client/basic-authorship/Cargo.toml index 2047c85b0c872..be3e6e597a5b2 100644 --- a/client/basic-authorship/Cargo.toml +++ b/client/basic-authorship/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-basic-authorship" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -18,19 +18,19 @@ futures = "0.3.9" futures-timer = "3.0.1" log = "0.4.8" prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sc-client-api = { version = "3.0.0", path = "../api" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } -sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" } -sc-telemetry = { version = "3.0.0", path = "../telemetry" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } +sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" } +sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" } sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } -sc-block-builder = { version = "0.9.0", path = "../block-builder" } +sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } sc-proposer-metrics = { version = "0.9.0", path = "../proposer-metrics" } [dev-dependencies] -sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" } +sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } parking_lot = "0.11.1" diff --git a/client/block-builder/Cargo.toml b/client/block-builder/Cargo.toml index 1019e2411c68c..557b324efc9a1 100644 --- a/client/block-builder/Cargo.toml +++ b/client/block-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-block-builder" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-block-builder = { version = "3.0.0", path = "../../primitives/block-builder" } -sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" } -sc-client-api = { version = "3.0.0", path = "../api" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-block-builder = { version = "4.0.0-dev", path = "../../primitives/block-builder" } +sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] } [dev-dependencies] substrate-test-runtime-client = { path = "../../test-utils/runtime/client" } -sp-trie = { version = "3.0.0", path = "../../primitives/trie" } +sp-trie = { version = "4.0.0-dev", path = "../../primitives/trie" } diff --git a/client/chain-spec/Cargo.toml b/client/chain-spec/Cargo.toml index 27850cc8400b3..f21739fd99bdd 100644 --- a/client/chain-spec/Cargo.toml +++ b/client/chain-spec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-chain-spec" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -13,17 +13,17 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sc-chain-spec-derive = { version = "3.0.0", path = "./derive" } +sc-chain-spec-derive = { version = "4.0.0-dev", path = "./derive" } impl-trait-for-tuples = "0.2.1" -sc-network = { version = "0.9.0", path = "../network" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } +sc-network = { version = "0.10.0-dev", path = "../network" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } serde = { version = "1.0.101", features = ["derive"] } serde_json = "1.0.41" -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } sp-chain-spec = { version = "3.0.0", path = "../../primitives/chain-spec" } -sc-telemetry = { version = "3.0.0", path = "../telemetry" } +sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" } codec = { package = "parity-scale-codec", version = "2.0.0" } -sc-consensus-babe = { version = "0.9.0", path = "../consensus/babe" } -sp-consensus-babe = { version = "0.9.0", path = "../../primitives/consensus/babe" } -sc-consensus-epochs = { version = "0.9.0", path = "../consensus/epochs" } -sc-finality-grandpa = { version = "0.9.0", path = "../finality-grandpa" } +sc-consensus-babe = { version = "0.10.0-dev", path = "../consensus/babe" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../primitives/consensus/babe" } +sc-consensus-epochs = { version = "0.10.0-dev", path = "../consensus/epochs" } +sc-finality-grandpa = { version = "0.10.0-dev", path = "../finality-grandpa" } diff --git a/client/chain-spec/derive/Cargo.toml b/client/chain-spec/derive/Cargo.toml index 8df820a46aeec..6823c139dbe54 100644 --- a/client/chain-spec/derive/Cargo.toml +++ b/client/chain-spec/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-chain-spec-derive" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" diff --git a/client/cli/Cargo.toml b/client/cli/Cargo.toml index 00a56e5fa9b86..f28e9b6d94636 100644 --- a/client/cli/Cargo.toml +++ b/client/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-cli" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Substrate CLI interface." edition = "2018" @@ -24,22 +24,22 @@ hex = "0.4.2" rand = "0.7.3" tiny-bip39 = "0.8.0" serde_json = "1.0.41" -sc-keystore = { version = "3.0.0", path = "../keystore" } +sc-keystore = { version = "4.0.0-dev", path = "../keystore" } sp-panic-handler = { version = "3.0.0", path = "../../primitives/panic-handler" } -sc-client-api = { version = "3.0.0", path = "../api" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sc-network = { version = "0.9.0", path = "../network" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-utils = { version = "3.0.0", path = "../../primitives/utils" } -sp-version = { version = "3.0.0", path = "../../primitives/version" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" } -sc-service = { version = "0.9.0", default-features = false, path = "../service" } -sc-telemetry = { version = "3.0.0", path = "../telemetry" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sc-network = { version = "0.10.0-dev", path = "../network" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } +sp-version = { version = "4.0.0-dev", path = "../../primitives/version" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../service" } +sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" } sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } names = "0.11.0" structopt = "0.3.8" -sc-tracing = { version = "3.0.0", path = "../tracing" } +sc-tracing = { version = "4.0.0-dev", path = "../tracing" } chrono = "0.4.10" serde = "1.0.111" thiserror = "1.0.21" diff --git a/client/consensus/aura/Cargo.toml b/client/consensus/aura/Cargo.toml index 27c1534032f49..973704a3c5c52 100644 --- a/client/consensus/aura/Cargo.toml +++ b/client/consensus/aura/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus-aura" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Aura consensus algorithm for substrate" edition = "2018" @@ -13,28 +13,28 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" } -sp-consensus-aura = { version = "0.9.0", path = "../../../primitives/consensus/aura" } -sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" } -sc-block-builder = { version = "0.9.0", path = "../../block-builder" } -sc-client-api = { version = "3.0.0", path = "../../api" } +sp-application-crypto = { version = "4.0.0-dev", path = "../../../primitives/application-crypto" } +sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consensus/aura" } +sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } +sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" } +sc-client-api = { version = "4.0.0-dev", path = "../../api" } codec = { package = "parity-scale-codec", version = "2.0.0" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" } derive_more = "0.99.2" futures = "0.3.9" futures-timer = "3.0.1" -sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" } +sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } log = "0.4.8" -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-io = { version = "3.0.0", path = "../../../primitives/io" } -sp-version = { version = "3.0.0", path = "../../../primitives/version" } -sc-consensus-slots = { version = "0.9.0", path = "../slots" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" } -sc-telemetry = { version = "3.0.0", path = "../../telemetry" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } +sp-version = { version = "4.0.0-dev", path = "../../../primitives/version" } +sc-consensus-slots = { version = "0.10.0-dev", path = "../slots" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } +sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"} async-trait = "0.1.42" # We enable it only for web-wasm check @@ -42,14 +42,14 @@ async-trait = "0.1.42" getrandom = { version = "0.2", features = ["js"], optional = true } [dev-dependencies] -sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" } +sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } -sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" } -sc-executor = { version = "0.9.0", path = "../../executor" } -sc-keystore = { version = "3.0.0", path = "../../keystore" } -sc-network = { version = "0.9.0", path = "../../network" } +sp-tracing = { version = "4.0.0-dev", path = "../../../primitives/tracing" } +sc-executor = { version = "0.10.0-dev", path = "../../executor" } +sc-keystore = { version = "4.0.0-dev", path = "../../keystore" } +sc-network = { version = "0.10.0-dev", path = "../../network" } sc-network-test = { version = "0.8.0", path = "../../network/test" } -sc-service = { version = "0.9.0", default-features = false, path = "../../service" } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../../service" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } tempfile = "3.1.0" parking_lot = "0.11.1" diff --git a/client/consensus/babe/Cargo.toml b/client/consensus/babe/Cargo.toml index 9ada9fda6216f..d4b98de5a4943 100644 --- a/client/consensus/babe/Cargo.toml +++ b/client/consensus/babe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus-babe" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "BABE consensus algorithm for substrate" edition = "2018" @@ -15,31 +15,31 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] } -sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" } -sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-application-crypto = { version = "4.0.0-dev", path = "../../../primitives/application-crypto" } +sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } num-bigint = "0.2.3" num-rational = "0.2.2" num-traits = "0.2.8" serde = { version = "1.0.104", features = ["derive"] } -sp-version = { version = "3.0.0", path = "../../../primitives/version" } -sp-io = { version = "3.0.0", path = "../../../primitives/io" } -sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" } -sc-telemetry = { version = "3.0.0", path = "../../telemetry" } -sc-keystore = { version = "3.0.0", path = "../../keystore" } -sc-client-api = { version = "3.0.0", path = "../../api" } -sc-consensus-epochs = { version = "0.9.0", path = "../epochs" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } +sp-version = { version = "4.0.0-dev", path = "../../../primitives/version" } +sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } +sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } +sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" } +sc-keystore = { version = "4.0.0-dev", path = "../../keystore" } +sc-client-api = { version = "4.0.0-dev", path = "../../api" } +sc-consensus-epochs = { version = "0.10.0-dev", path = "../epochs" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" } sp-consensus-vrf = { version = "0.9.0", path = "../../../primitives/consensus/vrf" } -sc-consensus-uncles = { version = "0.9.0", path = "../uncles" } -sc-consensus-slots = { version = "0.9.0", path = "../slots" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-utils = { version = "3.0.0", path = "../../../primitives/utils" } +sc-consensus-uncles = { version = "0.10.0-dev", path = "../uncles" } +sc-consensus-slots = { version = "0.10.0-dev", path = "../slots" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-utils = { version = "4.0.0-dev", path = "../../../primitives/utils" } fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"} futures = "0.3.9" @@ -55,14 +55,14 @@ retain_mut = "0.1.3" async-trait = "0.1.42" [dev-dependencies] -sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" } +sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } -sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" } -sc-executor = { version = "0.9.0", path = "../../executor" } -sc-network = { version = "0.9.0", path = "../../network" } +sp-tracing = { version = "4.0.0-dev", path = "../../../primitives/tracing" } +sc-executor = { version = "0.10.0-dev", path = "../../executor" } +sc-network = { version = "0.10.0-dev", path = "../../network" } sc-network-test = { version = "0.8.0", path = "../../network/test" } -sc-service = { version = "0.9.0", default-features = false, path = "../../service" } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../../service" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } -sc-block-builder = { version = "0.9.0", path = "../../block-builder" } +sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" } rand_chacha = "0.2.2" tempfile = "3.1.0" diff --git a/client/consensus/babe/rpc/Cargo.toml b/client/consensus/babe/rpc/Cargo.toml index 71a1205e3c7aa..ca3b1c1170ab9 100644 --- a/client/consensus/babe/rpc/Cargo.toml +++ b/client/consensus/babe/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus-babe-rpc" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "RPC extensions for the BABE consensus algorithm" edition = "2018" @@ -13,28 +13,28 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sc-consensus-babe = { version = "0.9.0", path = "../" } -sc-rpc-api = { version = "0.9.0", path = "../../../rpc-api" } +sc-consensus-babe = { version = "0.10.0-dev", path = "../" } +sc-rpc-api = { version = "0.10.0-dev", path = "../../../rpc-api" } jsonrpc-core = "15.1.0" jsonrpc-core-client = "15.1.0" jsonrpc-derive = "15.1.0" -sp-consensus-babe = { version = "0.9.0", path = "../../../../primitives/consensus/babe" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../../../primitives/consensus/babe" } serde = { version = "1.0.104", features=["derive"] } -sp-blockchain = { version = "3.0.0", path = "../../../../primitives/blockchain" } -sp-runtime = { version = "3.0.0", path = "../../../../primitives/runtime" } -sc-consensus-epochs = { version = "0.9.0", path = "../../epochs" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../../primitives/blockchain" } +sp-runtime = { version = "4.0.0-dev", path = "../../../../primitives/runtime" } +sc-consensus-epochs = { version = "0.10.0-dev", path = "../../epochs" } futures = { version = "0.3.4", features = ["compat"] } derive_more = "0.99.2" -sp-api = { version = "3.0.0", path = "../../../../primitives/api" } -sp-consensus = { version = "0.9.0", path = "../../../../primitives/consensus/common" } -sp-core = { version = "3.0.0", path = "../../../../primitives/core" } -sp-application-crypto = { version = "3.0.0", path = "../../../../primitives/application-crypto" } -sp-keystore = { version = "0.9.0", path = "../../../../primitives/keystore" } +sp-api = { version = "4.0.0-dev", path = "../../../../primitives/api" } +sp-consensus = { version = "0.10.0-dev", path = "../../../../primitives/consensus/common" } +sp-core = { version = "4.0.0-dev", path = "../../../../primitives/core" } +sp-application-crypto = { version = "4.0.0-dev", path = "../../../../primitives/application-crypto" } +sp-keystore = { version = "0.10.0-dev", path = "../../../../primitives/keystore" } [dev-dependencies] -sc-consensus = { version = "0.9.0", path = "../../../consensus/common" } +sc-consensus = { version = "0.10.0-dev", path = "../../../consensus/common" } serde_json = "1.0.50" sp-keyring = { version = "3.0.0", path = "../../../../primitives/keyring" } -sc-keystore = { version = "3.0.0", path = "../../../keystore" } +sc-keystore = { version = "4.0.0-dev", path = "../../../keystore" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" } tempfile = "3.1.0" diff --git a/client/consensus/common/Cargo.toml b/client/consensus/common/Cargo.toml index 5762b9c998b67..09a9ac954ef47 100644 --- a/client/consensus/common/Cargo.toml +++ b/client/consensus/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -13,8 +13,8 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sc-client-api = { version = "3.0.0", path = "../../api" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } +sc-client-api = { version = "4.0.0-dev", path = "../../api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } parking_lot = "0.11.1" diff --git a/client/consensus/epochs/Cargo.toml b/client/consensus/epochs/Cargo.toml index 8e2fe77100967..78e5cc31ea07e 100644 --- a/client/consensus/epochs/Cargo.toml +++ b/client/consensus/epochs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus-epochs" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Generic epochs-based utilities for consensus" edition = "2018" @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] } fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" } -sp-runtime = { path = "../../../primitives/runtime" , version = "3.0.0"} -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sc-client-api = { path = "../../api" , version = "3.0.0"} -sc-consensus = { path = "../common" , version = "0.9.0"} +sp-runtime = { path = "../../../primitives/runtime" , version = "4.0.0-dev"} +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sc-client-api = { path = "../../api" , version = "4.0.0-dev"} +sc-consensus = { path = "../common" , version = "0.10.0-dev"} diff --git a/client/consensus/manual-seal/Cargo.toml b/client/consensus/manual-seal/Cargo.toml index 32cc89034fb1d..161906c4ade64 100644 --- a/client/consensus/manual-seal/Cargo.toml +++ b/client/consensus/manual-seal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus-manual-seal" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Manual sealing engine for Substrate" edition = "2018" @@ -25,29 +25,29 @@ serde = { version = "1.0", features=["derive"] } assert_matches = "1.3.0" async-trait = "0.1.42" -sc-client-api = { path = "../../api", version = "3.0.0"} -sc-consensus-babe = { path = "../../consensus/babe", version = "0.9.0"} -sc-consensus-epochs = { path = "../../consensus/epochs", version = "0.9.0"} -sp-consensus-babe = { path = "../../../primitives/consensus/babe", version = "0.9.0"} +sc-client-api = { path = "../../api", version = "4.0.0-dev"} +sc-consensus-babe = { path = "../../consensus/babe", version = "0.10.0-dev"} +sc-consensus-epochs = { path = "../../consensus/epochs", version = "0.10.0-dev"} +sp-consensus-babe = { path = "../../../primitives/consensus/babe", version = "0.10.0-dev"} -sc-transaction-pool = { path = "../../transaction-pool", version = "3.0.0"} -sp-blockchain = { path = "../../../primitives/blockchain", version = "3.0.0"} -sp-consensus = { path = "../../../primitives/consensus/common", version = "0.9.0"} +sc-transaction-pool = { path = "../../transaction-pool", version = "4.0.0-dev"} +sp-blockchain = { path = "../../../primitives/blockchain", version = "4.0.0-dev"} +sp-consensus = { path = "../../../primitives/consensus/common", version = "0.10.0-dev"} sp-consensus-slots = { path = "../../../primitives/consensus/slots", version = "0.9.0"} -sp-inherents = { path = "../../../primitives/inherents", version = "3.0.0"} -sp-runtime = { path = "../../../primitives/runtime", version = "3.0.0"} -sp-core = { path = "../../../primitives/core", version = "3.0.0"} -sp-keystore = { path = "../../../primitives/keystore", version = "0.9.0"} +sp-inherents = { path = "../../../primitives/inherents", version = "4.0.0-dev"} +sp-runtime = { path = "../../../primitives/runtime", version = "4.0.0-dev"} +sp-core = { path = "../../../primitives/core", version = "4.0.0-dev"} +sp-keystore = { path = "../../../primitives/keystore", version = "0.10.0-dev"} sp-keyring = { path = "../../../primitives/keyring", version = "3.0.0"} -sp-api = { path = "../../../primitives/api", version = "3.0.0"} +sp-api = { path = "../../../primitives/api", version = "4.0.0-dev"} sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "3.0.0"} -sp-timestamp = { path = "../../../primitives/timestamp", version = "3.0.0"} +sp-timestamp = { path = "../../../primitives/timestamp", version = "4.0.0-dev"} prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"} [dev-dependencies] tokio = { version = "0.2", features = ["rt-core", "macros"] } -sc-basic-authorship = { path = "../../basic-authorship", version = "0.9.0"} +sc-basic-authorship = { path = "../../basic-authorship", version = "0.10.0-dev"} substrate-test-runtime-client = { path = "../../../test-utils/runtime/client", version = "2.0.0" } substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool", version = "2.0.0" } tempfile = "3.1.0" diff --git a/client/consensus/pow/Cargo.toml b/client/consensus/pow/Cargo.toml index 443b852c41e5d..f66691bc4652f 100644 --- a/client/consensus/pow/Cargo.toml +++ b/client/consensus/pow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus-pow" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "PoW consensus algorithm for substrate" edition = "2018" @@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sc-client-api = { version = "3.0.0", path = "../../api" } -sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" } -sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sc-client-api = { version = "4.0.0-dev", path = "../../api" } +sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } +sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } sp-consensus-pow = { version = "0.9.0", path = "../../../primitives/consensus/pow" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } log = "0.4.8" futures = { version = "0.3.1", features = ["compat"] } futures-timer = "3.0.1" diff --git a/client/consensus/slots/Cargo.toml b/client/consensus/slots/Cargo.toml index 51382198f5087..baaf99fb27204 100644 --- a/client/consensus/slots/Cargo.toml +++ b/client/consensus/slots/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus-slots" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Generic slots-based utilities for consensus" edition = "2018" @@ -15,20 +15,20 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0" } -sc-client-api = { version = "3.0.0", path = "../../api" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-trie = { version = "3.0.0", path = "../../../primitives/trie" } -sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" } -sp-arithmetic = { version = "3.0.0", path = "../../../primitives/arithmetic" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } +sc-client-api = { version = "4.0.0-dev", path = "../../api" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-trie = { version = "4.0.0-dev", path = "../../../primitives/trie" } +sp-application-crypto = { version = "4.0.0-dev", path = "../../../primitives/application-crypto" } +sp-arithmetic = { version = "4.0.0-dev", path = "../../../primitives/arithmetic" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sc-telemetry = { version = "3.0.0", path = "../../telemetry" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } -sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" } -sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-state-machine = { version = "0.10.0-dev", path = "../../../primitives/state-machine" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } +sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } +sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } futures = "0.3.9" futures-timer = "3.0.1" log = "0.4.11" diff --git a/client/consensus/uncles/Cargo.toml b/client/consensus/uncles/Cargo.toml index ab88d4496fecb..7e821db197b3c 100644 --- a/client/consensus/uncles/Cargo.toml +++ b/client/consensus/uncles/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus-uncles" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Generic uncle inclusion utilities for consensus" edition = "2018" @@ -13,7 +13,7 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sc-client-api = { version = "3.0.0", path = "../../api" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-authorship = { version = "3.0.0", path = "../../../primitives/authorship" } +sc-client-api = { version = "4.0.0-dev", path = "../../api" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-authorship = { version = "4.0.0-dev", path = "../../../primitives/authorship" } thiserror = "1.0.21" diff --git a/client/db/Cargo.toml b/client/db/Cargo.toml index 43bae63f09c2b..f878f086da45d 100644 --- a/client/db/Cargo.toml +++ b/client/db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-client-db" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -24,23 +24,23 @@ parity-util-mem = { version = "0.9.0", default-features = false, features = ["st codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] } blake2-rfc = "0.2.18" -sc-client-api = { version = "3.0.0", path = "../api" } -sp-arithmetic = { version = "3.0.0", path = "../../primitives/arithmetic" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } -sc-executor = { version = "0.9.0", path = "../executor" } -sc-state-db = { version = "0.9.0", path = "../state-db" } -sp-trie = { version = "3.0.0", path = "../../primitives/trie" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-database = { version = "3.0.0", path = "../../primitives/database" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sp-arithmetic = { version = "4.0.0-dev", path = "../../primitives/arithmetic" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } +sc-executor = { version = "0.10.0-dev", path = "../executor" } +sc-state-db = { version = "0.10.0-dev", path = "../state-db" } +sp-trie = { version = "4.0.0-dev", path = "../../primitives/trie" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-database = { version = "4.0.0-dev", path = "../../primitives/database" } parity-db = { version = "0.2.4", optional = true } prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" } [dev-dependencies] sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } quickcheck = "1.0.3" kvdb-rocksdb = "0.11.0" diff --git a/client/executor/Cargo.toml b/client/executor/Cargo.toml index 27e90ddcc85e6..6460df2aa3659 100644 --- a/client/executor/Cargo.toml +++ b/client/executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-executor" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -16,23 +16,23 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] derive_more = "0.99.2" codec = { package = "parity-scale-codec", version = "2.0.0" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-tasks = { version = "3.0.0", path = "../../primitives/tasks" } -sp-trie = { version = "3.0.0", path = "../../primitives/trie" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-tasks = { version = "4.0.0-dev", path = "../../primitives/tasks" } +sp-trie = { version = "4.0.0-dev", path = "../../primitives/trie" } sp-serializer = { version = "3.0.0", path = "../../primitives/serializer" } -sp-version = { version = "3.0.0", path = "../../primitives/version" } +sp-version = { version = "4.0.0-dev", path = "../../primitives/version" } sp-panic-handler = { version = "3.0.0", path = "../../primitives/panic-handler" } wasmi = "0.9.0" parity-wasm = "0.42.0" lazy_static = "1.4.0" -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sp-wasm-interface = { version = "3.0.0", path = "../../primitives/wasm-interface" } -sp-runtime-interface = { version = "3.0.0", path = "../../primitives/runtime-interface" } -sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" } -sc-executor-common = { version = "0.9.0", path = "common" } -sc-executor-wasmi = { version = "0.9.0", path = "wasmi" } -sc-executor-wasmtime = { version = "0.9.0", path = "wasmtime", optional = true } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sp-wasm-interface = { version = "4.0.0-dev", path = "../../primitives/wasm-interface" } +sp-runtime-interface = { version = "4.0.0-dev", path = "../../primitives/runtime-interface" } +sp-externalities = { version = "0.10.0-dev", path = "../../primitives/externalities" } +sc-executor-common = { version = "0.10.0-dev", path = "common" } +sc-executor-wasmi = { version = "0.10.0-dev", path = "wasmi" } +sc-executor-wasmtime = { version = "0.10.0-dev", path = "wasmtime", optional = true } parking_lot = "0.11.1" log = "0.4.8" libsecp256k1 = "0.3.4" @@ -43,10 +43,10 @@ wat = "1.0" hex-literal = "0.3.1" sc-runtime-test = { version = "2.0.0", path = "runtime-test" } substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" } -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } -sc-tracing = { version = "3.0.0", path = "../tracing" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } +sc-tracing = { version = "4.0.0-dev", path = "../tracing" } tracing = "0.1.25" tracing-subscriber = "0.2.18" paste = "1.0" diff --git a/client/executor/common/Cargo.toml b/client/executor/common/Cargo.toml index cb238f3a96fb0..9d1dcfcb45ded 100644 --- a/client/executor/common/Cargo.toml +++ b/client/executor/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-executor-common" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -18,10 +18,10 @@ derive_more = "0.99.2" pwasm-utils = "0.18.0" codec = { package = "parity-scale-codec", version = "2.0.0" } wasmi = "0.9.0" -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-allocator = { version = "3.0.0", path = "../../../primitives/allocator" } -sp-wasm-interface = { version = "3.0.0", path = "../../../primitives/wasm-interface" } -sp-maybe-compressed-blob = { version = "3.0.0", path = "../../../primitives/maybe-compressed-blob" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-allocator = { version = "4.0.0-dev", path = "../../../primitives/allocator" } +sp-wasm-interface = { version = "4.0.0-dev", path = "../../../primitives/wasm-interface" } +sp-maybe-compressed-blob = { version = "4.0.0-dev", path = "../../../primitives/maybe-compressed-blob" } sp-serializer = { version = "3.0.0", path = "../../../primitives/serializer" } thiserror = "1.0.21" diff --git a/client/executor/runtime-test/Cargo.toml b/client/executor/runtime-test/Cargo.toml index 93ad463be16c3..7ffd492d34257 100644 --- a/client/executor/runtime-test/Cargo.toml +++ b/client/executor/runtime-test/Cargo.toml @@ -13,16 +13,16 @@ repository = "https://github.com/paritytech/substrate/" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-allocator = { version = "3.0.0", default-features = false, path = "../../../primitives/allocator" } -sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" } -sp-io = { version = "3.0.0", default-features = false, path = "../../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } -sp-sandbox = { version = "0.9.0", default-features = false, path = "../../../primitives/sandbox" } -sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" } -sp-tasks = { version = "3.0.0", default-features = false, path = "../../../primitives/tasks" } +sp-allocator = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/allocator" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } +sp-sandbox = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/sandbox" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } +sp-tasks = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/tasks" } [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" } +substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder" } [features] default = [ "std" ] diff --git a/client/executor/wasmi/Cargo.toml b/client/executor/wasmi/Cargo.toml index 4c3054d5d10c2..ed0877518267d 100644 --- a/client/executor/wasmi/Cargo.toml +++ b/client/executor/wasmi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-executor-wasmi" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -17,8 +17,8 @@ targets = ["x86_64-unknown-linux-gnu"] log = "0.4.8" wasmi = "0.9.0" codec = { package = "parity-scale-codec", version = "2.0.0" } -sc-executor-common = { version = "0.9.0", path = "../common" } -sp-wasm-interface = { version = "3.0.0", path = "../../../primitives/wasm-interface" } -sp-runtime-interface = { version = "3.0.0", path = "../../../primitives/runtime-interface" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-allocator = { version = "3.0.0", path = "../../../primitives/allocator" } +sc-executor-common = { version = "0.10.0-dev", path = "../common" } +sp-wasm-interface = { version = "4.0.0-dev", path = "../../../primitives/wasm-interface" } +sp-runtime-interface = { version = "4.0.0-dev", path = "../../../primitives/runtime-interface" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-allocator = { version = "4.0.0-dev", path = "../../../primitives/allocator" } diff --git a/client/executor/wasmtime/Cargo.toml b/client/executor/wasmtime/Cargo.toml index 1e886d15beb18..7b4b3d10eca62 100644 --- a/client/executor/wasmtime/Cargo.toml +++ b/client/executor/wasmtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-executor-wasmtime" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -19,11 +19,11 @@ log = "0.4.8" scoped-tls = "1.0" parity-wasm = "0.42.0" codec = { package = "parity-scale-codec", version = "2.0.0" } -sc-executor-common = { version = "0.9.0", path = "../common" } -sp-wasm-interface = { version = "3.0.0", path = "../../../primitives/wasm-interface" } -sp-runtime-interface = { version = "3.0.0", path = "../../../primitives/runtime-interface" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-allocator = { version = "3.0.0", path = "../../../primitives/allocator" } +sc-executor-common = { version = "0.10.0-dev", path = "../common" } +sp-wasm-interface = { version = "4.0.0-dev", path = "../../../primitives/wasm-interface" } +sp-runtime-interface = { version = "4.0.0-dev", path = "../../../primitives/runtime-interface" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-allocator = { version = "4.0.0-dev", path = "../../../primitives/allocator" } wasmtime = "0.27.0" [dev-dependencies] diff --git a/client/finality-grandpa-warp-sync/Cargo.toml b/client/finality-grandpa-warp-sync/Cargo.toml index 27728e159c762..8d37c941e43d1 100644 --- a/client/finality-grandpa-warp-sync/Cargo.toml +++ b/client/finality-grandpa-warp-sync/Cargo.toml @@ -1,7 +1,7 @@ [package] description = "A request-response protocol for handling grandpa warp sync requests" name = "sc-finality-grandpa-warp-sync" -version = "0.9.0" +version = "0.10.0-dev" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" authors = ["Parity Technologies "] edition = "2018" @@ -19,18 +19,18 @@ log = "0.4.11" num-traits = "0.2.14" parking_lot = "0.11.1" prost = "0.7" -sc-client-api = { version = "3.0.0", path = "../api" } -sc-finality-grandpa = { version = "0.9.0", path = "../finality-grandpa" } -sc-network = { version = "0.9.0", path = "../network" } -sc-service = { version = "0.9.0", path = "../service" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-finality-grandpa = { version = "3.0.0", path = "../../primitives/finality-grandpa" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sc-finality-grandpa = { version = "0.10.0-dev", path = "../finality-grandpa" } +sc-network = { version = "0.10.0-dev", path = "../network" } +sc-service = { version = "0.10.0-dev", path = "../service" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-finality-grandpa = { version = "4.0.0-dev", path = "../../primitives/finality-grandpa" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } [dev-dependencies] finality-grandpa = { version = "0.14.1" } rand = "0.8" -sc-block-builder = { version = "0.9.0", path = "../block-builder" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } +sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } diff --git a/client/finality-grandpa/Cargo.toml b/client/finality-grandpa/Cargo.toml index 3cb577aee5db8..3f15b1ef4fd58 100644 --- a/client/finality-grandpa/Cargo.toml +++ b/client/finality-grandpa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-finality-grandpa" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -24,26 +24,26 @@ log = "0.4.8" parking_lot = "0.11.1" rand = "0.7.2" parity-scale-codec = { version = "2.0.0", features = ["derive"] } -sp-application-crypto = { version = "3.0.0", path = "../../primitives/application-crypto" } -sp-arithmetic = { version = "3.0.0", path = "../../primitives/arithmetic" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-utils = { version = "3.0.0", path = "../../primitives/utils" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } -sc-consensus = { version = "0.9.0", path = "../consensus/common" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sc-telemetry = { version = "3.0.0", path = "../telemetry" } -sc-keystore = { version = "3.0.0", path = "../keystore" } +sp-application-crypto = { version = "4.0.0-dev", path = "../../primitives/application-crypto" } +sp-arithmetic = { version = "4.0.0-dev", path = "../../primitives/arithmetic" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } +sc-consensus = { version = "0.10.0-dev", path = "../consensus/common" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" } +sc-keystore = { version = "4.0.0-dev", path = "../keystore" } serde_json = "1.0.41" -sc-client-api = { version = "3.0.0", path = "../api" } -sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sc-network = { version = "0.9.0", path = "../network" } -sc-network-gossip = { version = "0.9.0", path = "../network-gossip" } -sp-finality-grandpa = { version = "3.0.0", path = "../../primitives/finality-grandpa" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sc-network = { version = "0.10.0-dev", path = "../network" } +sc-network-gossip = { version = "0.10.0-dev", path = "../network-gossip" } +sp-finality-grandpa = { version = "4.0.0-dev", path = "../../primitives/finality-grandpa" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} -sc-block-builder = { version = "0.9.0", path = "../block-builder" } +sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } finality-grandpa = { version = "0.14.1", features = ["derive-codec"] } pin-project = "1.0.4" linked-hash-map = "0.5.2" @@ -53,12 +53,12 @@ wasm-timer = "0.2" [dev-dependencies] assert_matches = "1.3.0" finality-grandpa = { version = "0.14.1", features = ["derive-codec", "test-helpers"] } -sc-network = { version = "0.9.0", path = "../network" } +sc-network = { version = "0.10.0-dev", path = "../network" } sc-network-test = { version = "0.8.0", path = "../network/test" } sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } -sp-consensus-babe = { version = "0.9.0", path = "../../primitives/consensus/babe" } -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../primitives/consensus/babe" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } tokio = { version = "0.2", features = ["rt-core"] } tempfile = "3.1.0" diff --git a/client/finality-grandpa/rpc/Cargo.toml b/client/finality-grandpa/rpc/Cargo.toml index 97359120fcaae..1fbf083aed2b5 100644 --- a/client/finality-grandpa/rpc/Cargo.toml +++ b/client/finality-grandpa/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-finality-grandpa-rpc" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "RPC extensions for the GRANDPA finality gadget" repository = "https://github.com/paritytech/substrate/" @@ -9,11 +9,11 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0" readme = "README.md" [dependencies] -sc-finality-grandpa = { version = "0.9.0", path = "../" } -sc-rpc = { version = "3.0.0", path = "../../rpc" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +sc-finality-grandpa = { version = "0.10.0-dev", path = "../" } +sc-rpc = { version = "4.0.0-dev", path = "../../rpc" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } finality-grandpa = { version = "0.14.1", features = ["derive-codec"] } jsonrpc-core = "15.1.0" jsonrpc-core-client = "15.1.0" @@ -25,15 +25,15 @@ serde_json = "1.0.50" log = "0.4.8" derive_more = "0.99.2" parity-scale-codec = { version = "2.0.0", features = ["derive"] } -sc-client-api = { version = "3.0.0", path = "../../api" } +sc-client-api = { version = "4.0.0-dev", path = "../../api" } [dev-dependencies] -sc-block-builder = { version = "0.9.0", path = "../../block-builder" } +sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" } sc-network-test = { version = "0.8.0", path = "../../network/test" } -sc-rpc = { version = "3.0.0", path = "../../rpc", features = ["test-helpers"] } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-finality-grandpa = { version = "3.0.0", path = "../../../primitives/finality-grandpa" } +sc-rpc = { version = "4.0.0-dev", path = "../../rpc", features = ["test-helpers"] } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-finality-grandpa = { version = "4.0.0-dev", path = "../../../primitives/finality-grandpa" } sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } lazy_static = "1.4" diff --git a/client/informant/Cargo.toml b/client/informant/Cargo.toml index 139a5ce19a000..fb81b7109a6c9 100644 --- a/client/informant/Cargo.toml +++ b/client/informant/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-informant" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Substrate informant." edition = "2018" @@ -18,9 +18,9 @@ futures = "0.3.9" futures-timer = "3.0.1" log = "0.4.8" parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } -sc-client-api = { version = "3.0.0", path = "../api" } -sc-network = { version = "0.9.0", path = "../network" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sc-network = { version = "0.10.0-dev", path = "../network" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } wasm-timer = "0.2" diff --git a/client/keystore/Cargo.toml b/client/keystore/Cargo.toml index fd9fd162e6179..b3b1d79812552 100644 --- a/client/keystore/Cargo.toml +++ b/client/keystore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-keystore" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -19,9 +19,9 @@ async-trait = "0.1.30" derive_more = "0.99.2" futures = "0.3.9" futures-util = "0.3.4" -sp-application-crypto = { version = "3.0.0", path = "../../primitives/application-crypto" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" } +sp-application-crypto = { version = "4.0.0-dev", path = "../../primitives/application-crypto" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } hex = "0.4.0" merlin = { version = "2.0", default-features = false } parking_lot = "0.11.1" diff --git a/client/light/Cargo.toml b/client/light/Cargo.toml index 1b45dbf5c0c54..4dee5d55e7d32 100644 --- a/client/light/Cargo.toml +++ b/client/light/Cargo.toml @@ -1,7 +1,7 @@ [package] description = "components for a light client" name = "sc-light" -version = "3.0.0" +version = "4.0.0-dev" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" authors = ["Parity Technologies "] edition = "2018" @@ -14,15 +14,15 @@ readme = "README.md" parking_lot = "0.11.1" lazy_static = "1.4.0" hash-db = "0.15.2" -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } -sc-client-api = { version = "3.0.0", path = "../api" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-externalities = { version = "0.10.0-dev", path = "../../primitives/externalities" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } codec = { package = "parity-scale-codec", version = "2.0.0" } -sc-executor = { version = "0.9.0", path = "../executor" } +sc-executor = { version = "0.10.0-dev", path = "../executor" } [features] default = [] diff --git a/client/network-gossip/Cargo.toml b/client/network-gossip/Cargo.toml index fc5fb9a29ce96..ed9dd45d99f83 100644 --- a/client/network-gossip/Cargo.toml +++ b/client/network-gossip/Cargo.toml @@ -1,7 +1,7 @@ [package] description = "Gossiping for the Substrate network protocol" name = "sc-network-gossip" -version = "0.9.0" +version = "0.10.0-dev" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" authors = ["Parity Technologies "] edition = "2018" @@ -21,8 +21,8 @@ libp2p = { version = "0.37.1", default-features = false } log = "0.4.8" lru = "0.6.5" prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" } -sc-network = { version = "0.9.0", path = "../network" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } +sc-network = { version = "0.10.0-dev", path = "../network" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } wasm-timer = "0.2" tracing = "0.1.25" diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 3740ebceb6389..3b8f2a32eecf9 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -1,7 +1,7 @@ [package] description = "Substrate network protocol" name = "sc-network" -version = "0.9.0" +version = "0.10.0-dev" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" authors = ["Parity Technologies "] edition = "2018" @@ -44,18 +44,18 @@ pin-project = "1.0.4" prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" } prost = "0.7" rand = "0.7.2" -sc-block-builder = { version = "0.9.0", path = "../block-builder" } -sc-client-api = { version = "3.0.0", path = "../api" } -sc-peerset = { version = "3.0.0", path = "../peerset" } +sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sc-peerset = { version = "4.0.0-dev", path = "../peerset" } serde = { version = "1.0.101", features = ["derive"] } serde_json = "1.0.41" smallvec = "1.5.0" -sp-arithmetic = { version = "3.0.0", path = "../../primitives/arithmetic" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-utils = { version = "3.0.0", path = "../../primitives/utils" } +sp-arithmetic = { version = "4.0.0-dev", path = "../../primitives/arithmetic" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } thiserror = "1" unsigned-varint = { version = "0.6.0", features = ["futures", "asynchronous_codec"] } void = "1.0.2" @@ -78,7 +78,7 @@ quickcheck = "1.0.3" rand = "0.7.2" sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } tempfile = "3.1.0" diff --git a/client/network/test/Cargo.toml b/client/network/test/Cargo.toml index 18a8d5cf8ca0a..2fc453a8c5a3c 100644 --- a/client/network/test/Cargo.toml +++ b/client/network/test/Cargo.toml @@ -14,24 +14,24 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] async-std = "1.6.5" -sc-network = { version = "0.9.0", path = "../" } +sc-network = { version = "0.10.0-dev", path = "../" } log = "0.4.8" parking_lot = "0.11.1" futures = "0.3.9" futures-timer = "3.0.1" rand = "0.7.2" libp2p = { version = "0.37.1", default-features = false } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } -sc-consensus = { version = "0.9.0", path = "../../consensus/common" } -sc-client-api = { version = "3.0.0", path = "../../api" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sc-block-builder = { version = "0.9.0", path = "../../block-builder" } -sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } +sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" } +sc-client-api = { version = "4.0.0-dev", path = "../../api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" } tempfile = "3.1.0" -sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" } -sc-service = { version = "0.9.0", default-features = false, features = ["test-helpers"], path = "../../service" } +sp-tracing = { version = "4.0.0-dev", path = "../../../primitives/tracing" } +sc-service = { version = "0.10.0-dev", default-features = false, features = ["test-helpers"], path = "../../service" } async-trait = "0.1.42" diff --git a/client/offchain/Cargo.toml b/client/offchain/Cargo.toml index 9aca829c70d66..ea1b5cf743e91 100644 --- a/client/offchain/Cargo.toml +++ b/client/offchain/Cargo.toml @@ -1,7 +1,7 @@ [package] description = "Substrate offchain workers" name = "sc-offchain" -version = "3.0.0" +version = "4.0.0-dev" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" authors = ["Parity Technologies "] edition = "2018" @@ -23,14 +23,14 @@ log = "0.4.8" num_cpus = "1.10" parking_lot = "0.11.1" rand = "0.7.2" -sc-client-api = { version = "3.0.0", path = "../api" } -sc-keystore = { version = "3.0.0", path = "../keystore" } -sc-network = { version = "0.9.0", path = "../network" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sc-keystore = { version = "4.0.0-dev", path = "../keystore" } +sc-network = { version = "0.10.0-dev", path = "../network" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } sp-offchain = { version = "3.0.0", path = "../../primitives/offchain" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-utils = { version = "3.0.0", path = "../../primitives/utils" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } threadpool = "1.7" [target.'cfg(not(target_os = "unknown"))'.dependencies] @@ -38,12 +38,12 @@ hyper = "0.13.9" hyper-rustls = "0.21.0" [dev-dependencies] -sc-client-db = { version = "0.9.0", default-features = true, path = "../db" } -sc-block-builder = { version = "0.9.0", path = "../block-builder" } -sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" } +sc-client-db = { version = "0.10.0-dev", default-features = true, path = "../db" } +sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } +sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" } sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } tokio = "0.2" lazy_static = "1.4.0" diff --git a/client/peerset/Cargo.toml b/client/peerset/Cargo.toml index 5910116ec01c1..1af585df5359b 100644 --- a/client/peerset/Cargo.toml +++ b/client/peerset/Cargo.toml @@ -3,7 +3,7 @@ description = "Connectivity manager based on reputation" homepage = "http://parity.io" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" name = "sc-peerset" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" repository = "https://github.com/paritytech/substrate/" @@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] futures = "0.3.9" libp2p = { version = "0.37.1", default-features = false } -sp-utils = { version = "3.0.0", path = "../../primitives/utils"} +sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils"} log = "0.4.8" serde_json = "1.0.41" wasm-timer = "0.2" diff --git a/client/rpc-api/Cargo.toml b/client/rpc-api/Cargo.toml index 662f4bd16fd4c..d1bc4d9e84826 100644 --- a/client/rpc-api/Cargo.toml +++ b/client/rpc-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-rpc-api" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -22,12 +22,12 @@ jsonrpc-derive = "15.1.0" jsonrpc-pubsub = "15.1.0" log = "0.4.8" parking_lot = "0.11.1" -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-version = { version = "3.0.0", path = "../../primitives/version" } -sp-runtime = { path = "../../primitives/runtime" , version = "3.0.0"} +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-version = { version = "4.0.0-dev", path = "../../primitives/version" } +sp-runtime = { path = "../../primitives/runtime" , version = "4.0.0-dev"} sp-chain-spec = { path = "../../primitives/chain-spec" , version = "3.0.0"} serde = { version = "1.0.101", features = ["derive"] } serde_json = "1.0.41" sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } -sp-rpc = { version = "3.0.0", path = "../../primitives/rpc" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } +sp-rpc = { version = "4.0.0-dev", path = "../../primitives/rpc" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } diff --git a/client/rpc-servers/Cargo.toml b/client/rpc-servers/Cargo.toml index 95c3e4194cd51..5f090ed3e7334 100644 --- a/client/rpc-servers/Cargo.toml +++ b/client/rpc-servers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-rpc-server" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -20,7 +20,7 @@ log = "0.4.8" prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} serde = "1.0.101" serde_json = "1.0.41" -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } [target.'cfg(not(target_os = "unknown"))'.dependencies] http = { package = "jsonrpc-http-server", version = "15.1.0" } diff --git a/client/rpc/Cargo.toml b/client/rpc/Cargo.toml index a352e5fc387bd..8c73cd0f4fb29 100644 --- a/client/rpc/Cargo.toml +++ b/client/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-rpc" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -13,46 +13,46 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sc-rpc-api = { version = "0.9.0", path = "../rpc-api" } -sc-client-api = { version = "3.0.0", path = "../api" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } +sc-rpc-api = { version = "0.10.0-dev", path = "../rpc-api" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } codec = { package = "parity-scale-codec", version = "2.0.0" } futures = { version = "0.3.1", features = ["compat"] } jsonrpc-pubsub = "15.1.0" log = "0.4.8" -sp-core = { version = "3.0.0", path = "../../primitives/core" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } rpc = { package = "jsonrpc-core", version = "15.1.0" } -sp-version = { version = "3.0.0", path = "../../primitives/version" } +sp-version = { version = "4.0.0-dev", path = "../../primitives/version" } serde_json = "1.0.41" -sp-session = { version = "3.0.0", path = "../../primitives/session" } +sp-session = { version = "4.0.0-dev", path = "../../primitives/session" } sp-offchain = { version = "3.0.0", path = "../../primitives/offchain" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-utils = { version = "3.0.0", path = "../../primitives/utils" } -sp-rpc = { version = "3.0.0", path = "../../primitives/rpc" } -sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" } -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } +sp-rpc = { version = "4.0.0-dev", path = "../../primitives/rpc" } +sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } sp-chain-spec = { version = "3.0.0", path = "../../primitives/chain-spec" } -sc-executor = { version = "0.9.0", path = "../executor" } -sc-block-builder = { version = "0.9.0", path = "../block-builder" } -sc-keystore = { version = "3.0.0", path = "../keystore" } +sc-executor = { version = "0.10.0-dev", path = "../executor" } +sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } +sc-keystore = { version = "4.0.0-dev", path = "../keystore" } sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sc-tracing = { version = "3.0.0", path = "../tracing" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sc-tracing = { version = "4.0.0-dev", path = "../tracing" } hash-db = { version = "0.15.2", default-features = false } parking_lot = "0.11.1" lazy_static = { version = "1.4.0", optional = true } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } [dev-dependencies] assert_matches = "1.3.0" futures01 = { package = "futures", version = "0.1.29" } lazy_static = "1.4.0" -sc-network = { version = "0.9.0", path = "../network" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } +sc-network = { version = "0.10.0-dev", path = "../network" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } tokio = "0.1.22" -sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" } -sc-cli = { version = "0.9.0", path = "../cli" } +sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" } +sc-cli = { version = "0.10.0-dev", path = "../cli" } [features] test-helpers = ["lazy_static"] diff --git a/client/service/Cargo.toml b/client/service/Cargo.toml index 6a98cf82f3e55..35c4ec5171c94 100644 --- a/client/service/Cargo.toml +++ b/client/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-service" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -40,42 +40,42 @@ pin-project = "1.0.4" hash-db = "0.15.2" serde = "1.0.101" serde_json = "1.0.41" -sc-keystore = { version = "3.0.0", path = "../keystore" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-trie = { version = "3.0.0", path = "../../primitives/trie" } -sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" } -sp-utils = { version = "3.0.0", path = "../../primitives/utils" } -sp-version = { version = "3.0.0", path = "../../primitives/version" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" } -sp-session = { version = "3.0.0", path = "../../primitives/session" } -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } -sp-application-crypto = { version = "3.0.0", path = "../../primitives/application-crypto" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } -sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" } -sc-network = { version = "0.9.0", path = "../network" } -sc-chain-spec = { version = "3.0.0", path = "../chain-spec" } -sc-light = { version = "3.0.0", path = "../light" } -sc-client-api = { version = "3.0.0", path = "../api" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sc-client-db = { version = "0.9.0", default-features = false, path = "../db" } +sc-keystore = { version = "4.0.0-dev", path = "../keystore" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-trie = { version = "4.0.0-dev", path = "../../primitives/trie" } +sp-externalities = { version = "0.10.0-dev", path = "../../primitives/externalities" } +sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } +sp-version = { version = "4.0.0-dev", path = "../../primitives/version" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } +sp-session = { version = "4.0.0-dev", path = "../../primitives/session" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } +sp-application-crypto = { version = "4.0.0-dev", path = "../../primitives/application-crypto" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } +sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" } +sc-network = { version = "0.10.0-dev", path = "../network" } +sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" } +sc-light = { version = "4.0.0-dev", path = "../light" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" } codec = { package = "parity-scale-codec", version = "2.0.0" } -sc-executor = { version = "0.9.0", path = "../executor" } -sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" } +sc-executor = { version = "0.10.0-dev", path = "../executor" } +sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" } sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } -sp-transaction-storage-proof = { version = "3.0.0", path = "../../primitives/transaction-storage-proof" } -sc-rpc-server = { version = "3.0.0", path = "../rpc-servers" } -sc-rpc = { version = "3.0.0", path = "../rpc" } -sc-block-builder = { version = "0.9.0", path = "../block-builder" } -sp-block-builder = { version = "3.0.0", path = "../../primitives/block-builder" } -sc-informant = { version = "0.9.0", path = "../informant" } -sc-telemetry = { version = "3.0.0", path = "../telemetry" } -sc-offchain = { version = "3.0.0", path = "../offchain" } +sp-transaction-storage-proof = { version = "4.0.0-dev", path = "../../primitives/transaction-storage-proof" } +sc-rpc-server = { version = "4.0.0-dev", path = "../rpc-servers" } +sc-rpc = { version = "4.0.0-dev", path = "../rpc" } +sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } +sp-block-builder = { version = "4.0.0-dev", path = "../../primitives/block-builder" } +sc-informant = { version = "0.10.0-dev", path = "../informant" } +sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" } +sc-offchain = { version = "4.0.0-dev", path = "../offchain" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} -sc-tracing = { version = "3.0.0", path = "../tracing" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } +sc-tracing = { version = "4.0.0-dev", path = "../tracing" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } tracing = "0.1.25" tracing-futures = { version = "0.2.4" } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } @@ -88,8 +88,8 @@ directories = "3.0.1" [dev-dependencies] substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime/" } -sp-consensus-babe = { version = "0.9.0", path = "../../primitives/consensus/babe" } -grandpa = { version = "0.9.0", package = "sc-finality-grandpa", path = "../finality-grandpa" } -grandpa-primitives = { version = "3.0.0", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" } +sp-consensus-babe = { version = "0.10.0-dev", path = "../../primitives/consensus/babe" } +grandpa = { version = "0.10.0-dev", package = "sc-finality-grandpa", path = "../finality-grandpa" } +grandpa-primitives = { version = "4.0.0-dev", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" } tokio = { version = "0.2.25", default-features = false } async-std = { version = "1.6.5", default-features = false } diff --git a/client/service/test/Cargo.toml b/client/service/test/Cargo.toml index 2108d7e26fa83..65b6b2412aa31 100644 --- a/client/service/test/Cargo.toml +++ b/client/service/test/Cargo.toml @@ -19,26 +19,26 @@ futures01 = { package = "futures", version = "0.1.29" } log = "0.4.8" fdlimit = "0.2.1" parking_lot = "0.11.1" -sc-light = { version = "3.0.0", path = "../../light" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" } -sp-externalities = { version = "0.9.0", path = "../../../primitives/externalities" } -sp-trie = { version = "3.0.0", path = "../../../primitives/trie" } -sp-storage = { version = "3.0.0", path = "../../../primitives/storage" } -sc-client-db = { version = "0.9.0", default-features = false, path = "../../db" } +sc-light = { version = "4.0.0-dev", path = "../../light" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-state-machine = { version = "0.10.0-dev", path = "../../../primitives/state-machine" } +sp-externalities = { version = "0.10.0-dev", path = "../../../primitives/externalities" } +sp-trie = { version = "4.0.0-dev", path = "../../../primitives/trie" } +sp-storage = { version = "4.0.0-dev", path = "../../../primitives/storage" } +sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../../db" } futures = { version = "0.3.1", features = ["compat"] } -sc-service = { version = "0.9.0", features = ["test-helpers"], path = "../../service" } -sc-network = { version = "0.9.0", path = "../../network" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } +sc-service = { version = "0.10.0-dev", features = ["test-helpers"], path = "../../service" } +sc-network = { version = "0.10.0-dev", path = "../../network" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } -sc-client-api = { version = "3.0.0", path = "../../api" } -sc-block-builder = { version = "0.9.0", path = "../../block-builder" } -sc-executor = { version = "0.9.0", path = "../../executor" } +sc-client-api = { version = "4.0.0-dev", path = "../../api" } +sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" } +sc-executor = { version = "0.10.0-dev", path = "../../executor" } sp-panic-handler = { version = "3.0.0", path = "../../../primitives/panic-handler" } parity-scale-codec = "2.0.0" -sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" } +sp-tracing = { version = "4.0.0-dev", path = "../../../primitives/tracing" } diff --git a/client/state-db/Cargo.toml b/client/state-db/Cargo.toml index d61dd7fc125a1..ee005eb44ba94 100644 --- a/client/state-db/Cargo.toml +++ b/client/state-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-state-db" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -16,8 +16,8 @@ targets = ["x86_64-unknown-linux-gnu"] thiserror = "1.0.21" parking_lot = "0.11.1" log = "0.4.11" -sc-client-api = { version = "3.0.0", path = "../api" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } parity-util-mem-derive = "0.1.0" diff --git a/client/sync-state-rpc/Cargo.toml b/client/sync-state-rpc/Cargo.toml index 3ec48ac9ec570..0402d16ae008b 100644 --- a/client/sync-state-rpc/Cargo.toml +++ b/client/sync-state-rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-sync-state-rpc" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "A RPC handler to create sync states for light clients." edition = "2018" @@ -17,12 +17,12 @@ thiserror = "1.0.21" jsonrpc-core = "15.0" jsonrpc-core-client = "15.0" jsonrpc-derive = "15.0" -sc-chain-spec = { version = "3.0.0", path = "../chain-spec" } -sc-client-api = { version = "3.0.0", path = "../api" } -sc-consensus-babe = { version = "0.9.0", path = "../consensus/babe" } -sc-consensus-epochs = { version = "0.9.0", path = "../consensus/epochs" } -sc-finality-grandpa = { version = "0.9.0", path = "../finality-grandpa" } -sc-rpc-api = { version = "0.9.0", path = "../rpc-api" } +sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sc-consensus-babe = { version = "0.10.0-dev", path = "../consensus/babe" } +sc-consensus-epochs = { version = "0.10.0-dev", path = "../consensus/epochs" } +sc-finality-grandpa = { version = "0.10.0-dev", path = "../finality-grandpa" } +sc-rpc-api = { version = "0.10.0-dev", path = "../rpc-api" } serde_json = "1.0.58" -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } diff --git a/client/telemetry/Cargo.toml b/client/telemetry/Cargo.toml index 6e6ae408247a3..e4ea3e25d63c6 100644 --- a/client/telemetry/Cargo.toml +++ b/client/telemetry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-telemetry" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] description = "Telemetry utils" edition = "2018" diff --git a/client/tracing/Cargo.toml b/client/tracing/Cargo.toml index 1121b922494c9..5d93b26dfbbcb 100644 --- a/client/tracing/Cargo.toml +++ b/client/tracing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-tracing" -version = "3.0.0" +version = "4.0.0-dev" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" authors = ["Parity Technologies "] edition = "2018" @@ -28,18 +28,18 @@ thiserror = "1.0.21" tracing = "0.1.25" tracing-log = "0.1.2" tracing-subscriber = "0.2.18" -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } -sp-rpc = { version = "3.0.0", path = "../../primitives/rpc" } -sp-block-builder = { version = "3.0.0", path = "../../primitives/block-builder" } -sp-storage = { version = "3.0.0", path = "../../primitives/storage" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sc-telemetry = { version = "3.0.0", path = "../telemetry" } -sc-client-api = { version = "3.0.0", path = "../api" } -sc-tracing-proc-macro = { version = "3.0.0", path = "./proc-macro" } -sc-rpc-server = { version = "3.0.0", path = "../rpc-servers" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } +sp-rpc = { version = "4.0.0-dev", path = "../../primitives/rpc" } +sp-block-builder = { version = "4.0.0-dev", path = "../../primitives/block-builder" } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sc-tracing-proc-macro = { version = "4.0.0-dev", path = "./proc-macro" } +sc-rpc-server = { version = "4.0.0-dev", path = "../rpc-servers" } wasm-timer = "0.2" [target.'cfg(target_os = "unknown")'.dependencies] diff --git a/client/tracing/proc-macro/Cargo.toml b/client/tracing/proc-macro/Cargo.toml index 3c06a75f0a1f1..fbde99a1a2178 100644 --- a/client/tracing/proc-macro/Cargo.toml +++ b/client/tracing/proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-tracing-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/client/transaction-pool/Cargo.toml b/client/transaction-pool/Cargo.toml index 6b105520baec5..57aba1ce343bb 100644 --- a/client/transaction-pool/Cargo.toml +++ b/client/transaction-pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-transaction-pool" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -21,22 +21,22 @@ log = "0.4.8" parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } parking_lot = "0.11.1" prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} -sc-client-api = { version = "3.0.0", path = "../api" } -sc-transaction-graph = { version = "3.0.0", path = "./graph" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } +sc-client-api = { version = "4.0.0-dev", path = "../api" } +sc-transaction-graph = { version = "4.0.0-dev", path = "./graph" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-utils = { version = "3.0.0", path = "../../primitives/utils" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } wasm-timer = "0.2" [dev-dependencies] assert_matches = "1.3.0" hex = "0.4" sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } substrate-test-runtime-transaction-pool = { version = "2.0.0", path = "../../test-utils/runtime/transaction-pool" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } -sc-block-builder = { version = "0.9.0", path = "../block-builder" } +sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } diff --git a/client/transaction-pool/graph/Cargo.toml b/client/transaction-pool/graph/Cargo.toml index 4b134c7080963..18047574e07ca 100644 --- a/client/transaction-pool/graph/Cargo.toml +++ b/client/transaction-pool/graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-transaction-graph" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" @@ -20,10 +20,10 @@ log = "0.4.8" parking_lot = "0.11.1" serde = { version = "1.0.101", features = ["derive"] } wasm-timer = "0.2" -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-utils = { version = "3.0.0", path = "../../../primitives/utils" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-utils = { version = "4.0.0-dev", path = "../../../primitives/utils" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } linked-hash-map = "0.5.2" diff --git a/frame/assets/Cargo.toml b/frame/assets/Cargo.toml index 7afd08d8c11f9..625ede319c8f7 100644 --- a/frame/assets/Cargo.toml +++ b/frame/assets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-assets" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,21 +14,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } # Needed for various traits. In our case, `OnFinalize`. -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } # Needed for type-safe access to storage DB. -frame-support = { version = "3.0.0", default-features = false, path = "../support" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } # `system` module provides us with all sorts of useful stuff and macros depend on it being around. -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -max-encoded-len = { version = "3.0.0", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +max-encoded-len = { version = "4.0.0-dev", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-std = { version = "3.0.0", path = "../../primitives/std" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-std = { version = "4.0.0-dev", path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/atomic-swap/Cargo.toml b/frame/atomic-swap/Cargo.toml index 4fd1284893f99..2519772ed46de 100644 --- a/frame/atomic-swap/Cargo.toml +++ b/frame/atomic-swap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-atomic-swap" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } [dev-dependencies] -pallet-balances = { version = "3.0.0", path = "../balances" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/aura/Cargo.toml b/frame/aura/Cargo.toml index 5b247b008de2f..9c4a31017bac5 100644 --- a/frame/aura/Cargo.toml +++ b/frame/aura/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-aura" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,19 +13,19 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../primitives/application-crypto" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -pallet-session = { version = "3.0.0", default-features = false, path = "../session" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -sp-consensus-aura = { version = "0.9.0", path = "../../primitives/consensus/aura", default-features = false } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-timestamp = { version = "3.0.0", default-features = false, path = "../timestamp" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +pallet-session = { version = "4.0.0-dev", default-features = false, path = "../session" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +sp-consensus-aura = { version = "0.10.0-dev", path = "../../primitives/consensus/aura", default-features = false } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../timestamp" } [dev-dependencies] -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-io ={ version = "3.0.0", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-io ={ version = "4.0.0-dev", path = "../../primitives/io" } lazy_static = "1.4.0" parking_lot = "0.11.1" diff --git a/frame/authority-discovery/Cargo.toml b/frame/authority-discovery/Cargo.toml index 25fec9118230e..d64b2c1c3820d 100644 --- a/frame/authority-discovery/Cargo.toml +++ b/frame/authority-discovery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-authority-discovery" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] sp-authority-discovery = { version = "3.0.0", default-features = false, path = "../../primitives/authority-discovery" } -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../primitives/application-crypto" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -pallet-session = { version = "3.0.0", features = ["historical" ], path = "../session", default-features = false } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +pallet-session = { version = "4.0.0-dev", features = ["historical" ], path = "../session", default-features = false } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" } [features] default = ["std"] diff --git a/frame/authorship/Cargo.toml b/frame/authorship/Cargo.toml index 56c56e23dfc8c..f0d597b6ad7ee 100644 --- a/frame/authorship/Cargo.toml +++ b/frame/authorship/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-authorship" -version = "3.0.0" +version = "4.0.0-dev" description = "Block and Uncle Author tracking for the FRAME" authors = ["Parity Technologies "] edition = "2018" @@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-authorship = { version = "3.0.0", default-features = false, path = "../../primitives/authorship" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-authorship = { version = "4.0.0-dev", default-features = false, path = "../../primitives/authorship" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } impl-trait-for-tuples = "0.2.1" [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-io ={ version = "3.0.0", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-io ={ version = "4.0.0-dev", path = "../../primitives/io" } serde = { version = "1.0.101" } [features] diff --git a/frame/babe/Cargo.toml b/frame/babe/Cargo.toml index 64497eafe715c..f15fdb1c177e4 100644 --- a/frame/babe/Cargo.toml +++ b/frame/babe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-babe" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,29 +14,29 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-authorship = { version = "3.0.0", default-features = false, path = "../authorship" } -pallet-session = { version = "3.0.0", default-features = false, path = "../session" } -pallet-timestamp = { version = "3.0.0", default-features = false, path = "../timestamp" } -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" } -sp-consensus-babe = { version = "0.9.0", default-features = false, path = "../../primitives/consensus/babe" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../authorship" } +pallet-session = { version = "4.0.0-dev", default-features = false, path = "../session" } +pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../timestamp" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../primitives/application-crypto" } +sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/babe" } sp-consensus-vrf = { version = "0.9.0", default-features = false, path = "../../primitives/consensus/vrf" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-session = { version = "3.0.0", default-features = false, path = "../../primitives/session" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } log = { version = "0.4.14", default-features = false } [dev-dependencies] -pallet-balances = { version = "3.0.0", path = "../balances" } -pallet-offences = { version = "3.0.0", path = "../offences" } -pallet-staking = { version = "3.0.0", path = "../staking" } -pallet-staking-reward-curve = { version = "3.0.0", path = "../staking/reward-curve" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -frame-election-provider-support = { version = "3.0.0", path = "../election-provider-support" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +pallet-offences = { version = "4.0.0-dev", path = "../offences" } +pallet-staking = { version = "4.0.0-dev", path = "../staking" } +pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../staking/reward-curve" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support" } [features] default = ["std"] diff --git a/frame/balances/Cargo.toml b/frame/balances/Cargo.toml index c4ab509aa0d4e..cd07860b9b3cc 100644 --- a/frame/balances/Cargo.toml +++ b/frame/balances/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-balances" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } log = { version = "0.4.14", default-features = false } -max-encoded-len = { version = "3.0.0", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } +max-encoded-len = { version = "4.0.0-dev", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } [dev-dependencies] -sp-io = { version = "3.0.0", path = "../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-transaction-payment = { version = "3.0.0", path = "../transaction-payment" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-transaction-payment = { version = "4.0.0-dev", path = "../transaction-payment" } [features] default = ["std"] diff --git a/frame/benchmarking/Cargo.toml b/frame/benchmarking/Cargo.toml index 3b20cf7dd048c..ab16e365f8595 100644 --- a/frame/benchmarking/Cargo.toml +++ b/frame/benchmarking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-benchmarking" -version = "3.1.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -16,14 +16,14 @@ targets = ["x86_64-unknown-linux-gnu"] linregress = { version = "0.4.0", optional = true } paste = "1.0" codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-api = { version = "3.0.0", path = "../../primitives/api", default-features = false } -sp-runtime-interface = { version = "3.0.0", path = "../../primitives/runtime-interface", default-features = false } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime", default-features = false } -sp-std = { version = "3.0.0", path = "../../primitives/std", default-features = false } -sp-io = { version = "3.0.0", path = "../../primitives/io", default-features = false } -sp-storage = { version = "3.0.0", path = "../../primitives/storage", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api", default-features = false } +sp-runtime-interface = { version = "4.0.0-dev", path = "../../primitives/runtime-interface", default-features = false } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime", default-features = false } +sp-std = { version = "4.0.0-dev", path = "../../primitives/std", default-features = false } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io", default-features = false } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage", default-features = false } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } log = { version = "0.4.14", default-features = false } [dev-dependencies] diff --git a/frame/bounties/Cargo.toml b/frame/bounties/Cargo.toml index 1845f77e97a9a..7385f717af109 100644 --- a/frame/bounties/Cargo.toml +++ b/frame/bounties/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-bounties" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-treasury = { version = "3.0.0", default-features = false, path = "../treasury" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../treasury" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -sp-io ={ version = "3.0.0", path = "../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-storage = { version = "3.0.0", path = "../../primitives/storage" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-io ={ version = "4.0.0-dev", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/collective/Cargo.toml b/frame/collective/Cargo.toml index c4940c87f827b..4f134b2173b2e 100644 --- a/frame/collective/Cargo.toml +++ b/frame/collective/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-collective" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } log = { version = "0.4.14", default-features = false } [dev-dependencies] hex-literal = "0.3.1" -pallet-balances = { version = "3.0.0", path = "../balances" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/contracts/Cargo.toml b/frame/contracts/Cargo.toml index 9d344fb6866d7..83e2ecae9036b 100644 --- a/frame/contracts/Cargo.toml +++ b/frame/contracts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-contracts" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -26,16 +26,16 @@ rand = { version = "0.8", optional = true, default-features = false } rand_pcg = { version = "0.3", optional = true } # Substrate Dependencies -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-contracts-primitives = { version = "3.0.0", default-features = false, path = "common" } -pallet-contracts-proc-macro = { version = "3.0.0", path = "proc-macro" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-sandbox = { version = "0.9.0", default-features = false, path = "../../primitives/sandbox" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-contracts-primitives = { version = "4.0.0-dev", default-features = false, path = "common" } +pallet-contracts-proc-macro = { version = "4.0.0-dev", path = "proc-macro" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-sandbox = { version = "0.10.0-dev", default-features = false, path = "../../primitives/sandbox" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } [dev-dependencies] assert_matches = "1" @@ -45,9 +45,9 @@ pretty_assertions = "0.7" wat = "1" # Substrate Dependencies -pallet-balances = { version = "3.0.0", path = "../balances" } -pallet-timestamp = { version = "3.0.0", path = "../timestamp" } -pallet-randomness-collective-flip = { version = "3.0.0", path = "../randomness-collective-flip" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +pallet-timestamp = { version = "4.0.0-dev", path = "../timestamp" } +pallet-randomness-collective-flip = { version = "4.0.0-dev", path = "../randomness-collective-flip" } [features] default = ["std"] diff --git a/frame/contracts/common/Cargo.toml b/frame/contracts/common/Cargo.toml index 154ceeb891344..e353b3af04714 100644 --- a/frame/contracts/common/Cargo.toml +++ b/frame/contracts/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-contracts-primitives" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -18,9 +18,9 @@ codec = { package = "parity-scale-codec", version = "2", default-features = fals serde = { version = "1", features = ["derive"], optional = true } # Substrate Dependencies (This crate should not rely on frame) -sp-core = { version = "3.0.0", path = "../../../primitives/core", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core", default-features = false } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } [features] default = ["std"] diff --git a/frame/contracts/proc-macro/Cargo.toml b/frame/contracts/proc-macro/Cargo.toml index 2bdde32e0bd45..605c69fe73e25 100644 --- a/frame/contracts/proc-macro/Cargo.toml +++ b/frame/contracts/proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-contracts-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/frame/contracts/rpc/Cargo.toml b/frame/contracts/rpc/Cargo.toml index dbd4356acc4a9..32aa9e21a1a0f 100644 --- a/frame/contracts/rpc/Cargo.toml +++ b/frame/contracts/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-contracts-rpc" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -20,13 +20,13 @@ jsonrpc-derive = "15" serde = { version = "1", features = ["derive"] } # Substrate Dependencies -pallet-contracts-primitives = { version = "3.0.0", path = "../common" } -pallet-contracts-rpc-runtime-api = { version = "3.0.0", path = "./runtime-api" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-rpc = { version = "3.0.0", path = "../../../primitives/rpc" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +pallet-contracts-primitives = { version = "4.0.0-dev", path = "../common" } +pallet-contracts-rpc-runtime-api = { version = "4.0.0-dev", path = "./runtime-api" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-rpc = { version = "4.0.0-dev", path = "../../../primitives/rpc" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } [dev-dependencies] serde_json = "1" diff --git a/frame/contracts/rpc/runtime-api/Cargo.toml b/frame/contracts/rpc/runtime-api/Cargo.toml index 8ce1c13e667eb..fb5addc5a437b 100644 --- a/frame/contracts/rpc/runtime-api/Cargo.toml +++ b/frame/contracts/rpc/runtime-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-contracts-rpc-runtime-api" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -16,10 +16,10 @@ targets = ["x86_64-unknown-linux-gnu"] codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive"] } # Substrate Dependencies -pallet-contracts-primitives = { version = "3.0.0", default-features = false, path = "../../common" } -sp-api = { version = "3.0.0", default-features = false, path = "../../../../primitives/api" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../../../primitives/std" } +pallet-contracts-primitives = { version = "4.0.0-dev", default-features = false, path = "../../common" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/api" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/std" } [features] default = ["std"] diff --git a/frame/democracy/Cargo.toml b/frame/democracy/Cargo.toml index f9b0d035b089d..178578992ad54 100644 --- a/frame/democracy/Cargo.toml +++ b/frame/democracy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-democracy" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } -pallet-scheduler = { version = "3.0.0", path = "../scheduler" } -sp-storage = { version = "3.0.0", path = "../../primitives/storage" } -substrate-test-utils = { version = "3.0.0", path = "../../test-utils" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +pallet-scheduler = { version = "4.0.0-dev", path = "../scheduler" } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } +substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" } hex-literal = "0.3.1" [features] diff --git a/frame/election-provider-multi-phase/Cargo.toml b/frame/election-provider-multi-phase/Cargo.toml index cd84ef3778c50..c78fba0a569f0 100644 --- a/frame/election-provider-multi-phase/Cargo.toml +++ b/frame/election-provider-multi-phase/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-election-provider-multi-phase" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -17,19 +17,19 @@ static_assertions = "1.1.0" codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } log = { version = "0.4.14", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-npos-elections = { version = "3.0.0", default-features = false, path = "../../primitives/npos-elections" } -sp-arithmetic = { version = "3.0.0", default-features = false, path = "../../primitives/arithmetic" } -frame-election-provider-support = { version = "3.0.0", default-features = false, path = "../election-provider-support" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" } +sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../../primitives/arithmetic" } +frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../election-provider-support" } # Optional imports for benchmarking -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } rand = { version = "0.7.3", default-features = false, optional = true, features = ["alloc", "small_rng"] } [dev-dependencies] @@ -37,14 +37,14 @@ paste = "1.0.3" parking_lot = "0.11.0" rand = { version = "0.7.3" } hex-literal = "0.3.1" -substrate-test-utils = { version = "3.0.0", path = "../../test-utils" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } -sp-npos-elections = { version = "3.0.0", default-features = false, features = [ "mocks" ], path = "../../primitives/npos-elections" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } -frame-election-provider-support = { version = "3.0.0", features = ["runtime-benchmarks"], path = "../election-provider-support" } -pallet-balances = { version = "3.0.0", path = "../balances" } -frame-benchmarking = { version = "3.1.0", path = "../benchmarking" } +substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +sp-npos-elections = { version = "4.0.0-dev", default-features = false, features = [ "mocks" ], path = "../../primitives/npos-elections" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } +frame-election-provider-support = { version = "4.0.0-dev", features = ["runtime-benchmarks"], path = "../election-provider-support" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" } [features] default = ["std"] diff --git a/frame/election-provider-support/Cargo.toml b/frame/election-provider-support/Cargo.toml index b360cd89eb57b..c0d332315b020 100644 --- a/frame/election-provider-support/Cargo.toml +++ b/frame/election-provider-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-election-provider-support" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-arithmetic = { version = "3.0.0", default-features = false, path = "../../primitives/arithmetic" } -sp-npos-elections = { version = "3.0.0", default-features = false, path = "../../primitives/npos-elections" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../../primitives/arithmetic" } +sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -sp-npos-elections = { version = "3.0.0", path = "../../primitives/npos-elections" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } +sp-npos-elections = { version = "4.0.0-dev", path = "../../primitives/npos-elections" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } [features] default = ["std"] diff --git a/frame/elections-phragmen/Cargo.toml b/frame/elections-phragmen/Cargo.toml index aa2b564f73f24..dc0088c12a570 100644 --- a/frame/elections-phragmen/Cargo.toml +++ b/frame/elections-phragmen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-elections-phragmen" -version = "4.0.0" +version = "5.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,21 +14,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-npos-elections = { version = "3.0.0", default-features = false, path = "../../primitives/npos-elections" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } log = { version = "0.4.14", default-features = false } [dev-dependencies] hex-literal = "0.3.1" -pallet-balances = { version = "3.0.0", path = "../balances" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -substrate-test-utils = { version = "3.0.0", path = "../../test-utils" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" } [features] default = ["std"] diff --git a/frame/elections/Cargo.toml b/frame/elections/Cargo.toml index d4b84f5bb1565..b1f49d778050f 100644 --- a/frame/elections/Cargo.toml +++ b/frame/elections/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-elections" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] hex-literal = "0.3.1" -pallet-balances = { version = "3.0.0", path = "../balances" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/example-offchain-worker/Cargo.toml b/frame/example-offchain-worker/Cargo.toml index ea9fb9699ec64..c6b13d1109511 100644 --- a/frame/example-offchain-worker/Cargo.toml +++ b/frame/example-offchain-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-example-offchain-worker" -version = "2.0.1" +version = "3.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Unlicense" @@ -14,13 +14,13 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../primitives/keystore", optional = true } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore", optional = true } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } lite-json = { version = "0.1", default-features = false } log = { version = "0.4.14", default-features = false } diff --git a/frame/example-parallel/Cargo.toml b/frame/example-parallel/Cargo.toml index 2c593db7ec9dd..ab1b8bfbfae26 100644 --- a/frame/example-parallel/Cargo.toml +++ b/frame/example-parallel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-example-parallel" -version = "2.0.1" +version = "3.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Unlicense" @@ -13,13 +13,13 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-tasks = { version = "3.0.0", default-features = false, path = "../../primitives/tasks" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-tasks = { version = "4.0.0-dev", default-features = false, path = "../../primitives/tasks" } [dev-dependencies] serde = { version = "1.0.101" } diff --git a/frame/example/Cargo.toml b/frame/example/Cargo.toml index 258648b52e5b7..08d7af4ef673f 100644 --- a/frame/example/Cargo.toml +++ b/frame/example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-example" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Unlicense" @@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-balances = { version = "3.0.0", default-features = false, path = "../balances" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../balances" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } log = { version = "0.4.14", default-features = false } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core", default-features = false } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core", default-features = false } [features] default = ["std"] diff --git a/frame/executive/Cargo.toml b/frame/executive/Cargo.toml index a923f926a0960..7b5be2ceec10f 100644 --- a/frame/executive/Cargo.toml +++ b/frame/executive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-executive" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,23 +14,23 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-tracing = { version = "3.0.0", default-features = false, path = "../../primitives/tracing" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-tracing = { version = "4.0.0-dev", default-features = false, path = "../../primitives/tracing" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } [dev-dependencies] hex-literal = "0.3.1" -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-io ={ version = "3.0.0", path = "../../primitives/io" } -pallet-indices = { version = "3.0.0", path = "../indices" } -pallet-balances = { version = "3.0.0", path = "../balances" } -pallet-transaction-payment = { version = "3.0.0", path = "../transaction-payment" } -sp-version = { version = "3.0.0", path = "../../primitives/version" } -sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-io ={ version = "4.0.0-dev", path = "../../primitives/io" } +pallet-indices = { version = "4.0.0-dev", path = "../indices" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +pallet-transaction-payment = { version = "4.0.0-dev", path = "../transaction-payment" } +sp-version = { version = "4.0.0-dev", path = "../../primitives/version" } +sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" } [features] default = ["std"] diff --git a/frame/gilt/Cargo.toml b/frame/gilt/Cargo.toml index 0b40f6ad4d6da..a6e59a2dcd65f 100644 --- a/frame/gilt/Cargo.toml +++ b/frame/gilt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-gilt" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-arithmetic = { version = "3.0.0", default-features = false, path = "../../primitives/arithmetic" } -frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../../primitives/arithmetic" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -sp-io = { version = "3.0.0", path = "../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/grandpa/Cargo.toml b/frame/grandpa/Cargo.toml index 5c3cac8f82182..5154e4ef60779 100644 --- a/frame/grandpa/Cargo.toml +++ b/frame/grandpa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-grandpa" -version = "3.1.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,31 +14,31 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-finality-grandpa = { version = "3.0.0", default-features = false, path = "../../primitives/finality-grandpa" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-session = { version = "3.0.0", default-features = false, path = "../../primitives/session" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-authorship = { version = "3.0.0", default-features = false, path = "../authorship" } -pallet-session = { version = "3.0.0", default-features = false, path = "../session" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../primitives/application-crypto" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-finality-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../primitives/finality-grandpa" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../authorship" } +pallet-session = { version = "4.0.0-dev", default-features = false, path = "../session" } log = { version = "0.4.14", default-features = false } [dev-dependencies] -frame-benchmarking = { version = "3.1.0", path = "../benchmarking" } +frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" } grandpa = { package = "finality-grandpa", version = "0.14.1", features = ["derive-codec"] } sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } -pallet-balances = { version = "3.0.0", path = "../balances" } -pallet-offences = { version = "3.0.0", path = "../offences" } -pallet-staking = { version = "3.0.0", path = "../staking" } -pallet-staking-reward-curve = { version = "3.0.0", path = "../staking/reward-curve" } -pallet-timestamp = { version = "3.0.0", path = "../timestamp" } -frame-election-provider-support = { version = "3.0.0", path = "../election-provider-support" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +pallet-offences = { version = "4.0.0-dev", path = "../offences" } +pallet-staking = { version = "4.0.0-dev", path = "../staking" } +pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../staking/reward-curve" } +pallet-timestamp = { version = "4.0.0-dev", path = "../timestamp" } +frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support" } [features] default = ["std"] diff --git a/frame/identity/Cargo.toml b/frame/identity/Cargo.toml index fce79c56f80a9..a3880e1dc7aa6 100644 --- a/frame/identity/Cargo.toml +++ b/frame/identity/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-identity" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } enumflags2 = { version = "0.6.2" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/im-online/Cargo.toml b/frame/im-online/Cargo.toml index 2e816a6bb8564..1208da3b3f3d5 100644 --- a/frame/im-online/Cargo.toml +++ b/frame/im-online/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-im-online" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,22 +13,22 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" } -pallet-authorship = { version = "3.0.0", default-features = false, path = "../authorship" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../primitives/application-crypto" } +pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../authorship" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } log = { version = "0.4.14", default-features = false } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -pallet-session = { version = "3.0.0", path = "../session" } +pallet-session = { version = "4.0.0-dev", path = "../session" } [features] default = ["std"] diff --git a/frame/indices/Cargo.toml b/frame/indices/Cargo.toml index 4b60ec8bc3ca8..97007e6dcd590 100644 --- a/frame/indices/Cargo.toml +++ b/frame/indices/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-indices" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,17 +15,17 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } sp-keyring = { version = "3.0.0", optional = true, path = "../../primitives/keyring" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -pallet-balances = { version = "3.0.0", path = "../balances" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/lottery/Cargo.toml b/frame/lottery/Cargo.toml index 73de239a4d801..a0368c2e654ce 100644 --- a/frame/lottery/Cargo.toml +++ b/frame/lottery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-lottery" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] frame-support-test = { version = "3.0.0", path = "../support/test" } -pallet-balances = { version = "3.0.0", path = "../balances" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } serde = { version = "1.0.101" } [features] diff --git a/frame/membership/Cargo.toml b/frame/membership/Cargo.toml index 37f9552598cc2..3200d986febee 100644 --- a/frame/membership/Cargo.toml +++ b/frame/membership/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-membership" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } log = { version = "0.4.0", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } -frame-benchmarking = { version = "3.1.0", optional = true, default-features = false, path = "../benchmarking" } +frame-benchmarking = { version = "4.0.0-dev", optional = true, default-features = false, path = "../benchmarking" } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } [features] default = ["std"] diff --git a/frame/merkle-mountain-range/Cargo.toml b/frame/merkle-mountain-range/Cargo.toml index 6ca451c4ab489..03b80a3339e78 100644 --- a/frame/merkle-mountain-range/Cargo.toml +++ b/frame/merkle-mountain-range/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-mmr" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,15 +13,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } mmr-lib = { package = "ckb-merkle-mountain-range", default-features = false, version = "0.3.1" } -pallet-mmr-primitives = { version = "3.0.0", default-features = false, path = "./primitives" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } +pallet-mmr-primitives = { version = "4.0.0-dev", default-features = false, path = "./primitives" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } [dev-dependencies] env_logger = "0.8" diff --git a/frame/merkle-mountain-range/primitives/Cargo.toml b/frame/merkle-mountain-range/primitives/Cargo.toml index 62a6f4ff1cde8..94b56a00640c2 100644 --- a/frame/merkle-mountain-range/primitives/Cargo.toml +++ b/frame/merkle-mountain-range/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-mmr-primitives" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,13 +13,13 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../../system" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" } serde = { version = "1.0.101", optional = true, features = ["derive"] } -sp-api = { version = "3.0.0", default-features = false, path = "../../../primitives/api" } -sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } log = { version = "0.4.14", default-features = false } [dev-dependencies] diff --git a/frame/merkle-mountain-range/rpc/Cargo.toml b/frame/merkle-mountain-range/rpc/Cargo.toml index 4730dbc7ea42e..38c9bbe8aa131 100644 --- a/frame/merkle-mountain-range/rpc/Cargo.toml +++ b/frame/merkle-mountain-range/rpc/Cargo.toml @@ -17,13 +17,13 @@ codec = { package = "parity-scale-codec", version = "2.0.0" } jsonrpc-core = "15.1.0" jsonrpc-core-client = "15.1.0" jsonrpc-derive = "15.1.0" -pallet-mmr-primitives = { version = "3.0.0", path = "../primitives" } +pallet-mmr-primitives = { version = "4.0.0-dev", path = "../primitives" } serde = { version = "1.0.101", features = ["derive"] } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-rpc = { version = "3.0.0", path = "../../../primitives/rpc" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-rpc = { version = "4.0.0-dev", path = "../../../primitives/rpc" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } [dev-dependencies] serde_json = "1.0.41" diff --git a/frame/metadata/Cargo.toml b/frame/metadata/Cargo.toml index cede8a836123d..57ba40efea99f 100644 --- a/frame/metadata/Cargo.toml +++ b/frame/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-metadata" -version = "13.0.0" +version = "14.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,8 +15,8 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } serde = { version = "1.0.101", optional = true, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } [features] default = ["std"] diff --git a/frame/multisig/Cargo.toml b/frame/multisig/Cargo.toml index 7657f64c819fb..f53df24609687 100644 --- a/frame/multisig/Cargo.toml +++ b/frame/multisig/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-multisig" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/nicks/Cargo.toml b/frame/nicks/Cargo.toml index 12db6f905f2ec..02e64491650cd 100644 --- a/frame/nicks/Cargo.toml +++ b/frame/nicks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-nicks" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/node-authorization/Cargo.toml b/frame/node-authorization/Cargo.toml index 6e657758e8e99..35b02747e4006 100644 --- a/frame/node-authorization/Cargo.toml +++ b/frame/node-authorization/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-node-authorization" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,12 +13,12 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } log = { version = "0.4.14", default-features = false } [features] diff --git a/frame/offences/Cargo.toml b/frame/offences/Cargo.toml index a34c5f6bc3a3d..6d8038605cb27 100644 --- a/frame/offences/Cargo.toml +++ b/frame/offences/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-offences" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,19 +13,19 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -pallet-balances = { version = "3.0.0", default-features = false, path = "../balances" } +pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../balances" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } serde = { version = "1.0.101", optional = true } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } log = { version = "0.4.14", default-features = false } [dev-dependencies] -sp-io = { version = "3.0.0", path = "../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } [features] default = ["std"] diff --git a/frame/offences/benchmarking/Cargo.toml b/frame/offences/benchmarking/Cargo.toml index acfb5b1b0dc89..89849d86d7499 100644 --- a/frame/offences/benchmarking/Cargo.toml +++ b/frame/offences/benchmarking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-offences-benchmarking" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,27 +14,27 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../../benchmarking" } -frame-support = { version = "3.0.0", default-features = false, path = "../../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../../system" } -pallet-babe = { version = "3.0.0", default-features = false, path = "../../babe" } -pallet-balances = { version = "3.0.0", default-features = false, path = "../../balances" } -pallet-grandpa = { version = "3.1.0", default-features = false, path = "../../grandpa" } -pallet-im-online = { version = "3.0.0", default-features = false, path = "../../im-online" } -pallet-offences = { version = "3.0.0", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" } -pallet-session = { version = "3.0.0", default-features = false, path = "../../session" } -pallet-staking = { version = "3.0.0", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../../primitives/staking" } -sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" } -frame-election-provider-support = { version = "3.0.0", default-features = false, path = "../../election-provider-support" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" } +pallet-babe = { version = "4.0.0-dev", default-features = false, path = "../../babe" } +pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../balances" } +pallet-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../grandpa" } +pallet-im-online = { version = "4.0.0-dev", default-features = false, path = "../../im-online" } +pallet-offences = { version = "4.0.0-dev", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" } +pallet-session = { version = "4.0.0-dev", default-features = false, path = "../../session" } +pallet-staking = { version = "4.0.0-dev", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } +frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../../election-provider-support" } [dev-dependencies] -pallet-staking-reward-curve = { version = "3.0.0", path = "../../staking/reward-curve" } -pallet-timestamp = { version = "3.0.0", path = "../../timestamp" } +pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../../staking/reward-curve" } +pallet-timestamp = { version = "4.0.0-dev", path = "../../timestamp" } serde = { version = "1.0.101" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-io = { version = "3.0.0", path = "../../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } [features] default = ["std"] diff --git a/frame/proxy/Cargo.toml b/frame/proxy/Cargo.toml index deec8aab72682..7aaaac0189d07 100644 --- a/frame/proxy/Cargo.toml +++ b/frame/proxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-proxy" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,20 +14,20 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -max-encoded-len = { version = "3.0.0", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +max-encoded-len = { version = "4.0.0-dev", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } -pallet-utility = { version = "3.0.0", path = "../utility" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +pallet-utility = { version = "4.0.0-dev", path = "../utility" } [features] default = ["std"] diff --git a/frame/randomness-collective-flip/Cargo.toml b/frame/randomness-collective-flip/Cargo.toml index 5ae350ffcac11..016d56142ecad 100644 --- a/frame/randomness-collective-flip/Cargo.toml +++ b/frame/randomness-collective-flip/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-randomness-collective-flip" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] safe-mix = { version = "1.0", default-features = false } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } [features] default = ["std"] diff --git a/frame/recovery/Cargo.toml b/frame/recovery/Cargo.toml index acfd2f613f839..e38f1fd35aaf0 100644 --- a/frame/recovery/Cargo.toml +++ b/frame/recovery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-recovery" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } enumflags2 = { version = "0.6.2" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/scheduler/Cargo.toml b/frame/scheduler/Cargo.toml index 8fb5d148662b3..93f76b2369f2c 100644 --- a/frame/scheduler/Cargo.toml +++ b/frame/scheduler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-scheduler" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Unlicense" @@ -11,18 +11,18 @@ readme = "README.md" [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } log = { version = "0.4.14", default-features = false } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core", default-features = false } -substrate-test-utils = { version = "3.0.0", path = "../../test-utils" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core", default-features = false } +substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" } [features] default = ["std"] diff --git a/frame/scored-pool/Cargo.toml b/frame/scored-pool/Cargo.toml index 0b2f4a8198833..dc85e8d2ca811 100644 --- a/frame/scored-pool/Cargo.toml +++ b/frame/scored-pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-scored-pool" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -pallet-balances = { version = "3.0.0", path = "../balances" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } [features] default = ["std"] diff --git a/frame/session/Cargo.toml b/frame/session/Cargo.toml index efe7bc133fb4d..40f1e58c92835 100644 --- a/frame/session/Cargo.toml +++ b/frame/session/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-session" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,21 +14,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-session = { version = "3.0.0", default-features = false, path = "../../primitives/session" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-timestamp = { version = "3.0.0", default-features = false, path = "../timestamp" } -sp-trie = { version = "3.0.0", optional = true, default-features = false, path = "../../primitives/trie" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../timestamp" } +sp-trie = { version = "4.0.0-dev", optional = true, default-features = false, path = "../../primitives/trie" } log = { version = "0.4.0", default-features = false } impl-trait-for-tuples = "0.2.1" [dev-dependencies] -sp-application-crypto = { version = "3.0.0", path = "../../primitives/application-crypto" } +sp-application-crypto = { version = "4.0.0-dev", path = "../../primitives/application-crypto" } lazy_static = "1.4.0" [features] diff --git a/frame/session/benchmarking/Cargo.toml b/frame/session/benchmarking/Cargo.toml index 9754c16f37560..58f68899d18f7 100644 --- a/frame/session/benchmarking/Cargo.toml +++ b/frame/session/benchmarking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-session-benchmarking" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,25 +13,25 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-session = { version = "3.0.0", default-features = false, path = "../../../primitives/session" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" } -frame-system = { version = "3.0.0", default-features = false, path = "../../system" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../../benchmarking" } -frame-support = { version = "3.0.0", default-features = false, path = "../../support" } -pallet-staking = { version = "3.0.0", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" } -pallet-session = { version = "3.0.0", default-features = false, path = "../../session" } +sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" } +pallet-staking = { version = "4.0.0-dev", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" } +pallet-session = { version = "4.0.0-dev", default-features = false, path = "../../session" } rand = { version = "0.7.2", default-features = false } [dev-dependencies] serde = { version = "1.0.101" } codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -pallet-staking-reward-curve = { version = "3.0.0", path = "../../staking/reward-curve" } -sp-io ={ version = "3.0.0", path = "../../../primitives/io" } -pallet-timestamp = { version = "3.0.0", path = "../../timestamp" } -pallet-balances = { version = "3.0.0", path = "../../balances" } -frame-election-provider-support = { version = "3.0.0", path = "../../election-provider-support" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../../staking/reward-curve" } +sp-io ={ version = "4.0.0-dev", path = "../../../primitives/io" } +pallet-timestamp = { version = "4.0.0-dev", path = "../../timestamp" } +pallet-balances = { version = "4.0.0-dev", path = "../../balances" } +frame-election-provider-support = { version = "4.0.0-dev", path = "../../election-provider-support" } [features] default = ["std"] diff --git a/frame/society/Cargo.toml b/frame/society/Cargo.toml index f9c2990061985..b058733b3ce40 100644 --- a/frame/society/Cargo.toml +++ b/frame/society/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-society" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } rand_chacha = { version = "0.2", default-features = false } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-io ={ version = "3.0.0", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-io ={ version = "4.0.0-dev", path = "../../primitives/io" } frame-support-test = { version = "3.0.0", path = "../support/test" } -pallet-balances = { version = "3.0.0", path = "../balances" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/staking/Cargo.toml b/frame/staking/Cargo.toml index 908e361e667e3..af5b5a976d667 100644 --- a/frame/staking/Cargo.toml +++ b/frame/staking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-staking" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -16,33 +16,33 @@ targets = ["x86_64-unknown-linux-gnu"] static_assertions = "1.1.0" serde = { version = "1.0.101", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io ={ version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-session = { version = "3.0.0", default-features = false, features = ["historical"], path = "../session" } -pallet-authorship = { version = "3.0.0", default-features = false, path = "../authorship" } -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" } -frame-election-provider-support = { version = "3.0.0", default-features = false, path = "../election-provider-support" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io ={ version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-session = { version = "4.0.0-dev", default-features = false, features = ["historical"], path = "../session" } +pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../authorship" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../primitives/application-crypto" } +frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../election-provider-support" } log = { version = "0.4.14", default-features = false } paste = "1.0" # Optional imports for benchmarking -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } rand_chacha = { version = "0.2", default-features = false, optional = true } [dev-dependencies] -sp-storage = { version = "3.0.0", path = "../../primitives/storage" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } -pallet-timestamp = { version = "3.0.0", path = "../timestamp" } -pallet-staking-reward-curve = { version = "3.0.0", path = "../staking/reward-curve" } -substrate-test-utils = { version = "3.0.0", path = "../../test-utils" } -frame-benchmarking = { version = "3.1.0", path = "../benchmarking" } -frame-election-provider-support = { version = "3.0.0", features = ["runtime-benchmarks"], path = "../election-provider-support" } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +pallet-timestamp = { version = "4.0.0-dev", path = "../timestamp" } +pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../staking/reward-curve" } +substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" } +frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" } +frame-election-provider-support = { version = "4.0.0-dev", features = ["runtime-benchmarks"], path = "../election-provider-support" } rand_chacha = { version = "0.2" } parking_lot = "0.11.1" hex = "0.4" diff --git a/frame/staking/reward-curve/Cargo.toml b/frame/staking/reward-curve/Cargo.toml index fe5e0f4a947a2..3b4b9db452ba3 100644 --- a/frame/staking/reward-curve/Cargo.toml +++ b/frame/staking/reward-curve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-staking-reward-curve" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -21,4 +21,4 @@ proc-macro2 = "1.0.6" proc-macro-crate = "1.0.0" [dev-dependencies] -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } diff --git a/frame/staking/reward-fn/Cargo.toml b/frame/staking/reward-fn/Cargo.toml index 15b17a5e716c3..076e05bf2a61e 100644 --- a/frame/staking/reward-fn/Cargo.toml +++ b/frame/staking/reward-fn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-staking-reward-fn" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"] [lib] [dependencies] -sp-arithmetic = { version = "3.0.0", default-features = false, path = "../../../primitives/arithmetic" } +sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/arithmetic" } log = { version = "0.4.14", default-features = false } [features] diff --git a/frame/sudo/Cargo.toml b/frame/sudo/Cargo.toml index a73dfaeb1d981..f19afd2d61a0b 100644 --- a/frame/sudo/Cargo.toml +++ b/frame/sudo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-sudo" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } [features] default = ["std"] diff --git a/frame/support/Cargo.toml b/frame/support/Cargo.toml index 0c9aacaf307b1..f2eec3a64c225 100644 --- a/frame/support/Cargo.toml +++ b/frame/support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-support" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,20 +15,20 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.1.0", default-features = false, features = ["derive"] } -frame-metadata = { version = "13.0.0", default-features = false, path = "../metadata" } -max-encoded-len = { version = "3.0.0", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-tracing = { version = "3.0.0", default-features = false, path = "../../primitives/tracing" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-arithmetic = { version = "3.0.0", default-features = false, path = "../../primitives/arithmetic" } -sp-inherents = { version = "3.0.0", default-features = false, path = "../../primitives/inherents" } -sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" } -frame-support-procedural = { version = "3.0.0", default-features = false, path = "./procedural" } +frame-metadata = { version = "14.0.0-dev", default-features = false, path = "../metadata" } +max-encoded-len = { version = "4.0.0-dev", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-tracing = { version = "4.0.0-dev", default-features = false, path = "../../primitives/tracing" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../../primitives/arithmetic" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" } +frame-support-procedural = { version = "4.0.0-dev", default-features = false, path = "./procedural" } paste = "1.0" once_cell = { version = "1", default-features = false, optional = true } -sp-state-machine = { version = "0.9.0", optional = true, path = "../../primitives/state-machine" } +sp-state-machine = { version = "0.10.0-dev", optional = true, path = "../../primitives/state-machine" } bitflags = "1.2" impl-trait-for-tuples = "0.2.1" smallvec = "1.4.1" @@ -36,7 +36,7 @@ log = { version = "0.4.14", default-features = false } [dev-dependencies] pretty_assertions = "0.6.1" -frame-system = { version = "3.0.0", path = "../system" } +frame-system = { version = "4.0.0-dev", path = "../system" } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } [features] diff --git a/frame/support/procedural/Cargo.toml b/frame/support/procedural/Cargo.toml index 4a00a24e3849d..ba71a7d12c62f 100644 --- a/frame/support/procedural/Cargo.toml +++ b/frame/support/procedural/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-support-procedural" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] proc-macro = true [dependencies] -frame-support-procedural-tools = { version = "3.0.0", path = "./tools" } +frame-support-procedural-tools = { version = "4.0.0-dev", path = "./tools" } proc-macro2 = "1.0.6" quote = "1.0.3" Inflector = "0.11.4" diff --git a/frame/support/procedural/tools/Cargo.toml b/frame/support/procedural/tools/Cargo.toml index 316aae0a17a42..2ff49f96e4da1 100644 --- a/frame/support/procedural/tools/Cargo.toml +++ b/frame/support/procedural/tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-support-procedural-tools" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/frame/support/test/Cargo.toml b/frame/support/test/Cargo.toml index ce5c8ea7de1fb..001c88ba48fba 100644 --- a/frame/support/test/Cargo.toml +++ b/frame/support/test/Cargo.toml @@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-io = { version = "3.0.0", path = "../../../primitives/io", default-features = false } -sp-state-machine = { version = "0.9.0", optional = true, path = "../../../primitives/state-machine" } -frame-support = { version = "3.0.0", default-features = false, path = "../" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } -sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" } -sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" } +sp-io = { version = "4.0.0-dev", path = "../../../primitives/io", default-features = false } +sp-state-machine = { version = "0.10.0-dev", optional = true, path = "../../../primitives/state-machine" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } trybuild = "1.0.42" pretty_assertions = "0.6.1" rustversion = "1.0.0" -frame-metadata = { version = "13.0.0", default-features = false, path = "../../metadata" } -frame-system = { version = "3.0.0", default-features = false, path = "../../system" } +frame-metadata = { version = "14.0.0-dev", default-features = false, path = "../../metadata" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" } [features] default = ["std"] diff --git a/frame/system/Cargo.toml b/frame/system/Cargo.toml index 4306dbd644815..61e35c552a3ed 100644 --- a/frame/system/Cargo.toml +++ b/frame/system/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-system" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,18 +15,18 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", path = "../../primitives/io", default-features = false } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-version = { version = "3.0.0", default-features = false, path = "../../primitives/version" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io", default-features = false } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-version = { version = "4.0.0-dev", default-features = false, path = "../../primitives/version" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } impl-trait-for-tuples = "0.2.1" log = { version = "0.4.14", default-features = false } [dev-dependencies] criterion = "0.3.3" -sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" } +sp-externalities = { version = "0.10.0-dev", path = "../../primitives/externalities" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } [features] diff --git a/frame/system/benchmarking/Cargo.toml b/frame/system/benchmarking/Cargo.toml index 1a9317c69bf43..b6a5447199b1c 100644 --- a/frame/system/benchmarking/Cargo.toml +++ b/frame/system/benchmarking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-system-benchmarking" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../../benchmarking" } -frame-system = { version = "3.0.0", default-features = false, path = "../../system" } -frame-support = { version = "3.0.0", default-features = false, path = "../../support" } -sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" } [dev-dependencies] serde = { version = "1.0.101" } -sp-io ={ version = "3.0.0", path = "../../../primitives/io" } +sp-io ={ version = "4.0.0-dev", path = "../../../primitives/io" } [features] default = ["std"] diff --git a/frame/system/rpc/runtime-api/Cargo.toml b/frame/system/rpc/runtime-api/Cargo.toml index 56619d59ddcad..15fd710a148bb 100644 --- a/frame/system/rpc/runtime-api/Cargo.toml +++ b/frame/system/rpc/runtime-api/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-api = { version = "3.0.0", default-features = false, path = "../../../../primitives/api" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/api" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } [features] diff --git a/frame/timestamp/Cargo.toml b/frame/timestamp/Cargo.toml index 05ea8e40c6627..534315c0d1b04 100644 --- a/frame/timestamp/Cargo.toml +++ b/frame/timestamp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-timestamp" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -16,20 +16,20 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io", optional = true } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-inherents = { version = "3.0.0", default-features = false, path = "../../primitives/inherents" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-timestamp = { version = "3.0.0", default-features = false, path = "../../primitives/timestamp" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io", optional = true } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../primitives/timestamp" } impl-trait-for-tuples = "0.2.1" log = { version = "0.4.14", default-features = false } [dev-dependencies] -sp-io ={ version = "3.0.0", path = "../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } +sp-io ={ version = "4.0.0-dev", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } [features] default = ["std"] diff --git a/frame/tips/Cargo.toml b/frame/tips/Cargo.toml index a16c9b91327ec..32deca37e7415 100644 --- a/frame/tips/Cargo.toml +++ b/frame/tips/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-tips" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-treasury = { version = "3.0.0", default-features = false, path = "../treasury" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../treasury" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -sp-io ={ version = "3.0.0", path = "../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-storage = { version = "3.0.0", path = "../../primitives/storage" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-io ={ version = "4.0.0-dev", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/transaction-payment/Cargo.toml b/frame/transaction-payment/Cargo.toml index 2a7fbe503efaf..e885bcbf74163 100644 --- a/frame/transaction-payment/Cargo.toml +++ b/frame/transaction-payment/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-transaction-payment" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,18 +15,18 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } serde = { version = "1.0.101", optional = true } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } smallvec = "1.4.1" -sp-io = { version = "3.0.0", path = "../../primitives/io", default-features = false } -sp-core = { version = "3.0.0", path = "../../primitives/core", default-features = false } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io", default-features = false } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core", default-features = false } [dev-dependencies] serde_json = "1.0.41" -pallet-balances = { version = "3.0.0", path = "../balances" } -sp-storage = { version = "3.0.0", path = "../../primitives/storage" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } [features] default = ["std"] diff --git a/frame/transaction-payment/rpc/Cargo.toml b/frame/transaction-payment/rpc/Cargo.toml index 102f91dcc2c08..3b86c804e792e 100644 --- a/frame/transaction-payment/rpc/Cargo.toml +++ b/frame/transaction-payment/rpc/Cargo.toml @@ -17,9 +17,9 @@ codec = { package = "parity-scale-codec", version = "2.0.0" } jsonrpc-core = "15.1.0" jsonrpc-core-client = "15.1.0" jsonrpc-derive = "15.1.0" -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-rpc = { version = "3.0.0", path = "../../../primitives/rpc" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-rpc = { version = "4.0.0-dev", path = "../../../primitives/rpc" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", path = "./runtime-api" } diff --git a/frame/transaction-payment/rpc/runtime-api/Cargo.toml b/frame/transaction-payment/rpc/runtime-api/Cargo.toml index fede9f9dd0267..74db77a480463 100644 --- a/frame/transaction-payment/rpc/runtime-api/Cargo.toml +++ b/frame/transaction-payment/rpc/runtime-api/Cargo.toml @@ -13,10 +13,10 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-api = { version = "3.0.0", default-features = false, path = "../../../../primitives/api" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/api" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../../../primitives/runtime" } -pallet-transaction-payment = { version = "3.0.0", default-features = false, path = "../../../transaction-payment" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/runtime" } +pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../transaction-payment" } [features] default = ["std"] diff --git a/frame/transaction-storage/Cargo.toml b/frame/transaction-storage/Cargo.toml index 8892e234d436f..4504b9a07e284 100644 --- a/frame/transaction-storage/Cargo.toml +++ b/frame/transaction-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-transaction-storage" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Unlicense" @@ -16,20 +16,20 @@ targets = ["x86_64-unknown-linux-gnu"] serde = { version = "1.0.101", optional = true } hex-literal = { version = "0.3.1", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-balances = { version = "3.0.0", default-features = false, path = "../balances" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -sp-inherents = { version = "3.0.0", default-features = false, path = "../../primitives/inherents" } -sp-transaction-storage-proof = { version = "3.0.0", default-features = false, path = "../../primitives/transaction-storage-proof" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../balances" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" } +sp-transaction-storage-proof = { version = "4.0.0-dev", default-features = false, path = "../../primitives/transaction-storage-proof" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] frame-support-test = { version = "3.0.0", path = "../support/test" } -sp-transaction-storage-proof = { version = "3.0.0", default-features = true, path = "../../primitives/transaction-storage-proof" } -sp-core = { version = "3.0.0", path = "../../primitives/core", default-features = false } +sp-transaction-storage-proof = { version = "4.0.0-dev", default-features = true, path = "../../primitives/transaction-storage-proof" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core", default-features = false } [features] default = ["std"] diff --git a/frame/treasury/Cargo.toml b/frame/treasury/Cargo.toml index da0ffcb725c9b..339ce196071a7 100644 --- a/frame/treasury/Cargo.toml +++ b/frame/treasury/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-treasury" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -pallet-balances = { version = "3.0.0", default-features = false, path = "../balances" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../balances" } impl-trait-for-tuples = "0.2.1" -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -sp-io ={ version = "3.0.0", path = "../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-storage = { version = "3.0.0", path = "../../primitives/storage" } +sp-io ={ version = "4.0.0-dev", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } [features] default = ["std"] diff --git a/frame/try-runtime/Cargo.toml b/frame/try-runtime/Cargo.toml index 9c1919d380b82..b9eac961cf226 100644 --- a/frame/try-runtime/Cargo.toml +++ b/frame/try-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-try-runtime" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,11 +15,11 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-api = { version = "3.0.0", path = "../../primitives/api", default-features = false } -sp-std = { version = "3.0.0", path = "../../primitives/std" , default-features = false } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" , default-features = false } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api", default-features = false } +sp-std = { version = "4.0.0-dev", path = "../../primitives/std" , default-features = false } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" , default-features = false } -frame-support = { version = "3.0.0", path = "../support", default-features = false } +frame-support = { version = "4.0.0-dev", path = "../support", default-features = false } [features] default = [ "std" ] diff --git a/frame/uniques/Cargo.toml b/frame/uniques/Cargo.toml index f007744dc64a2..53069b5401df4 100644 --- a/frame/uniques/Cargo.toml +++ b/frame/uniques/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-uniques" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -sp-std = { version = "3.0.0", path = "../../primitives/std" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-std = { version = "4.0.0-dev", path = "../../primitives/std" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/utility/Cargo.toml b/frame/utility/Cargo.toml index 1eb92df4ecaa6..8f9e18c610fb6 100644 --- a/frame/utility/Cargo.toml +++ b/frame/utility/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-utility" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } [features] default = ["std"] diff --git a/frame/vesting/Cargo.toml b/frame/vesting/Cargo.toml index 25890fea038de..f035bcf7d0072 100644 --- a/frame/vesting/Cargo.toml +++ b/frame/vesting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-vesting" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,17 +15,17 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } enumflags2 = { version = "0.6.2" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -frame-support = { version = "3.0.0", default-features = false, path = "../support" } -frame-system = { version = "3.0.0", default-features = false, path = "../system" } -frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } +frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } [dev-dependencies] -sp-io = { version = "3.0.0", path = "../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -pallet-balances = { version = "3.0.0", path = "../balances" } -sp-storage = { version = "3.0.0", path = "../../primitives/storage" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +pallet-balances = { version = "4.0.0-dev", path = "../balances" } +sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } hex-literal = "0.3.1" [features] diff --git a/max-encoded-len/Cargo.toml b/max-encoded-len/Cargo.toml index 994a3c6a5e132..ac99927df0b18 100644 --- a/max-encoded-len/Cargo.toml +++ b/max-encoded-len/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "max-encoded-len" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -12,12 +12,12 @@ description = "Trait MaxEncodedLen bounds the max encoded length of an item." [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } impl-trait-for-tuples = "0.2.1" -max-encoded-len-derive = { package = "max-encoded-len-derive", version = "3.0.0", path = "derive", default-features = false, optional = true } +max-encoded-len-derive = { package = "max-encoded-len-derive", version = "4.0.0-dev", path = "derive", default-features = false, optional = true } primitive-types = { version = "0.9.0", default-features = false, features = ["codec"] } [dev-dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = [ "derive" ] } -frame-support = { path = "../frame/support" } +frame-support = { path = "../frame/support" , version = "4.0.0-dev"} rustversion = "1.0.4" trybuild = "1.0.42" diff --git a/max-encoded-len/derive/Cargo.toml b/max-encoded-len/derive/Cargo.toml index 7dec2bd25f7fe..17ea5b4068853 100644 --- a/max-encoded-len/derive/Cargo.toml +++ b/max-encoded-len/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "max-encoded-len-derive" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/primitives/allocator/Cargo.toml b/primitives/allocator/Cargo.toml index 1c38cbbb9c26e..a90793c08be23 100644 --- a/primitives/allocator/Cargo.toml +++ b/primitives/allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-allocator" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,9 +14,9 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-std = { version = "3.0.0", path = "../std", default-features = false } -sp-core = { version = "3.0.0", path = "../core", default-features = false } -sp-wasm-interface = { version = "3.0.0", path = "../wasm-interface", default-features = false } +sp-std = { version = "4.0.0-dev", path = "../std", default-features = false } +sp-core = { version = "4.0.0-dev", path = "../core", default-features = false } +sp-wasm-interface = { version = "4.0.0-dev", path = "../wasm-interface", default-features = false } log = { version = "0.4.11", optional = true } thiserror = { version = "1.0.21", optional = true } diff --git a/primitives/api/Cargo.toml b/primitives/api/Cargo.toml index c284d1f4791e8..07f7e100e168c 100644 --- a/primitives/api/Cargo.toml +++ b/primitives/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-api" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,12 +14,12 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-api-proc-macro = { version = "3.0.0", path = "proc-macro" } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } -sp-version = { version = "3.0.0", default-features = false, path = "../version" } -sp-state-machine = { version = "0.9.0", optional = true, path = "../state-machine" } +sp-api-proc-macro = { version = "4.0.0-dev", path = "proc-macro" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } +sp-version = { version = "4.0.0-dev", default-features = false, path = "../version" } +sp-state-machine = { version = "0.10.0-dev", optional = true, path = "../state-machine" } hash-db = { version = "0.15.2", optional = true } thiserror = { version = "1.0.21", optional = true } diff --git a/primitives/api/proc-macro/Cargo.toml b/primitives/api/proc-macro/Cargo.toml index d07285fe215a9..2c47554aef42f 100644 --- a/primitives/api/proc-macro/Cargo.toml +++ b/primitives/api/proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-api-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/primitives/api/test/Cargo.toml b/primitives/api/test/Cargo.toml index 5866d44bd479b..bc9b1feed3217 100644 --- a/primitives/api/test/Cargo.toml +++ b/primitives/api/test/Cargo.toml @@ -12,23 +12,23 @@ repository = "https://github.com/paritytech/substrate/" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-api = { version = "3.0.0", path = "../" } +sp-api = { version = "4.0.0-dev", path = "../" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } -sp-version = { version = "3.0.0", path = "../../version" } -sp-tracing = { version = "3.0.0", path = "../../tracing" } -sp-runtime = { version = "3.0.0", path = "../../runtime" } -sp-blockchain = { version = "3.0.0", path = "../../blockchain" } -sp-consensus = { version = "0.9.0", path = "../../consensus/common" } -sc-block-builder = { version = "0.9.0", path = "../../../client/block-builder" } +sp-version = { version = "4.0.0-dev", path = "../../version" } +sp-tracing = { version = "4.0.0-dev", path = "../../tracing" } +sp-runtime = { version = "4.0.0-dev", path = "../../runtime" } +sp-blockchain = { version = "4.0.0-dev", path = "../../blockchain" } +sp-consensus = { version = "0.10.0-dev", path = "../../consensus/common" } +sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" } codec = { package = "parity-scale-codec", version = "2.0.0" } -sp-state-machine = { version = "0.9.0", path = "../../state-machine" } +sp-state-machine = { version = "0.10.0-dev", path = "../../state-machine" } trybuild = "1.0.42" rustversion = "1.0.0" [dev-dependencies] criterion = "0.3.0" substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } -sp-core = { version = "3.0.0", path = "../../core" } +sp-core = { version = "4.0.0-dev", path = "../../core" } log = "0.4.14" [[bench]] diff --git a/primitives/application-crypto/Cargo.toml b/primitives/application-crypto/Cargo.toml index 7f3e48ae48255..3772aa5389140 100644 --- a/primitives/application-crypto/Cargo.toml +++ b/primitives/application-crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-application-crypto" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" description = "Provides facilities for generating application specific crypto wrapper types." @@ -15,12 +15,12 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-core = { version = "3.0.0", default-features = false, path = "../core" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } serde = { version = "1.0.101", optional = true, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-io = { version = "3.0.0", default-features = false, path = "../io" } -max-encoded-len = { version = "3.0.0", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../io" } +max-encoded-len = { version = "4.0.0-dev", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } [features] default = [ "std" ] diff --git a/primitives/application-crypto/test/Cargo.toml b/primitives/application-crypto/test/Cargo.toml index 92a2ea8f3b8c8..468bfee3cc010 100644 --- a/primitives/application-crypto/test/Cargo.toml +++ b/primitives/application-crypto/test/Cargo.toml @@ -13,9 +13,9 @@ repository = "https://github.com/paritytech/substrate/" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-core = { version = "3.0.0", default-features = false, path = "../../core" } -sp-keystore = { version = "0.9.0", path = "../../keystore", default-features = false } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" } +sp-keystore = { version = "0.10.0-dev", path = "../../keystore", default-features = false } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } -sp-runtime = { version = "3.0.0", path = "../../runtime" } -sp-api = { version = "3.0.0", path = "../../api" } -sp-application-crypto = { version = "3.0.0", path = "../" } +sp-runtime = { version = "4.0.0-dev", path = "../../runtime" } +sp-api = { version = "4.0.0-dev", path = "../../api" } +sp-application-crypto = { version = "4.0.0-dev", path = "../" } diff --git a/primitives/arithmetic/Cargo.toml b/primitives/arithmetic/Cargo.toml index 3c3b5a35c164a..7be71db2b43e3 100644 --- a/primitives/arithmetic/Cargo.toml +++ b/primitives/arithmetic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-arithmetic" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -19,7 +19,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features = integer-sqrt = "0.1.2" static_assertions = "1.1.0" num-traits = { version = "0.2.8", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } serde = { version = "1.0.101", optional = true, features = ["derive"] } sp-debug-derive = { version = "3.0.0", default-features = false, path = "../debug-derive" } diff --git a/primitives/arithmetic/fuzzer/Cargo.toml b/primitives/arithmetic/fuzzer/Cargo.toml index 2666dde9016a8..9c23b712391ce 100644 --- a/primitives/arithmetic/fuzzer/Cargo.toml +++ b/primitives/arithmetic/fuzzer/Cargo.toml @@ -14,7 +14,7 @@ publish = false targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-arithmetic = { version = "3.0.0", path = ".." } +sp-arithmetic = { version = "4.0.0-dev", path = ".." } honggfuzz = "0.5.49" primitive-types = "0.9.0" num-bigint = "0.2" diff --git a/primitives/authority-discovery/Cargo.toml b/primitives/authority-discovery/Cargo.toml index a32b13ca728d8..962df789490d9 100644 --- a/primitives/authority-discovery/Cargo.toml +++ b/primitives/authority-discovery/Cargo.toml @@ -13,11 +13,11 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../application-crypto" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../application-crypto" } codec = { package = "parity-scale-codec", default-features = false, version = "2.0.0" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-api = { version = "3.0.0", default-features = false, path = "../api" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } [features] default = ["std"] diff --git a/primitives/authorship/Cargo.toml b/primitives/authorship/Cargo.toml index a9428f8422f56..f6021bd7a2ab2 100644 --- a/primitives/authorship/Cargo.toml +++ b/primitives/authorship/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-authorship" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] description = "Authorship primitives" edition = "2018" @@ -13,9 +13,9 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-inherents = { version = "3.0.0", default-features = false, path = "../inherents" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } async-trait = { version = "0.1.48", optional = true } diff --git a/primitives/block-builder/Cargo.toml b/primitives/block-builder/Cargo.toml index 6081e872786ef..d7fa0f2ef85cf 100644 --- a/primitives/block-builder/Cargo.toml +++ b/primitives/block-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-block-builder" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,11 +13,11 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } -sp-api = { version = "3.0.0", default-features = false, path = "../api" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-inherents = { version = "3.0.0", default-features = false, path = "../inherents" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" } [features] default = [ "std" ] diff --git a/primitives/blockchain/Cargo.toml b/primitives/blockchain/Cargo.toml index c37686c0df73c..f3bbde497225a 100644 --- a/primitives/blockchain/Cargo.toml +++ b/primitives/blockchain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-blockchain" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -20,8 +20,8 @@ parking_lot = "0.11.1" thiserror = "1.0.21" futures = "0.3.9" codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-consensus = { version = "0.9.0", path = "../consensus/common" } -sp-runtime = { version = "3.0.0", path = "../runtime" } -sp-state-machine = { version = "0.9.0", path = "../state-machine" } -sp-database = { version = "3.0.0", path = "../database" } -sp-api = { version = "3.0.0", path = "../api" } +sp-consensus = { version = "0.10.0-dev", path = "../consensus/common" } +sp-runtime = { version = "4.0.0-dev", path = "../runtime" } +sp-state-machine = { version = "0.10.0-dev", path = "../state-machine" } +sp-database = { version = "4.0.0-dev", path = "../database" } +sp-api = { version = "4.0.0-dev", path = "../api" } diff --git a/primitives/consensus/aura/Cargo.toml b/primitives/consensus/aura/Cargo.toml index 2ae4259a21e50..69da8d9f2c531 100644 --- a/primitives/consensus/aura/Cargo.toml +++ b/primitives/consensus/aura/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-consensus-aura" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Primitives for Aura consensus" edition = "2018" @@ -13,15 +13,15 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../application-crypto" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../application-crypto" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../../std" } -sp-api = { version = "3.0.0", default-features = false, path = "../../api" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" } -sp-inherents = { version = "3.0.0", default-features = false, path = "../../inherents" } -sp-timestamp = { version = "3.0.0", default-features = false, path = "../../timestamp" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" } +sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../timestamp" } sp-consensus-slots = { version = "0.9.0", default-features = false, path = "../slots" } -sp-consensus = { version = "0.9.0", path = "../common", optional = true } +sp-consensus = { version = "0.10.0-dev", path = "../common", optional = true } async-trait = { version = "0.1.48", optional = true } [features] diff --git a/primitives/consensus/babe/Cargo.toml b/primitives/consensus/babe/Cargo.toml index 0fc09e11032b0..7fda2f8013654 100644 --- a/primitives/consensus/babe/Cargo.toml +++ b/primitives/consensus/babe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-consensus-babe" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Primitives for BABE consensus" edition = "2018" @@ -13,19 +13,19 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../application-crypto" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../application-crypto" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } merlin = { version = "2.0", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../../std" } -sp-api = { version = "3.0.0", default-features = false, path = "../../api" } -sp-consensus = { version = "0.9.0", optional = true, path = "../common" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" } +sp-consensus = { version = "0.10.0-dev", optional = true, path = "../common" } sp-consensus-slots = { version = "0.9.0", default-features = false, path = "../slots" } sp-consensus-vrf = { version = "0.9.0", path = "../vrf", default-features = false } -sp-core = { version = "3.0.0", default-features = false, path = "../../core" } -sp-inherents = { version = "3.0.0", default-features = false, path = "../../inherents" } -sp-keystore = { version = "0.9.0", default-features = false, path = "../../keystore", optional = true } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" } -sp-timestamp = { version = "3.0.0", path = "../../timestamp", optional = true } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" } +sp-keystore = { version = "0.10.0-dev", default-features = false, path = "../../keystore", optional = true } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" } +sp-timestamp = { version = "4.0.0-dev", path = "../../timestamp", optional = true } serde = { version = "1.0.123", features = ["derive"], optional = true } async-trait = { version = "0.1.48", optional = true } diff --git a/primitives/consensus/common/Cargo.toml b/primitives/consensus/common/Cargo.toml index 038a28ddab351..07cc36e2e31e4 100644 --- a/primitives/consensus/common/Cargo.toml +++ b/primitives/consensus/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-consensus" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -18,17 +18,17 @@ targets = ["x86_64-unknown-linux-gnu"] thiserror = "1.0.21" libp2p = { version = "0.37.1", default-features = false } log = "0.4.8" -sp-core = { path= "../../core", version = "3.0.0"} -sp-inherents = { version = "3.0.0", path = "../../inherents" } -sp-state-machine = { version = "0.9.0", path = "../../state-machine" } +sp-core = { path= "../../core", version = "4.0.0-dev"} +sp-inherents = { version = "4.0.0-dev", path = "../../inherents" } +sp-state-machine = { version = "0.10.0-dev", path = "../../state-machine" } futures = { version = "0.3.1", features = ["thread-pool"] } futures-timer = "3.0.1" -sp-std = { version = "3.0.0", path = "../../std" } -sp-version = { version = "3.0.0", path = "../../version" } -sp-runtime = { version = "3.0.0", path = "../../runtime" } -sp-utils = { version = "3.0.0", path = "../../utils" } -sp-trie = { version = "3.0.0", path = "../../trie" } -sp-api = { version = "3.0.0", path = "../../api" } +sp-std = { version = "4.0.0-dev", path = "../../std" } +sp-version = { version = "4.0.0-dev", path = "../../version" } +sp-runtime = { version = "4.0.0-dev", path = "../../runtime" } +sp-utils = { version = "4.0.0-dev", path = "../../utils" } +sp-trie = { version = "4.0.0-dev", path = "../../trie" } +sp-api = { version = "4.0.0-dev", path = "../../api" } codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] } parking_lot = "0.11.1" serde = { version = "1.0", features = ["derive"] } diff --git a/primitives/consensus/pow/Cargo.toml b/primitives/consensus/pow/Cargo.toml index 850f0efe47ed3..26d9af7512d2f 100644 --- a/primitives/consensus/pow/Cargo.toml +++ b/primitives/consensus/pow/Cargo.toml @@ -13,10 +13,10 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-api = { version = "3.0.0", default-features = false, path = "../../api" } -sp-std = { version = "3.0.0", default-features = false, path = "../../std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" } -sp-core = { version = "3.0.0", default-features = false, path = "../../core" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } [features] diff --git a/primitives/consensus/slots/Cargo.toml b/primitives/consensus/slots/Cargo.toml index 46dbaca1a6ad4..9538cc7c5dcba 100644 --- a/primitives/consensus/slots/Cargo.toml +++ b/primitives/consensus/slots/Cargo.toml @@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" } -sp-arithmetic = { version = "3.0.0", default-features = false, path = "../../arithmetic" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" } +sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../../arithmetic" } [features] default = ["std"] diff --git a/primitives/consensus/vrf/Cargo.toml b/primitives/consensus/vrf/Cargo.toml index 15a9318cd4461..7512fe1d375ec 100644 --- a/primitives/consensus/vrf/Cargo.toml +++ b/primitives/consensus/vrf/Cargo.toml @@ -15,9 +15,9 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { version = "2.0.0", package = "parity-scale-codec", default-features = false } schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backend"], default-features = false } -sp-std = { version = "3.0.0", path = "../../std", default-features = false } -sp-core = { version = "3.0.0", path = "../../core", default-features = false } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" } +sp-std = { version = "4.0.0-dev", path = "../../std", default-features = false } +sp-core = { version = "4.0.0-dev", path = "../../core", default-features = false } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" } [features] default = ["std"] diff --git a/primitives/core/Cargo.toml b/primitives/core/Cargo.toml index 0c724d61ae0cc..490d03bdd82da 100644 --- a/primitives/core/Cargo.toml +++ b/primitives/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-core" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,7 +13,7 @@ documentation = "https://docs.rs/sp-core" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } log = { version = "0.4.11", default-features = false } serde = { version = "1.0.101", optional = true, features = ["derive"] } @@ -34,13 +34,13 @@ secrecy = { version = "0.7.0", default-features = false } lazy_static = { version = "1.4.0", default-features = false, optional = true } parking_lot = { version = "0.11.1", optional = true } sp-debug-derive = { version = "3.0.0", path = "../debug-derive" } -sp-externalities = { version = "0.9.0", optional = true, path = "../externalities" } -sp-storage = { version = "3.0.0", default-features = false, path = "../storage" } +sp-externalities = { version = "0.10.0-dev", optional = true, path = "../externalities" } +sp-storage = { version = "4.0.0-dev", default-features = false, path = "../storage" } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } futures = { version = "0.3.1", optional = true } dyn-clonable = { version = "0.9.0", optional = true } thiserror = { version = "1.0.21", optional = true } -max-encoded-len = { version = "3.0.0", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } +max-encoded-len = { version = "4.0.0-dev", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } # full crypto ed25519-dalek = { version = "1.0.1", default-features = false, features = ["u64_backend", "alloc"], optional = true } @@ -53,7 +53,7 @@ twox-hash = { version = "1.5.0", default-features = false, optional = true } libsecp256k1 = { version = "0.3.2", default-features = false, features = ["hmac"], optional = true } merlin = { version = "2.0", default-features = false, optional = true } -sp-runtime-interface = { version = "3.0.0", default-features = false, path = "../runtime-interface" } +sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../runtime-interface" } [dev-dependencies] sp-serializer = { version = "3.0.0", path = "../serializer" } diff --git a/primitives/database/Cargo.toml b/primitives/database/Cargo.toml index aae7668b5ec80..b3173661f4111 100644 --- a/primitives/database/Cargo.toml +++ b/primitives/database/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-database" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/primitives/externalities/Cargo.toml b/primitives/externalities/Cargo.toml index 8552f50ec71be..52a6300688cd9 100644 --- a/primitives/externalities/Cargo.toml +++ b/primitives/externalities/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-externalities" -version = "0.9.0" +version = "0.10.0-dev" license = "Apache-2.0" authors = ["Parity Technologies "] edition = "2018" @@ -14,8 +14,8 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-storage = { version = "3.0.0", path = "../storage", default-features = false } -sp-std = { version = "3.0.0", path = "../std", default-features = false } +sp-storage = { version = "4.0.0-dev", path = "../storage", default-features = false } +sp-std = { version = "4.0.0-dev", path = "../std", default-features = false } environmental = { version = "1.1.3", default-features = false } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } diff --git a/primitives/finality-grandpa/Cargo.toml b/primitives/finality-grandpa/Cargo.toml index ec9e89105d581..57a977f617485 100644 --- a/primitives/finality-grandpa/Cargo.toml +++ b/primitives/finality-grandpa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-finality-grandpa" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -19,12 +19,12 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features = grandpa = { package = "finality-grandpa", version = "0.14.1", default-features = false, features = ["derive-codec"] } log = { version = "0.4.8", optional = true } serde = { version = "1.0.101", optional = true, features = ["derive"] } -sp-api = { version = "3.0.0", default-features = false, path = "../api" } -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../application-crypto" } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } -sp-keystore = { version = "0.9.0", default-features = false, path = "../keystore", optional = true } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../application-crypto" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } +sp-keystore = { version = "0.10.0-dev", default-features = false, path = "../keystore", optional = true } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } [features] default = ["std"] diff --git a/primitives/inherents/Cargo.toml b/primitives/inherents/Cargo.toml index 54ce09306e192..353735f806c03 100644 --- a/primitives/inherents/Cargo.toml +++ b/primitives/inherents/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-inherents" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,9 +15,9 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } -sp-runtime = { version = "3.0.0", path = "../runtime", optional = true } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } +sp-runtime = { version = "4.0.0-dev", path = "../runtime", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } thiserror = { version = "1.0.21", optional = true } impl-trait-for-tuples = "0.2.0" diff --git a/primitives/io/Cargo.toml b/primitives/io/Cargo.toml index e63fcb909573a..da9a8fc83200b 100644 --- a/primitives/io/Cargo.toml +++ b/primitives/io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-io" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -17,17 +17,17 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } hash-db = { version = "0.15.2", default-features = false } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } -sp-keystore = { version = "0.9.0", default-features = false, optional = true, path = "../keystore" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } +sp-keystore = { version = "0.10.0-dev", default-features = false, optional = true, path = "../keystore" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } libsecp256k1 = { version = "0.3.4", optional = true } -sp-state-machine = { version = "0.9.0", optional = true, path = "../state-machine" } -sp-wasm-interface = { version = "3.0.0", path = "../wasm-interface", default-features = false } -sp-runtime-interface = { version = "3.0.0", default-features = false, path = "../runtime-interface" } -sp-maybe-compressed-blob = { version = "3.0.0", optional = true, path = "../maybe-compressed-blob" } -sp-trie = { version = "3.0.0", optional = true, path = "../trie" } -sp-externalities = { version = "0.9.0", optional = true, path = "../externalities" } -sp-tracing = { version = "3.0.0", default-features = false, path = "../tracing" } +sp-state-machine = { version = "0.10.0-dev", optional = true, path = "../state-machine" } +sp-wasm-interface = { version = "4.0.0-dev", path = "../wasm-interface", default-features = false } +sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../runtime-interface" } +sp-maybe-compressed-blob = { version = "4.0.0-dev", optional = true, path = "../maybe-compressed-blob" } +sp-trie = { version = "4.0.0-dev", optional = true, path = "../trie" } +sp-externalities = { version = "0.10.0-dev", optional = true, path = "../externalities" } +sp-tracing = { version = "4.0.0-dev", default-features = false, path = "../tracing" } log = { version = "0.4.8", optional = true } futures = { version = "0.3.1", features = ["thread-pool"], optional = true } parking_lot = { version = "0.11.1", optional = true } diff --git a/primitives/keyring/Cargo.toml b/primitives/keyring/Cargo.toml index ee71687f1ef7c..87106f9ee448e 100644 --- a/primitives/keyring/Cargo.toml +++ b/primitives/keyring/Cargo.toml @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-core = { version = "3.0.0", path = "../core" } -sp-runtime = { version = "3.0.0", path = "../runtime" } +sp-core = { version = "4.0.0-dev", path = "../core" } +sp-runtime = { version = "4.0.0-dev", path = "../runtime" } lazy_static = "1.4.0" strum = { version = "0.20.0", features = ["derive"] } diff --git a/primitives/keystore/Cargo.toml b/primitives/keystore/Cargo.toml index d4ebfc1c74c60..4c2408c831b3c 100644 --- a/primitives/keystore/Cargo.toml +++ b/primitives/keystore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-keystore" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -21,8 +21,8 @@ schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backen merlin = { version = "2.0", default-features = false } parking_lot = { version = "0.11.1", default-features = false } serde = { version = "1.0", optional = true} -sp-core = { version = "3.0.0", path = "../core" } -sp-externalities = { version = "0.9.0", path = "../externalities", default-features = false } +sp-core = { version = "4.0.0-dev", path = "../core" } +sp-externalities = { version = "0.10.0-dev", path = "../externalities", default-features = false } [dev-dependencies] rand = "0.7.2" diff --git a/primitives/maybe-compressed-blob/Cargo.toml b/primitives/maybe-compressed-blob/Cargo.toml index e647606f1595a..720fc4281ca7b 100644 --- a/primitives/maybe-compressed-blob/Cargo.toml +++ b/primitives/maybe-compressed-blob/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-maybe-compressed-blob" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/primitives/npos-elections/Cargo.toml b/primitives/npos-elections/Cargo.toml index 5bca1e0bb859f..02e898051d9bf 100644 --- a/primitives/npos-elections/Cargo.toml +++ b/primitives/npos-elections/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-npos-elections" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } serde = { version = "1.0.101", optional = true, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-npos-elections-compact = { version = "3.0.0", path = "./compact" } -sp-arithmetic = { version = "3.0.0", default-features = false, path = "../arithmetic" } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-npos-elections-compact = { version = "4.0.0-dev", path = "./compact" } +sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../arithmetic" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } [dev-dependencies] -substrate-test-utils = { version = "3.0.0", path = "../../test-utils" } +substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" } rand = "0.7.3" -sp-runtime = { version = "3.0.0", path = "../runtime" } +sp-runtime = { version = "4.0.0-dev", path = "../runtime" } [features] default = ["std"] diff --git a/primitives/npos-elections/compact/Cargo.toml b/primitives/npos-elections/compact/Cargo.toml index 78432d777a019..7188128ad29d6 100644 --- a/primitives/npos-elections/compact/Cargo.toml +++ b/primitives/npos-elections/compact/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-npos-elections-compact" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -22,6 +22,6 @@ proc-macro-crate = "1.0.0" [dev-dependencies] parity-scale-codec = "2.0.1" -sp-arithmetic = { path = "../../arithmetic" } -sp-npos-elections = { path = ".." } +sp-arithmetic = { path = "../../arithmetic" , version = "4.0.0-dev"} +sp-npos-elections = { path = ".." , version = "4.0.0-dev"} trybuild = "1.0.42" diff --git a/primitives/npos-elections/fuzzer/Cargo.toml b/primitives/npos-elections/fuzzer/Cargo.toml index 3154a7861d306..775f9a1c211bd 100644 --- a/primitives/npos-elections/fuzzer/Cargo.toml +++ b/primitives/npos-elections/fuzzer/Cargo.toml @@ -17,10 +17,10 @@ targets = ["x86_64-unknown-linux-gnu"] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } honggfuzz = "0.5" rand = { version = "0.7.3", features = ["std", "small_rng"] } -sp-arithmetic = { version = "3.0.0", path = "../../arithmetic" } -sp-npos-elections = { version = "3.0.0", path = ".." } -sp-runtime = { version = "3.0.0", path = "../../runtime" } -sp-std = { version = "3.0.0", path = "../../std" } +sp-arithmetic = { version = "4.0.0-dev", path = "../../arithmetic" } +sp-npos-elections = { version = "4.0.0-dev", path = ".." } +sp-runtime = { version = "4.0.0-dev", path = "../../runtime" } +sp-std = { version = "4.0.0-dev", path = "../../std" } structopt = "0.3.21" [[bin]] diff --git a/primitives/offchain/Cargo.toml b/primitives/offchain/Cargo.toml index 1e3d0a34b26b1..8982d0cf2c994 100644 --- a/primitives/offchain/Cargo.toml +++ b/primitives/offchain/Cargo.toml @@ -13,12 +13,12 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-core = { version = "3.0.0", default-features = false, path = "../core" } -sp-api = { version = "3.0.0", default-features = false, path = "../api" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } [dev-dependencies] -sp-state-machine = { version = "0.9.0", default-features = false, path = "../state-machine" } +sp-state-machine = { version = "0.10.0-dev", default-features = false, path = "../state-machine" } [features] default = ["std"] diff --git a/primitives/rpc/Cargo.toml b/primitives/rpc/Cargo.toml index 9a502c99d311d..e740d0be88fa0 100644 --- a/primitives/rpc/Cargo.toml +++ b/primitives/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-rpc" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", features = ["derive"] } -sp-core = { version = "3.0.0", path = "../core" } +sp-core = { version = "4.0.0-dev", path = "../core" } tracing-core = "0.1.17" rustc-hash = "1.1.0" diff --git a/primitives/runtime-interface/Cargo.toml b/primitives/runtime-interface/Cargo.toml index 4099e89933880..99d35f3f92112 100644 --- a/primitives/runtime-interface/Cargo.toml +++ b/primitives/runtime-interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-runtime-interface" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,22 +14,22 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-wasm-interface = { version = "3.0.0", path = "../wasm-interface", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-tracing = { version = "3.0.0", default-features = false, path = "../tracing" } -sp-runtime-interface-proc-macro = { version = "3.0.0", path = "proc-macro" } -sp-externalities = { version = "0.9.0", optional = true, path = "../externalities" } +sp-wasm-interface = { version = "4.0.0-dev", path = "../wasm-interface", default-features = false } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-tracing = { version = "4.0.0-dev", default-features = false, path = "../tracing" } +sp-runtime-interface-proc-macro = { version = "4.0.0-dev", path = "proc-macro" } +sp-externalities = { version = "0.10.0-dev", optional = true, path = "../externalities" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } static_assertions = "1.0.0" primitive-types = { version = "0.9.0", default-features = false } -sp-storage = { version = "3.0.0", default-features = false, path = "../storage" } +sp-storage = { version = "4.0.0-dev", default-features = false, path = "../storage" } impl-trait-for-tuples = "0.2.1" [dev-dependencies] sp-runtime-interface-test-wasm = { version = "2.0.0", path = "test-wasm" } -sp-state-machine = { version = "0.9.0", path = "../state-machine" } -sp-core = { version = "3.0.0", path = "../core" } -sp-io = { version = "3.0.0", path = "../io" } +sp-state-machine = { version = "0.10.0-dev", path = "../state-machine" } +sp-core = { version = "4.0.0-dev", path = "../core" } +sp-io = { version = "4.0.0-dev", path = "../io" } rustversion = "1.0.0" trybuild = "1.0.42" diff --git a/primitives/runtime-interface/proc-macro/Cargo.toml b/primitives/runtime-interface/proc-macro/Cargo.toml index ae74ff739b187..dcf8a4662b9c4 100644 --- a/primitives/runtime-interface/proc-macro/Cargo.toml +++ b/primitives/runtime-interface/proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-runtime-interface-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/primitives/runtime-interface/test-wasm-deprecated/Cargo.toml b/primitives/runtime-interface/test-wasm-deprecated/Cargo.toml index 91febf68ed285..3ae5d78b0ef95 100644 --- a/primitives/runtime-interface/test-wasm-deprecated/Cargo.toml +++ b/primitives/runtime-interface/test-wasm-deprecated/Cargo.toml @@ -13,13 +13,13 @@ publish = false targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-runtime-interface = { version = "3.0.0", default-features = false, path = "../" } -sp-std = { version = "3.0.0", default-features = false, path = "../../std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../io" } -sp-core = { version = "3.0.0", default-features = false, path = "../../core" } +sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../io" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" } [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" } +substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder" } [features] default = [ "std" ] diff --git a/primitives/runtime-interface/test-wasm/Cargo.toml b/primitives/runtime-interface/test-wasm/Cargo.toml index d0a61c5b920f4..7c7d3e10b2d0c 100644 --- a/primitives/runtime-interface/test-wasm/Cargo.toml +++ b/primitives/runtime-interface/test-wasm/Cargo.toml @@ -13,13 +13,13 @@ publish = false targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-runtime-interface = { version = "3.0.0", default-features = false, path = "../" } -sp-std = { version = "3.0.0", default-features = false, path = "../../std" } -sp-io = { version = "3.0.0", default-features = false, path = "../../io" } -sp-core = { version = "3.0.0", default-features = false, path = "../../core" } +sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../io" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" } [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" } +substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder" } [features] default = [ "std" ] diff --git a/primitives/runtime-interface/test/Cargo.toml b/primitives/runtime-interface/test/Cargo.toml index fb9b3c4b71edf..686eb1b1a13e3 100644 --- a/primitives/runtime-interface/test/Cargo.toml +++ b/primitives/runtime-interface/test/Cargo.toml @@ -12,14 +12,14 @@ repository = "https://github.com/paritytech/substrate/" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-runtime-interface = { version = "3.0.0", path = "../" } -sc-executor = { version = "0.9.0", path = "../../../client/executor" } -sc-executor-common = { version = "0.9.0", path = "../../../client/executor/common" } +sp-runtime-interface = { version = "4.0.0-dev", path = "../" } +sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" } +sc-executor-common = { version = "0.10.0-dev", path = "../../../client/executor/common" } sp-runtime-interface-test-wasm = { version = "2.0.0", path = "../test-wasm" } sp-runtime-interface-test-wasm-deprecated = { version = "2.0.0", path = "../test-wasm-deprecated" } -sp-state-machine = { version = "0.9.0", path = "../../state-machine" } -sp-runtime = { version = "3.0.0", path = "../../runtime" } -sp-core = { version = "3.0.0", path = "../../core" } -sp-io = { version = "3.0.0", path = "../../io" } +sp-state-machine = { version = "0.10.0-dev", path = "../../state-machine" } +sp-runtime = { version = "4.0.0-dev", path = "../../runtime" } +sp-core = { version = "4.0.0-dev", path = "../../core" } +sp-io = { version = "4.0.0-dev", path = "../../io" } tracing = "0.1.25" tracing-core = "0.1.17" diff --git a/primitives/runtime/Cargo.toml b/primitives/runtime/Cargo.toml index aec2bc416ee37..1f3cd1acbffe9 100644 --- a/primitives/runtime/Cargo.toml +++ b/primitives/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-runtime" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -17,11 +17,11 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../application-crypto" } -sp-arithmetic = { version = "3.0.0", default-features = false, path = "../arithmetic" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-io = { version = "3.0.0", default-features = false, path = "../io" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../application-crypto" } +sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../arithmetic" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../io" } log = { version = "0.4.14", default-features = false } paste = "1.0" rand = { version = "0.7.2", optional = true } @@ -29,15 +29,15 @@ impl-trait-for-tuples = "0.2.1" parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } hash256-std-hasher = { version = "0.15.2", default-features = false } either = { version = "1.5", default-features = false } -max-encoded-len = { version = "3.0.0", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } +max-encoded-len = { version = "4.0.0-dev", default-features = false, path = "../../max-encoded-len", features = [ "derive" ] } [dev-dependencies] serde_json = "1.0.41" rand = "0.7.2" -sp-state-machine = { version = "0.9.0", path = "../state-machine" } -sp-api = { version = "3.0.0", path = "../api" } +sp-state-machine = { version = "0.10.0-dev", path = "../state-machine" } +sp-api = { version = "4.0.0-dev", path = "../api" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } -sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } +sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } [features] bench = [] diff --git a/primitives/sandbox/Cargo.toml b/primitives/sandbox/Cargo.toml index dc6103bfa6ada..f15f1c02d511c 100755 --- a/primitives/sandbox/Cargo.toml +++ b/primitives/sandbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-sandbox" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,10 +14,10 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] wasmi = { version = "0.9.0", optional = true } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-io = { version = "3.0.0", default-features = false, path = "../io" } -sp-wasm-interface = { version = "3.0.0", default-features = false, path = "../wasm-interface" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../io" } +sp-wasm-interface = { version = "4.0.0-dev", default-features = false, path = "../wasm-interface" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } [dev-dependencies] diff --git a/primitives/session/Cargo.toml b/primitives/session/Cargo.toml index c04b271bc0370..91677b474d954 100644 --- a/primitives/session/Cargo.toml +++ b/primitives/session/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-session" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,11 +14,11 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-api = { version = "3.0.0", default-features = false, path = "../api" } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-staking = { version = "3.0.0", default-features = false, path = "../staking" } -sp-runtime = { version = "3.0.0", optional = true, path = "../runtime" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-staking = { version = "4.0.0-dev", default-features = false, path = "../staking" } +sp-runtime = { version = "4.0.0-dev", optional = true, path = "../runtime" } [features] default = [ "std" ] diff --git a/primitives/staking/Cargo.toml b/primitives/staking/Cargo.toml index cf2347082a885..85f5487da884c 100644 --- a/primitives/staking/Cargo.toml +++ b/primitives/staking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-staking" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } [features] default = ["std"] diff --git a/primitives/state-machine/Cargo.toml b/primitives/state-machine/Cargo.toml index 79fccef08c199..bf1ef09b519a1 100644 --- a/primitives/state-machine/Cargo.toml +++ b/primitives/state-machine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-state-machine" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Substrate State Machine" edition = "2018" @@ -20,20 +20,20 @@ parking_lot = { version = "0.11.1", optional = true } hash-db = { version = "0.15.2", default-features = false } trie-db = { version = "0.22.2", default-features = false } trie-root = { version = "0.16.0", default-features = false } -sp-trie = { version = "3.0.0", path = "../trie", default-features = false } -sp-core = { version = "3.0.0", path = "../core", default-features = false } +sp-trie = { version = "4.0.0-dev", path = "../trie", default-features = false } +sp-core = { version = "4.0.0-dev", path = "../core", default-features = false } sp-panic-handler = { version = "3.0.0", path = "../panic-handler", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } num-traits = { version = "0.2.8", default-features = false } rand = { version = "0.7.2", optional = true } -sp-externalities = { version = "0.9.0", path = "../externalities", default-features = false } +sp-externalities = { version = "0.10.0-dev", path = "../externalities", default-features = false } smallvec = "1.4.1" -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } tracing = { version = "0.1.22", optional = true } [dev-dependencies] hex-literal = "0.3.1" -sp-runtime = { version = "3.0.0", path = "../runtime" } +sp-runtime = { version = "4.0.0-dev", path = "../runtime" } pretty_assertions = "0.6.1" [features] diff --git a/primitives/std/Cargo.toml b/primitives/std/Cargo.toml index bafa1ea7ef414..bf815c1c80c56 100644 --- a/primitives/std/Cargo.toml +++ b/primitives/std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-std" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/primitives/storage/Cargo.toml b/primitives/storage/Cargo.toml index 7a984d9205690..40566deb06b62 100644 --- a/primitives/storage/Cargo.toml +++ b/primitives/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-storage" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" description = "Storage related primitives" @@ -14,7 +14,7 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } serde = { version = "1.0.101", optional = true, features = ["derive"] } impl-serde = { version = "0.3.1", optional = true } ref-cast = "1.0.0" diff --git a/primitives/tasks/Cargo.toml b/primitives/tasks/Cargo.toml index 0a361b6c8dbbc..ee503ae9b855f 100644 --- a/primitives/tasks/Cargo.toml +++ b/primitives/tasks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-tasks" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -15,11 +15,11 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] log = { version = "0.4.8", optional = true } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } -sp-externalities = { version = "0.9.0", optional = true, path = "../externalities" } -sp-io = { version = "3.0.0", default-features = false, path = "../io" } -sp-runtime-interface = { version = "3.0.0", default-features = false, path = "../runtime-interface" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } +sp-externalities = { version = "0.10.0-dev", optional = true, path = "../externalities" } +sp-io = { version = "4.0.0-dev", default-features = false, path = "../io" } +sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../runtime-interface" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } [dev-dependencies] codec = { package = "parity-scale-codec", default-features = false, version = "2.0.0" } diff --git a/primitives/test-primitives/Cargo.toml b/primitives/test-primitives/Cargo.toml index fbf29db96fa46..182d8f10d9945 100644 --- a/primitives/test-primitives/Cargo.toml +++ b/primitives/test-primitives/Cargo.toml @@ -12,11 +12,11 @@ publish = false targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../application-crypto" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../application-crypto" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } serde = { version = "1.0.101", optional = true, features = ["derive"] } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } [features] diff --git a/primitives/timestamp/Cargo.toml b/primitives/timestamp/Cargo.toml index 3fc8e76f40f17..512635f319231 100644 --- a/primitives/timestamp/Cargo.toml +++ b/primitives/timestamp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-timestamp" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,11 +13,11 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-api = { version = "3.0.0", default-features = false, path = "../api" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-inherents = { version = "3.0.0", default-features = false, path = "../inherents" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" } wasm-timer = { version = "0.2", optional = true } thiserror = { version = "1.0.21", optional = true } log = { version = "0.4.8", optional = true } diff --git a/primitives/tracing/Cargo.toml b/primitives/tracing/Cargo.toml index 2c4b7dc12c744..d5fb07ad076b4 100644 --- a/primitives/tracing/Cargo.toml +++ b/primitives/tracing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-tracing" -version = "3.0.0" +version = "4.0.0-dev" license = "Apache-2.0" authors = ["Parity Technologies "] edition = "2018" @@ -18,7 +18,7 @@ features = ["with-tracing"] targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"] [dependencies] -sp-std = { version = "3.0.0", path = "../std", default-features = false} +sp-std = { version = "4.0.0-dev", path = "../std", default-features = false} codec = { version = "2.0.0", package = "parity-scale-codec", default-features = false, features = ["derive"]} tracing = { version = "0.1.25", default-features = false } tracing-core = { version = "0.1.17", default-features = false } diff --git a/primitives/transaction-pool/Cargo.toml b/primitives/transaction-pool/Cargo.toml index d431e444d457e..baed51441123c 100644 --- a/primitives/transaction-pool/Cargo.toml +++ b/primitives/transaction-pool/Cargo.toml @@ -20,9 +20,9 @@ derive_more = { version = "0.99.11", optional = true } futures = { version = "0.3.1", optional = true } log = { version = "0.4.8", optional = true } serde = { version = "1.0.101", features = ["derive"], optional = true} -sp-api = { version = "3.0.0", default-features = false, path = "../api" } -sp-blockchain = { version = "3.0.0", optional = true, path = "../blockchain" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" } +sp-blockchain = { version = "4.0.0-dev", optional = true, path = "../blockchain" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } [features] default = [ "std" ] diff --git a/primitives/transaction-storage-proof/Cargo.toml b/primitives/transaction-storage-proof/Cargo.toml index bbdcb9f989f0b..b04dbbc1124d1 100644 --- a/primitives/transaction-storage-proof/Cargo.toml +++ b/primitives/transaction-storage-proof/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-transaction-storage-proof" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] description = "Transaction storage proof primitives" edition = "2018" @@ -13,11 +13,11 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-inherents = { version = "3.0.0", default-features = false, path = "../inherents" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-trie = { version = "3.0.0", optional = true, path = "../trie" } -sp-core = { version = "3.0.0", path = "../core", optional = true } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-trie = { version = "4.0.0-dev", optional = true, path = "../trie" } +sp-core = { version = "4.0.0-dev", path = "../core", optional = true } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } log = { version = "0.4.8", optional = true } async-trait = { version = "0.1.48", optional = true } diff --git a/primitives/trie/Cargo.toml b/primitives/trie/Cargo.toml index 9584ae678d409..3c607e3c659d6 100644 --- a/primitives/trie/Cargo.toml +++ b/primitives/trie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-trie" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] description = "Patricia trie stuff using a parity-scale-codec node format" repository = "https://github.com/paritytech/substrate/" @@ -19,19 +19,19 @@ harness = false [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } hash-db = { version = "0.15.2", default-features = false } trie-db = { version = "0.22.3", default-features = false } trie-root = { version = "0.16.0", default-features = false } memory-db = { version = "0.26.0", default-features = false } -sp-core = { version = "3.0.0", default-features = false, path = "../core" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" } [dev-dependencies] trie-bench = "0.27.0" trie-standardmap = "0.15.2" criterion = "0.3.3" hex-literal = "0.3.1" -sp-runtime = { version = "3.0.0", path = "../runtime" } +sp-runtime = { version = "4.0.0-dev", path = "../runtime" } [features] default = ["std"] diff --git a/primitives/utils/Cargo.toml b/primitives/utils/Cargo.toml index 7669cee346d0b..bb5b1da59d41b 100644 --- a/primitives/utils/Cargo.toml +++ b/primitives/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-utils" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/primitives/version/Cargo.toml b/primitives/version/Cargo.toml index b50da9e9eacf9..ff0188d8839ea 100644 --- a/primitives/version/Cargo.toml +++ b/primitives/version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-version" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -18,9 +18,9 @@ targets = ["x86_64-unknown-linux-gnu"] impl-serde = { version = "0.3.1", optional = true } serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-std = { version = "3.0.0", default-features = false, path = "../std" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } -sp-version-proc-macro = { version = "3.0.0", default-features = false, path = "proc-macro" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" } +sp-version-proc-macro = { version = "4.0.0-dev", default-features = false, path = "proc-macro" } [features] default = ["std"] diff --git a/primitives/version/proc-macro/Cargo.toml b/primitives/version/proc-macro/Cargo.toml index ea3144090c70e..e394353e52a18 100644 --- a/primitives/version/proc-macro/Cargo.toml +++ b/primitives/version/proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-version-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -23,4 +23,4 @@ proc-macro-crate = "1.0.0" codec = { package = "parity-scale-codec", version = "2.0.0", features = [ "derive" ] } [dev-dependencies] -sp-version = { version = "3.0.0", path = ".." } +sp-version = { version = "4.0.0-dev", path = ".." } diff --git a/primitives/wasm-interface/Cargo.toml b/primitives/wasm-interface/Cargo.toml index 97171310b4154..ba8a7b4e4b466 100644 --- a/primitives/wasm-interface/Cargo.toml +++ b/primitives/wasm-interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-wasm-interface" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] wasmi = { version = "0.9.0", optional = true } impl-trait-for-tuples = "0.2.1" -sp-std = { version = "3.0.0", path = "../std", default-features = false } +sp-std = { version = "4.0.0-dev", path = "../std", default-features = false } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } [features] diff --git a/test-utils/Cargo.toml b/test-utils/Cargo.toml index 24a794ff48025..983574915f2b6 100644 --- a/test-utils/Cargo.toml +++ b/test-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-test-utils" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,9 +13,9 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] futures = { version = "0.3.1", features = ["compat"] } -substrate-test-utils-derive = { version = "0.9.0", path = "./derive" } +substrate-test-utils-derive = { version = "0.10.0-dev", path = "./derive" } tokio = { version = "0.2.13", features = ["macros"] } [dev-dependencies] -sc-service = { version = "0.9.0", path = "../client/service" } +sc-service = { version = "0.10.0-dev", path = "../client/service" } trybuild = { version = "1.0.42", features = [ "diff" ] } diff --git a/test-utils/client/Cargo.toml b/test-utils/client/Cargo.toml index 925a69e41bb48..cc6dde1cd688d 100644 --- a/test-utils/client/Cargo.toml +++ b/test-utils/client/Cargo.toml @@ -19,18 +19,18 @@ hash-db = "0.15.2" hex = "0.4" serde = "1.0.55" serde_json = "1.0.55" -sc-client-api = { version = "3.0.0", path = "../../client/api" } -sc-client-db = { version = "0.9.0", features = ["test-helpers"], path = "../../client/db" } -sc-consensus = { version = "0.9.0", path = "../../client/consensus/common" } -sc-executor = { version = "0.9.0", path = "../../client/executor" } -sc-light = { version = "3.0.0", path = "../../client/light" } -sc-offchain = { version = "3.0.0", path = "../../client/offchain" } -sc-service = { version = "0.9.0", default-features = false, features = ["test-helpers"], path = "../../client/service" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" } +sc-client-api = { version = "4.0.0-dev", path = "../../client/api" } +sc-client-db = { version = "0.10.0-dev", features = ["test-helpers"], path = "../../client/db" } +sc-consensus = { version = "0.10.0-dev", path = "../../client/consensus/common" } +sc-executor = { version = "0.10.0-dev", path = "../../client/executor" } +sc-light = { version = "4.0.0-dev", path = "../../client/light" } +sc-offchain = { version = "4.0.0-dev", path = "../../client/offchain" } +sc-service = { version = "0.10.0-dev", default-features = false, features = ["test-helpers"], path = "../../client/service" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } async-trait = "0.1.42" diff --git a/test-utils/derive/Cargo.toml b/test-utils/derive/Cargo.toml index 501a7058c634d..991183edf4aba 100644 --- a/test-utils/derive/Cargo.toml +++ b/test-utils/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-test-utils-derive" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/test-utils/runtime/Cargo.toml b/test-utils/runtime/Cargo.toml index 96b7efff83380..525ae83ea79d3 100644 --- a/test-utils/runtime/Cargo.toml +++ b/test-utils/runtime/Cargo.toml @@ -13,36 +13,36 @@ publish = false targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" } -sp-consensus-aura = { version = "0.9.0", default-features = false, path = "../../primitives/consensus/aura" } -sp-consensus-babe = { version = "0.9.0", default-features = false, path = "../../primitives/consensus/babe" } -sp-block-builder = { version = "3.0.0", default-features = false, path = "../../primitives/block-builder" } +sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../primitives/application-crypto" } +sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/aura" } +sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/babe" } +sp-block-builder = { version = "4.0.0-dev", default-features = false, path = "../../primitives/block-builder" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-inherents = { version = "3.0.0", default-features = false, path = "../../primitives/inherents" } +sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" } sp-keyring = { version = "3.0.0", optional = true, path = "../../primitives/keyring" } memory-db = { version = "0.26.0", default-features = false } sp-offchain = { path = "../../primitives/offchain", default-features = false, version = "3.0.0"} -sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } -sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } -sp-runtime-interface = { path = "../../primitives/runtime-interface", default-features = false, version = "3.0.0"} -sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" } -frame-support = { version = "3.0.0", default-features = false, path = "../../frame/support" } -sp-version = { version = "3.0.0", default-features = false, path = "../../primitives/version" } -sp-session = { version = "3.0.0", default-features = false, path = "../../primitives/session" } -sp-api = { version = "3.0.0", default-features = false, path = "../../primitives/api" } -sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" } -pallet-babe = { version = "3.0.0", default-features = false, path = "../../frame/babe" } -frame-system = { version = "3.0.0", default-features = false, path = "../../frame/system" } +sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } +sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } +sp-runtime-interface = { path = "../../primitives/runtime-interface", default-features = false, version = "4.0.0-dev"} +sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } +frame-support = { version = "4.0.0-dev", default-features = false, path = "../../frame/support" } +sp-version = { version = "4.0.0-dev", default-features = false, path = "../../primitives/version" } +sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" } +sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" } +sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } +pallet-babe = { version = "4.0.0-dev", default-features = false, path = "../../frame/babe" } +frame-system = { version = "4.0.0-dev", default-features = false, path = "../../frame/system" } frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../frame/system/rpc/runtime-api" } -pallet-timestamp = { version = "3.0.0", default-features = false, path = "../../frame/timestamp" } -sp-finality-grandpa = { version = "3.0.0", default-features = false, path = "../../primitives/finality-grandpa" } -sp-trie = { version = "3.0.0", default-features = false, path = "../../primitives/trie" } +pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../frame/timestamp" } +sp-finality-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../primitives/finality-grandpa" } +sp-trie = { version = "4.0.0-dev", default-features = false, path = "../../primitives/trie" } sp-transaction-pool = { version = "3.0.0", default-features = false, path = "../../primitives/transaction-pool" } trie-db = { version = "0.22.2", default-features = false } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } -sc-service = { version = "0.9.0", default-features = false, optional = true, features = ["test-helpers"], path = "../../client/service" } -sp-state-machine = { version = "0.9.0", default-features = false, path = "../../primitives/state-machine" } -sp-externalities = { version = "0.9.0", default-features = false, path = "../../primitives/externalities" } +sc-service = { version = "0.10.0-dev", default-features = false, optional = true, features = ["test-helpers"], path = "../../client/service" } +sp-state-machine = { version = "0.10.0-dev", default-features = false, path = "../../primitives/state-machine" } +sp-externalities = { version = "0.10.0-dev", default-features = false, path = "../../primitives/externalities" } # 3rd party cfg-if = "1.0" @@ -50,13 +50,13 @@ log = { version = "0.4.14", default-features = false } serde = { version = "1.0.101", optional = true, features = ["derive"] } [dev-dependencies] -sc-block-builder = { version = "0.9.0", path = "../../client/block-builder" } -sc-executor = { version = "0.9.0", path = "../../client/executor" } +sc-block-builder = { version = "0.10.0-dev", path = "../../client/block-builder" } +sc-executor = { version = "0.10.0-dev", path = "../../client/executor" } substrate-test-runtime-client = { version = "2.0.0", path = "./client" } futures = "0.3.9" [build-dependencies] -substrate-wasm-builder = { version = "4.0.0", path = "../../utils/wasm-builder" } +substrate-wasm-builder = { version = "5.0.0-dev", path = "../../utils/wasm-builder" } [features] default = [ diff --git a/test-utils/runtime/client/Cargo.toml b/test-utils/runtime/client/Cargo.toml index 0c822f0cdff84..24e9f8af29442 100644 --- a/test-utils/runtime/client/Cargo.toml +++ b/test-utils/runtime/client/Cargo.toml @@ -12,17 +12,17 @@ publish = false targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sc-light = { version = "3.0.0", path = "../../../client/light" } -sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" } -sc-block-builder = { version = "0.9.0", path = "../../../client/block-builder" } +sc-light = { version = "4.0.0-dev", path = "../../../client/light" } +sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } +sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" } substrate-test-client = { version = "2.0.0", path = "../../client" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } substrate-test-runtime = { version = "2.0.0", path = "../../runtime" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-api = { version = "3.0.0", path = "../../../primitives/api" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } codec = { package = "parity-scale-codec", version = "2.0.0" } -sc-client-api = { version = "3.0.0", path = "../../../client/api" } -sc-consensus = { version = "0.9.0", path = "../../../client/consensus/common" } -sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service" } +sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" } +sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" } futures = "0.3.9" diff --git a/test-utils/runtime/transaction-pool/Cargo.toml b/test-utils/runtime/transaction-pool/Cargo.toml index 6e4e6524c3699..ac293b4a22e3d 100644 --- a/test-utils/runtime/transaction-pool/Cargo.toml +++ b/test-utils/runtime/transaction-pool/Cargo.toml @@ -15,9 +15,9 @@ targets = ["x86_64-unknown-linux-gnu"] substrate-test-runtime-client = { version = "2.0.0", path = "../client" } parking_lot = "0.11.1" codec = { package = "parity-scale-codec", version = "2.0.0" } -sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } -sc-transaction-graph = { version = "3.0.0", path = "../../../client/transaction-pool/graph" } +sc-transaction-graph = { version = "4.0.0-dev", path = "../../../client/transaction-pool/graph" } futures = { version = "0.3.1", features = ["compat"] } derive_more = "0.99.2" diff --git a/test-utils/test-crate/Cargo.toml b/test-utils/test-crate/Cargo.toml index 846b14fe07744..6ab53fc752eae 100644 --- a/test-utils/test-crate/Cargo.toml +++ b/test-utils/test-crate/Cargo.toml @@ -13,5 +13,5 @@ targets = ["x86_64-unknown-linux-gnu"] [dev-dependencies] tokio = { version = "0.2.13", features = ["macros"] } -test-utils = { version = "3.0.0", path = "..", package = "substrate-test-utils" } -sc-service = { version = "0.9.0", path = "../../client/service" } +test-utils = { version = "4.0.0-dev", path = "..", package = "substrate-test-utils" } +sc-service = { version = "0.10.0-dev", path = "../../client/service" } diff --git a/test-utils/test-runner/Cargo.toml b/test-utils/test-runner/Cargo.toml index 9e1f9fee02189..4cd6aedd909b0 100644 --- a/test-utils/test-runner/Cargo.toml +++ b/test-utils/test-runner/Cargo.toml @@ -7,41 +7,41 @@ publish = false [dependencies] # client deps -sc-executor = { version = "0.9.0", path = "../../client/executor" } -sc-service = { version = "0.9.0", path = "../../client/service" } -sc-informant = { version = "0.9.0", path = "../../client/informant" } -sc-network = { version = "0.9.0", path = "../../client/network" } -sc-cli = { version = "0.9.0", path = "../../client/cli" } -sc-basic-authorship = { version = "0.9.0", path = "../../client/basic-authorship" } -sc-rpc = { version = "3.0.0", path = "../../client/rpc" } -sc-transaction-pool = { version = "3.0.0", path = "../../client/transaction-pool" } -sc-transaction-graph = { version = "3.0.0", path = "../../client/transaction-pool/graph" } -sc-client-api = { version = "3.0.0", path = "../../client/api" } -sc-rpc-server = { version = "3.0.0", path = "../../client/rpc-servers" } -manual-seal = { package = "sc-consensus-manual-seal", version = "0.9.0", path = "../../client/consensus/manual-seal" } +sc-executor = { version = "0.10.0-dev", path = "../../client/executor" } +sc-service = { version = "0.10.0-dev", path = "../../client/service" } +sc-informant = { version = "0.10.0-dev", path = "../../client/informant" } +sc-network = { version = "0.10.0-dev", path = "../../client/network" } +sc-cli = { version = "0.10.0-dev", path = "../../client/cli" } +sc-basic-authorship = { version = "0.10.0-dev", path = "../../client/basic-authorship" } +sc-rpc = { version = "4.0.0-dev", path = "../../client/rpc" } +sc-transaction-pool = { version = "4.0.0-dev", path = "../../client/transaction-pool" } +sc-transaction-graph = { version = "4.0.0-dev", path = "../../client/transaction-pool/graph" } +sc-client-api = { version = "4.0.0-dev", path = "../../client/api" } +sc-rpc-server = { version = "4.0.0-dev", path = "../../client/rpc-servers" } +manual-seal = { package = "sc-consensus-manual-seal", version = "0.10.0-dev", path = "../../client/consensus/manual-seal" } # primitive deps -sp-core = { version = "3.0.0", path = "../../primitives/core" } -sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" } -sp-block-builder = { version = "3.0.0", path = "../../primitives/block-builder" } -sp-api = { version = "3.0.0", path = "../../primitives/api" } -sp-io = { version = "3.0.0", path = "../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } +sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } +sp-block-builder = { version = "4.0.0-dev", path = "../../primitives/block-builder" } +sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } +sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } -sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" } -sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" } -sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } -sp-session = { version = "3.0.0", path = "../../primitives/session" } +sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } +sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } +sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } +sp-session = { version = "4.0.0-dev", path = "../../primitives/session" } sp-offchain = { version = "3.0.0", path = "../../primitives/offchain" } -sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" } +sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" } sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } -sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" } -sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } -sp-wasm-interface = { version = "3.0.0", path = "../../primitives/wasm-interface" } -sp-runtime-interface = { version = "3.0.0", path = "../../primitives/runtime-interface" } +sp-externalities = { version = "0.10.0-dev", path = "../../primitives/externalities" } +sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } +sp-wasm-interface = { version = "4.0.0-dev", path = "../../primitives/wasm-interface" } +sp-runtime-interface = { version = "4.0.0-dev", path = "../../primitives/runtime-interface" } # pallets -frame-system = { version = "3.0.0", path = "../../frame/system" } +frame-system = { version = "4.0.0-dev", path = "../../frame/system" } env_logger = "0.7.1" log = "0.4.8" diff --git a/utils/browser/Cargo.toml b/utils/browser/Cargo.toml index 31403a5e6fa96..279057f156a77 100644 --- a/utils/browser/Cargo.toml +++ b/utils/browser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-browser-utils" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Utilities for creating a browser light-client." edition = "2018" @@ -22,12 +22,12 @@ js-sys = "0.3.34" wasm-bindgen = "0.2.73" wasm-bindgen-futures = "0.4.18" kvdb-web = "0.9.0" -sp-database = { version = "3.0.0", path = "../../primitives/database" } -sc-informant = { version = "0.9.0", path = "../../client/informant" } -sc-service = { version = "0.9.0", path = "../../client/service", default-features = false } -sc-network = { path = "../../client/network", version = "0.9.0"} -sc-chain-spec = { path = "../../client/chain-spec", version = "3.0.0"} -sc-tracing = { path = "../../client/tracing", version = "3.0.0"} +sp-database = { version = "4.0.0-dev", path = "../../primitives/database" } +sc-informant = { version = "0.10.0-dev", path = "../../client/informant" } +sc-service = { version = "0.10.0-dev", path = "../../client/service", default-features = false } +sc-network = { path = "../../client/network", version = "0.10.0-dev"} +sc-chain-spec = { path = "../../client/chain-spec", version = "4.0.0-dev"} +sc-tracing = { path = "../../client/tracing", version = "4.0.0-dev"} # Imported just for the `wasm-bindgen` feature getrandom = { version = "0.2", features = ["js"] } diff --git a/utils/frame/benchmarking-cli/Cargo.toml b/utils/frame/benchmarking-cli/Cargo.toml index 51290e5f44ab7..be5b148be748e 100644 --- a/utils/frame/benchmarking-cli/Cargo.toml +++ b/utils/frame/benchmarking-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-benchmarking-cli" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,16 +13,16 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -frame-benchmarking = { version = "3.1.0", path = "../../../frame/benchmarking" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service" } -sc-cli = { version = "0.9.0", path = "../../../client/cli" } -sc-client-db = { version = "0.9.0", path = "../../../client/db" } -sc-executor = { version = "0.9.0", path = "../../../client/executor" } -sp-externalities = { version = "0.9.0", path = "../../../primitives/externalities" } -sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } -sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" } +frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" } +sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" } +sc-client-db = { version = "0.10.0-dev", path = "../../../client/db" } +sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" } +sp-externalities = { version = "0.10.0-dev", path = "../../../primitives/externalities" } +sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } +sp-state-machine = { version = "0.10.0-dev", path = "../../../primitives/state-machine" } codec = { version = "2.0.0", package = "parity-scale-codec" } structopt = "0.3.8" chrono = "0.4" diff --git a/utils/frame/frame-utilities-cli/Cargo.toml b/utils/frame/frame-utilities-cli/Cargo.toml index 1fdf4e4cd9a97..1b6597fc9f2fc 100644 --- a/utils/frame/frame-utilities-cli/Cargo.toml +++ b/utils/frame/frame-utilities-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-frame-cli" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -11,12 +11,12 @@ documentation = "https://docs.rs/substrate-frame-cli" readme = "README.md" [dependencies] -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sc-cli = { version = "0.9.0", path = "../../../client/cli" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } structopt = "0.3.8" -frame-system = { version = "3.0.0", path = "../../../frame/system" } -frame-support = { version = "3.0.0", path = "../../../frame/support" } +frame-system = { version = "4.0.0-dev", path = "../../../frame/system" } +frame-support = { version = "4.0.0-dev", path = "../../../frame/support" } [dev-dependencies] diff --git a/utils/frame/remote-externalities/Cargo.toml b/utils/frame/remote-externalities/Cargo.toml index a7519b7e47f33..3f51b00dd639a 100644 --- a/utils/frame/remote-externalities/Cargo.toml +++ b/utils/frame/remote-externalities/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "remote-externalities" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -23,14 +23,14 @@ codec = { package = "parity-scale-codec", version = "2.0.0" } serde_json = "1.0" serde = "1.0.0" -sp-io = { version = "3.0.0", path = "../../../primitives/io" } -sp-core = { version = "3.0.0", path = "../../../primitives/core" } -sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" } +sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } +sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } +sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } [dev-dependencies] tokio = { version = "0.2", features = ["macros", "rt-threaded"] } -pallet-elections-phragmen = { path = "../../../frame/elections-phragmen", version = "4.0.0" } -frame-support = { path = "../../../frame/support", version = "3.0.0" } +pallet-elections-phragmen = { path = "../../../frame/elections-phragmen", version = "5.0.0-dev"} +frame-support = { path = "../../../frame/support", version = "4.0.0-dev"} [features] remote-test = [] diff --git a/utils/frame/rpc/support/Cargo.toml b/utils/frame/rpc/support/Cargo.toml index ca3705b499a22..4d4631be2025e 100644 --- a/utils/frame/rpc/support/Cargo.toml +++ b/utils/frame/rpc/support/Cargo.toml @@ -17,10 +17,10 @@ jsonrpc-client-transports = { version = "15.1.0", default-features = false, feat jsonrpc-core = "15.1.0" codec = { package = "parity-scale-codec", version = "2.0.0" } serde = "1" -frame-support = { version = "3.0.0", path = "../../../../frame/support" } -sp-storage = { version = "3.0.0", path = "../../../../primitives/storage" } -sc-rpc-api = { version = "0.9.0", path = "../../../../client/rpc-api" } +frame-support = { version = "4.0.0-dev", path = "../../../../frame/support" } +sp-storage = { version = "4.0.0-dev", path = "../../../../primitives/storage" } +sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" } [dev-dependencies] -frame-system = { version = "3.0.0", path = "../../../../frame/system" } +frame-system = { version = "4.0.0-dev", path = "../../../../frame/system" } tokio = "0.2" diff --git a/utils/frame/rpc/system/Cargo.toml b/utils/frame/rpc/system/Cargo.toml index ea8d97a82ad34..89f34f258f610 100644 --- a/utils/frame/rpc/system/Cargo.toml +++ b/utils/frame/rpc/system/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-frame-rpc-system" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -13,7 +13,7 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sc-client-api = { version = "3.0.0", path = "../../../../client/api" } +sc-client-api = { version = "4.0.0-dev", path = "../../../../client/api" } codec = { package = "parity-scale-codec", version = "2.0.0" } futures = { version = "0.3.4", features = ["compat"] } jsonrpc-core = "15.1.0" @@ -21,16 +21,16 @@ jsonrpc-core-client = "15.1.0" jsonrpc-derive = "15.1.0" log = "0.4.8" serde = { version = "1.0.101", features = ["derive"] } -sp-runtime = { version = "3.0.0", path = "../../../../primitives/runtime" } -sp-api = { version = "3.0.0", path = "../../../../primitives/api" } +sp-runtime = { version = "4.0.0-dev", path = "../../../../primitives/runtime" } +sp-api = { version = "4.0.0-dev", path = "../../../../primitives/api" } frame-system-rpc-runtime-api = { version = "3.0.0", path = "../../../../frame/system/rpc/runtime-api" } -sp-core = { version = "3.0.0", path = "../../../../primitives/core" } -sp-blockchain = { version = "3.0.0", path = "../../../../primitives/blockchain" } +sp-core = { version = "4.0.0-dev", path = "../../../../primitives/core" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../../primitives/blockchain" } sp-transaction-pool = { version = "3.0.0", path = "../../../../primitives/transaction-pool" } -sp-block-builder = { version = "3.0.0", path = "../../../../primitives/block-builder" } -sc-rpc-api = { version = "0.9.0", path = "../../../../client/rpc-api" } +sp-block-builder = { version = "4.0.0-dev", path = "../../../../primitives/block-builder" } +sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" } [dev-dependencies] substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" } -sp-tracing = { version = "3.0.0", path = "../../../../primitives/tracing" } -sc-transaction-pool = { version = "3.0.0", path = "../../../../client/transaction-pool" } +sp-tracing = { version = "4.0.0-dev", path = "../../../../primitives/tracing" } +sc-transaction-pool = { version = "4.0.0-dev", path = "../../../../client/transaction-pool" } diff --git a/utils/frame/try-runtime/cli/Cargo.toml b/utils/frame/try-runtime/cli/Cargo.toml index f262ba4812a0e..61bfe9290a679 100644 --- a/utils/frame/try-runtime/cli/Cargo.toml +++ b/utils/frame/try-runtime/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "try-runtime-cli" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -18,18 +18,18 @@ parity-scale-codec = { version = "2.0.0" } serde = "1.0.0" structopt = "0.3.8" -sc-service = { version = "0.9.0", default-features = false, path = "../../../../client/service" } -sc-cli = { version = "0.9.0", path = "../../../../client/cli" } -sc-executor = { version = "0.9.0", path = "../../../../client/executor" } -sc-client-api = { version = "3.0.0", path = "../../../../client/api" } -sc-chain-spec = { version = "3.0.0", path = "../../../../client/chain-spec" } -sp-state-machine = { version = "0.9.0", path = "../../../../primitives/state-machine" } -sp-api = { version = "3.0.0", path = "../../../../primitives/api" } -sp-blockchain = { version = "3.0.0", path = "../../../../primitives/blockchain" } -sp-runtime = { version = "3.0.0", path = "../../../../primitives/runtime" } -sp-externalities = { version = "0.9.0", path = "../../../../primitives/externalities" } -sp-core = { version = "3.0.0", path = "../../../../primitives/core" } -sp-keystore = { version = "0.9.0", path = "../../../../primitives/keystore" } -frame-try-runtime = { version = "0.9.0", path = "../../../../frame/try-runtime" } +sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../../client/service" } +sc-cli = { version = "0.10.0-dev", path = "../../../../client/cli" } +sc-executor = { version = "0.10.0-dev", path = "../../../../client/executor" } +sc-client-api = { version = "4.0.0-dev", path = "../../../../client/api" } +sc-chain-spec = { version = "4.0.0-dev", path = "../../../../client/chain-spec" } +sp-state-machine = { version = "0.10.0-dev", path = "../../../../primitives/state-machine" } +sp-api = { version = "4.0.0-dev", path = "../../../../primitives/api" } +sp-blockchain = { version = "4.0.0-dev", path = "../../../../primitives/blockchain" } +sp-runtime = { version = "4.0.0-dev", path = "../../../../primitives/runtime" } +sp-externalities = { version = "0.10.0-dev", path = "../../../../primitives/externalities" } +sp-core = { version = "4.0.0-dev", path = "../../../../primitives/core" } +sp-keystore = { version = "0.10.0-dev", path = "../../../../primitives/keystore" } +frame-try-runtime = { version = "0.10.0-dev", path = "../../../../frame/try-runtime" } -remote-externalities = { version = "0.9.0", path = "../../remote-externalities" } +remote-externalities = { version = "0.10.0-dev", path = "../../remote-externalities" } diff --git a/utils/wasm-builder/Cargo.toml b/utils/wasm-builder/Cargo.toml index 09c86ca76cc18..0b0182b4302ad 100644 --- a/utils/wasm-builder/Cargo.toml +++ b/utils/wasm-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-wasm-builder" -version = "4.0.0" +version = "5.0.0-dev" authors = ["Parity Technologies "] description = "Utility for building WASM binaries" edition = "2018" @@ -21,4 +21,4 @@ walkdir = "2.3.1" wasm-gc-api = "0.1.11" atty = "0.2.13" ansi_term = "0.12.1" -sp-maybe-compressed-blob = { version = "3.0.0", path = "../../primitives/maybe-compressed-blob" } +sp-maybe-compressed-blob = { version = "4.0.0-dev", path = "../../primitives/maybe-compressed-blob" } From 783833749fe07d33969e6be1cf9269b02b7fcb11 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Fri, 18 Jun 2021 14:56:49 +0200 Subject: [PATCH 07/32] Update lockfile --- Cargo.lock | 332 ++++++++++++++++++++++++++--------------------------- 1 file changed, 166 insertions(+), 166 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb944b782abd9..9e3d62194c8bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1749,7 +1749,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" -version = "3.1.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -1769,7 +1769,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "Inflector", "chrono", @@ -1791,7 +1791,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -1804,7 +1804,7 @@ dependencies = [ [[package]] name = "frame-executive" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -1824,7 +1824,7 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "13.0.0" +version = "14.0.0-dev" dependencies = [ "parity-scale-codec", "serde", @@ -1834,7 +1834,7 @@ dependencies = [ [[package]] name = "frame-support" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "bitflags", "frame-metadata", @@ -1863,7 +1863,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -1874,7 +1874,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.0.0", @@ -1913,7 +1913,7 @@ dependencies = [ [[package]] name = "frame-system" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "criterion", "frame-support", @@ -1932,7 +1932,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -1955,7 +1955,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "frame-support", "parity-scale-codec", @@ -3775,7 +3775,7 @@ dependencies = [ [[package]] name = "max-encoded-len" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -3788,7 +3788,7 @@ dependencies = [ [[package]] name = "max-encoded-len-derive" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -4110,7 +4110,7 @@ dependencies = [ [[package]] name = "node-bench" -version = "0.8.0" +version = "0.9.0-dev" dependencies = [ "derive_more", "fs_extra", @@ -4148,7 +4148,7 @@ dependencies = [ [[package]] name = "node-browser-testing" -version = "2.0.0" +version = "3.0.0-dev" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -4165,7 +4165,7 @@ dependencies = [ [[package]] name = "node-cli" -version = "2.0.0" +version = "3.0.0-dev" dependencies = [ "assert_cmd", "async-std", @@ -4247,7 +4247,7 @@ dependencies = [ [[package]] name = "node-executor" -version = "2.0.0" +version = "3.0.0-dev" dependencies = [ "criterion", "frame-benchmarking", @@ -4284,7 +4284,7 @@ dependencies = [ [[package]] name = "node-inspect" -version = "0.8.0" +version = "0.9.0-dev" dependencies = [ "derive_more", "log", @@ -4313,7 +4313,7 @@ dependencies = [ [[package]] name = "node-rpc" -version = "2.0.0" +version = "3.0.0-dev" dependencies = [ "jsonrpc-core", "node-primitives", @@ -4357,7 +4357,7 @@ dependencies = [ [[package]] name = "node-runtime" -version = "2.0.1" +version = "3.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4510,7 +4510,7 @@ dependencies = [ [[package]] name = "node-testing" -version = "2.0.0" +version = "3.0.0-dev" dependencies = [ "criterion", "frame-support", @@ -4706,7 +4706,7 @@ dependencies = [ [[package]] name = "pallet-assets" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -4722,7 +4722,7 @@ dependencies = [ [[package]] name = "pallet-atomic-swap" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -4736,7 +4736,7 @@ dependencies = [ [[package]] name = "pallet-aura" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -4755,7 +4755,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -4772,7 +4772,7 @@ dependencies = [ [[package]] name = "pallet-authorship" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -4788,7 +4788,7 @@ dependencies = [ [[package]] name = "pallet-babe" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4816,7 +4816,7 @@ dependencies = [ [[package]] name = "pallet-balances" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -4833,7 +4833,7 @@ dependencies = [ [[package]] name = "pallet-bounties" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -4850,7 +4850,7 @@ dependencies = [ [[package]] name = "pallet-collective" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -4867,7 +4867,7 @@ dependencies = [ [[package]] name = "pallet-contracts" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "assert_matches", "bitflags", @@ -4900,7 +4900,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "bitflags", "parity-scale-codec", @@ -4912,7 +4912,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "proc-macro2", "quote", @@ -4921,7 +4921,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4940,7 +4940,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc-runtime-api" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -4951,7 +4951,7 @@ dependencies = [ [[package]] name = "pallet-democracy" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -4971,7 +4971,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4997,7 +4997,7 @@ dependencies = [ [[package]] name = "pallet-elections" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5012,7 +5012,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" -version = "4.0.0" +version = "5.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5031,7 +5031,7 @@ dependencies = [ [[package]] name = "pallet-example" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5047,7 +5047,7 @@ dependencies = [ [[package]] name = "pallet-example-offchain-worker" -version = "2.0.1" +version = "3.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5063,7 +5063,7 @@ dependencies = [ [[package]] name = "pallet-example-parallel" -version = "2.0.1" +version = "3.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5078,7 +5078,7 @@ dependencies = [ [[package]] name = "pallet-gilt" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5094,7 +5094,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" -version = "3.1.0" +version = "4.0.0-dev" dependencies = [ "finality-grandpa", "frame-benchmarking", @@ -5123,7 +5123,7 @@ dependencies = [ [[package]] name = "pallet-identity" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5139,7 +5139,7 @@ dependencies = [ [[package]] name = "pallet-im-online" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5158,7 +5158,7 @@ dependencies = [ [[package]] name = "pallet-indices" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5174,7 +5174,7 @@ dependencies = [ [[package]] name = "pallet-lottery" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5191,7 +5191,7 @@ dependencies = [ [[package]] name = "pallet-membership" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5206,7 +5206,7 @@ dependencies = [ [[package]] name = "pallet-mmr" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "ckb-merkle-mountain-range", "env_logger 0.8.3", @@ -5224,7 +5224,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5258,7 +5258,7 @@ dependencies = [ [[package]] name = "pallet-multisig" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5273,7 +5273,7 @@ dependencies = [ [[package]] name = "pallet-nicks" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5287,7 +5287,7 @@ dependencies = [ [[package]] name = "pallet-node-authorization" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5301,7 +5301,7 @@ dependencies = [ [[package]] name = "pallet-offences" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5318,7 +5318,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5344,7 +5344,7 @@ dependencies = [ [[package]] name = "pallet-proxy" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5361,7 +5361,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5375,7 +5375,7 @@ dependencies = [ [[package]] name = "pallet-recovery" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "enumflags2", "frame-support", @@ -5390,7 +5390,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-scored-pool" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5420,7 +5420,7 @@ dependencies = [ [[package]] name = "pallet-session" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5441,7 +5441,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5464,7 +5464,7 @@ dependencies = [ [[package]] name = "pallet-society" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-support-test", @@ -5480,7 +5480,7 @@ dependencies = [ [[package]] name = "pallet-staking" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5512,7 +5512,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -5523,7 +5523,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "log", "sp-arithmetic", @@ -5531,7 +5531,7 @@ dependencies = [ [[package]] name = "pallet-sudo" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5558,7 +5558,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5576,7 +5576,7 @@ dependencies = [ [[package]] name = "pallet-tips" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5594,7 +5594,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -5638,7 +5638,7 @@ dependencies = [ [[package]] name = "pallet-transaction-storage" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5658,7 +5658,7 @@ dependencies = [ [[package]] name = "pallet-treasury" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5676,7 +5676,7 @@ dependencies = [ [[package]] name = "pallet-uniques" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5691,7 +5691,7 @@ dependencies = [ [[package]] name = "pallet-utility" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -5706,7 +5706,7 @@ dependencies = [ [[package]] name = "pallet-vesting" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6764,7 +6764,7 @@ dependencies = [ [[package]] name = "remote-externalities" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "env_logger 0.8.3", "frame-support", @@ -6993,7 +6993,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-trait", "derive_more", @@ -7025,7 +7025,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -7050,7 +7050,7 @@ dependencies = [ [[package]] name = "sc-block-builder" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -7067,7 +7067,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7087,7 +7087,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -7097,7 +7097,7 @@ dependencies = [ [[package]] name = "sc-cli" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "chrono", "fdlimit", @@ -7135,7 +7135,7 @@ dependencies = [ [[package]] name = "sc-client-api" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "derive_more", "fnv", @@ -7172,7 +7172,7 @@ dependencies = [ [[package]] name = "sc-client-db" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "blake2-rfc", "hash-db", @@ -7206,7 +7206,7 @@ dependencies = [ [[package]] name = "sc-consensus" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "parking_lot 0.11.1", "sc-client-api", @@ -7217,7 +7217,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-trait", "derive_more", @@ -7259,7 +7259,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-trait", "derive_more", @@ -7315,7 +7315,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "derive_more", "futures 0.3.15", @@ -7344,7 +7344,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "fork-tree", "parity-scale-codec", @@ -7356,7 +7356,7 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "assert_matches", "async-trait", @@ -7395,7 +7395,7 @@ dependencies = [ [[package]] name = "sc-consensus-pow" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-trait", "derive_more", @@ -7418,7 +7418,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-trait", "futures 0.3.15", @@ -7446,7 +7446,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "sc-client-api", "sp-authorship", @@ -7456,7 +7456,7 @@ dependencies = [ [[package]] name = "sc-executor" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "assert_matches", "derive_more", @@ -7497,7 +7497,7 @@ dependencies = [ [[package]] name = "sc-executor-common" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "derive_more", "parity-scale-codec", @@ -7513,7 +7513,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "log", "parity-scale-codec", @@ -7527,7 +7527,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "assert_matches", "cfg-if 1.0.0", @@ -7546,7 +7546,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "assert_matches", "async-trait", @@ -7595,7 +7595,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "derive_more", "finality-grandpa", @@ -7625,7 +7625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-warp-sync" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "derive_more", "finality-grandpa", @@ -7651,7 +7651,7 @@ dependencies = [ [[package]] name = "sc-informant" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "ansi_term 0.12.1", "futures 0.3.15", @@ -7668,7 +7668,7 @@ dependencies = [ [[package]] name = "sc-keystore" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "async-trait", "derive_more", @@ -7688,7 +7688,7 @@ dependencies = [ [[package]] name = "sc-light" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "hash-db", "lazy_static", @@ -7706,7 +7706,7 @@ dependencies = [ [[package]] name = "sc-network" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "assert_matches", "async-std", @@ -7766,7 +7766,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-std", "futures 0.3.15", @@ -7814,7 +7814,7 @@ dependencies = [ [[package]] name = "sc-offchain" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "bytes 0.5.6", "fnv", @@ -7850,7 +7850,7 @@ dependencies = [ [[package]] name = "sc-peerset" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "futures 0.3.15", "libp2p", @@ -7871,7 +7871,7 @@ dependencies = [ [[package]] name = "sc-rpc" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "assert_matches", "futures 0.1.31", @@ -7914,7 +7914,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "derive_more", "futures 0.3.15", @@ -7938,7 +7938,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "futures 0.1.31", "jsonrpc-core", @@ -7969,7 +7969,7 @@ dependencies = [ [[package]] name = "sc-service" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-std", "async-trait", @@ -8076,7 +8076,7 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "log", "parity-scale-codec", @@ -8090,7 +8090,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -8109,7 +8109,7 @@ dependencies = [ [[package]] name = "sc-telemetry" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "chrono", "futures 0.3.15", @@ -8128,7 +8128,7 @@ dependencies = [ [[package]] name = "sc-tracing" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "ansi_term 0.12.1", "atty", @@ -8164,7 +8164,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -8174,7 +8174,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "assert_matches", "criterion", @@ -8199,7 +8199,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "assert_matches", "futures 0.3.15", @@ -8665,7 +8665,7 @@ dependencies = [ [[package]] name = "sp-allocator" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "log", "sp-core", @@ -8676,7 +8676,7 @@ dependencies = [ [[package]] name = "sp-api" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "hash-db", "log", @@ -8693,7 +8693,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "blake2-rfc", "proc-macro-crate 1.0.0", @@ -8725,7 +8725,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "max-encoded-len", "parity-scale-codec", @@ -8749,7 +8749,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "criterion", "integer-sqrt", @@ -8788,7 +8788,7 @@ dependencies = [ [[package]] name = "sp-authorship" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "async-trait", "parity-scale-codec", @@ -8799,7 +8799,7 @@ dependencies = [ [[package]] name = "sp-block-builder" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "sp-api", @@ -8810,7 +8810,7 @@ dependencies = [ [[package]] name = "sp-blockchain" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "futures 0.3.15", "log", @@ -8835,7 +8835,7 @@ dependencies = [ [[package]] name = "sp-consensus" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-trait", "futures 0.3.15", @@ -8862,7 +8862,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-trait", "parity-scale-codec", @@ -8878,7 +8878,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-trait", "merlin", @@ -8930,7 +8930,7 @@ dependencies = [ [[package]] name = "sp-core" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "base58", "blake2-rfc", @@ -8980,7 +8980,7 @@ dependencies = [ [[package]] name = "sp-database" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "kvdb", "parking_lot 0.11.1", @@ -8997,7 +8997,7 @@ dependencies = [ [[package]] name = "sp-externalities" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "environmental", "parity-scale-codec", @@ -9007,7 +9007,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "finality-grandpa", "log", @@ -9023,7 +9023,7 @@ dependencies = [ [[package]] name = "sp-inherents" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "async-trait", "futures 0.3.15", @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "sp-io" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "futures 0.3.15", "hash-db", @@ -9071,7 +9071,7 @@ dependencies = [ [[package]] name = "sp-keystore" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "async-trait", "derive_more", @@ -9089,7 +9089,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "ruzstd", "zstd", @@ -9097,7 +9097,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "rand 0.7.3", @@ -9112,7 +9112,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "proc-macro-crate 1.0.0", @@ -9157,7 +9157,7 @@ dependencies = [ [[package]] name = "sp-rpc" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "rustc-hash", "serde", @@ -9168,7 +9168,7 @@ dependencies = [ [[package]] name = "sp-runtime" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "either", "hash256-std-hasher", @@ -9194,7 +9194,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -9216,7 +9216,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "Inflector", "proc-macro-crate 1.0.0", @@ -9266,7 +9266,7 @@ dependencies = [ [[package]] name = "sp-sandbox" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "assert_matches", "parity-scale-codec", @@ -9288,7 +9288,7 @@ dependencies = [ [[package]] name = "sp-session" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "sp-api", @@ -9300,7 +9300,7 @@ dependencies = [ [[package]] name = "sp-staking" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -9309,7 +9309,7 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "hash-db", "hex-literal", @@ -9334,11 +9334,11 @@ dependencies = [ [[package]] name = "sp-std" -version = "3.0.0" +version = "4.0.0-dev" [[package]] name = "sp-storage" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9350,7 +9350,7 @@ dependencies = [ [[package]] name = "sp-tasks" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "log", "parity-scale-codec", @@ -9375,7 +9375,7 @@ dependencies = [ [[package]] name = "sp-timestamp" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "async-trait", "futures-timer 3.0.2", @@ -9391,7 +9391,7 @@ dependencies = [ [[package]] name = "sp-tracing" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "erased-serde", "log", @@ -9423,7 +9423,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "async-trait", "log", @@ -9437,7 +9437,7 @@ dependencies = [ [[package]] name = "sp-trie" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "criterion", "hash-db", @@ -9455,7 +9455,7 @@ dependencies = [ [[package]] name = "sp-utils" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "futures 0.3.15", "futures-core", @@ -9466,7 +9466,7 @@ dependencies = [ [[package]] name = "sp-version" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9478,7 +9478,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "proc-macro-crate 1.0.0", @@ -9490,7 +9490,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -9618,7 +9618,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "chrono", "console_error_panic_hook", @@ -9650,7 +9650,7 @@ dependencies = [ [[package]] name = "substrate-frame-cli" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.15", @@ -9823,7 +9823,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "futures 0.3.15", "sc-service", @@ -9834,7 +9834,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "proc-macro-crate 1.0.0", "quote", @@ -9852,7 +9852,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" -version = "4.0.0" +version = "5.0.0-dev" dependencies = [ "ansi_term 0.12.1", "atty", @@ -10630,7 +10630,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "frame-try-runtime", "log", From 3f81fed39016817c15283d7f83d672101166549b Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Fri, 18 Jun 2021 12:56:20 +0200 Subject: [PATCH 08/32] WIP: Bump sp-transaction-pool as well --- Cargo.lock | 2 +- bin/node-template/node/Cargo.toml | 2 +- bin/node-template/runtime/Cargo.toml | 2 +- bin/node/bench/Cargo.toml | 2 +- bin/node/cli/Cargo.toml | 2 +- bin/node/rpc/Cargo.toml | 2 +- bin/node/runtime/Cargo.toml | 2 +- client/api/Cargo.toml | 2 +- client/basic-authorship/Cargo.toml | 2 +- client/consensus/manual-seal/Cargo.toml | 2 +- client/informant/Cargo.toml | 2 +- client/offchain/Cargo.toml | 2 +- client/rpc-api/Cargo.toml | 2 +- client/rpc/Cargo.toml | 2 +- client/service/Cargo.toml | 2 +- client/service/test/Cargo.toml | 2 +- client/transaction-pool/Cargo.toml | 2 +- client/transaction-pool/graph/Cargo.toml | 2 +- primitives/transaction-pool/Cargo.toml | 2 +- test-utils/runtime/Cargo.toml | 2 +- test-utils/runtime/transaction-pool/Cargo.toml | 2 +- test-utils/test-runner/Cargo.toml | 2 +- utils/frame/rpc/system/Cargo.toml | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9e3d62194c8bd..bfc1ffa28f00b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9408,7 +9408,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "derive_more", "futures 0.3.15", diff --git a/bin/node-template/node/Cargo.toml b/bin/node-template/node/Cargo.toml index 518516eb52b67..054b3ce47538b 100644 --- a/bin/node-template/node/Cargo.toml +++ b/bin/node-template/node/Cargo.toml @@ -27,7 +27,7 @@ sc-telemetry = { version = "4.0.0-dev", path = "../../../client/telemetry" } sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" } sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" } -sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" } sc-consensus-aura = { version = "0.10.0-dev", path = "../../../client/consensus/aura" } sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consensus/aura" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } diff --git a/bin/node-template/runtime/Cargo.toml b/bin/node-template/runtime/Cargo.toml index afad9a527dc99..c7bac6f8e2e96 100644 --- a/bin/node-template/runtime/Cargo.toml +++ b/bin/node-template/runtime/Cargo.toml @@ -33,7 +33,7 @@ sp-offchain = { version = "3.0.0", default-features = false, path = "../../../pr sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" } sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } -sp-transaction-pool = { version = "3.0.0", default-features = false, path = "../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" } sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" } # Used for the node template's RPCs diff --git a/bin/node/bench/Cargo.toml b/bin/node/bench/Cargo.toml index e4f961e2677b0..38dbb93e1171e 100644 --- a/bin/node/bench/Cargo.toml +++ b/bin/node/bench/Cargo.toml @@ -26,7 +26,7 @@ kvdb-rocksdb = "0.11.0" sp-trie = { version = "4.0.0-dev", path = "../../../primitives/trie" } sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } -sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" } sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" } sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/timestamp" } diff --git a/bin/node/cli/Cargo.toml b/bin/node/cli/Cargo.toml index 78961ebbaf069..dc04a0ba44bc3 100644 --- a/bin/node/cli/Cargo.toml +++ b/bin/node/cli/Cargo.toml @@ -56,7 +56,7 @@ sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } -sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" } # client dependencies sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" } diff --git a/bin/node/rpc/Cargo.toml b/bin/node/rpc/Cargo.toml index 327da104df4e8..665aac2a2f3d1 100644 --- a/bin/node/rpc/Cargo.toml +++ b/bin/node/rpc/Cargo.toml @@ -34,5 +34,5 @@ sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" } sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } -sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" } substrate-frame-rpc-system = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/system" } diff --git a/bin/node/runtime/Cargo.toml b/bin/node/runtime/Cargo.toml index 6b091fd9cddb4..e3bc57a811b51 100644 --- a/bin/node/runtime/Cargo.toml +++ b/bin/node/runtime/Cargo.toml @@ -33,7 +33,7 @@ sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../.. sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" } sp-keyring = { version = "3.0.0", optional = true, path = "../../../primitives/keyring" } sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" } -sp-transaction-pool = { version = "3.0.0", default-features = false, path = "../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" } sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" } sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/npos-elections" } diff --git a/client/api/Cargo.toml b/client/api/Cargo.toml index 0f7d43e761fd1..862f72a82506d 100644 --- a/client/api/Cargo.toml +++ b/client/api/Cargo.toml @@ -39,7 +39,7 @@ sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../pr sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } sp-trie = { version = "4.0.0-dev", path = "../../primitives/trie" } sp-storage = { version = "4.0.0-dev", path = "../../primitives/storage" } -sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" } [dev-dependencies] diff --git a/client/basic-authorship/Cargo.toml b/client/basic-authorship/Cargo.toml index be3e6e597a5b2..a0cdf5731698e 100644 --- a/client/basic-authorship/Cargo.toml +++ b/client/basic-authorship/Cargo.toml @@ -26,7 +26,7 @@ sc-client-api = { version = "4.0.0-dev", path = "../api" } sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" } sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" } -sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" } sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } sc-proposer-metrics = { version = "0.9.0", path = "../proposer-metrics" } diff --git a/client/consensus/manual-seal/Cargo.toml b/client/consensus/manual-seal/Cargo.toml index 161906c4ade64..7a46722786f86 100644 --- a/client/consensus/manual-seal/Cargo.toml +++ b/client/consensus/manual-seal/Cargo.toml @@ -40,7 +40,7 @@ sp-core = { path = "../../../primitives/core", version = "4.0.0-dev"} sp-keystore = { path = "../../../primitives/keystore", version = "0.10.0-dev"} sp-keyring = { path = "../../../primitives/keyring", version = "3.0.0"} sp-api = { path = "../../../primitives/api", version = "4.0.0-dev"} -sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "3.0.0"} +sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "4.0.0-dev"} sp-timestamp = { path = "../../../primitives/timestamp", version = "4.0.0-dev"} prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"} diff --git a/client/informant/Cargo.toml b/client/informant/Cargo.toml index fb81b7109a6c9..cce74400548f5 100644 --- a/client/informant/Cargo.toml +++ b/client/informant/Cargo.toml @@ -22,5 +22,5 @@ sc-client-api = { version = "4.0.0-dev", path = "../api" } sc-network = { version = "0.10.0-dev", path = "../network" } sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } -sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" } wasm-timer = "0.2" diff --git a/client/offchain/Cargo.toml b/client/offchain/Cargo.toml index ea1b5cf743e91..1b1418a1b5752 100644 --- a/client/offchain/Cargo.toml +++ b/client/offchain/Cargo.toml @@ -41,7 +41,7 @@ hyper-rustls = "0.21.0" sc-client-db = { version = "0.10.0-dev", default-features = true, path = "../db" } sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" } -sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" } sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } diff --git a/client/rpc-api/Cargo.toml b/client/rpc-api/Cargo.toml index d1bc4d9e84826..7fda6769e527f 100644 --- a/client/rpc-api/Cargo.toml +++ b/client/rpc-api/Cargo.toml @@ -28,6 +28,6 @@ sp-runtime = { path = "../../primitives/runtime" , version = "4.0.0-dev"} sp-chain-spec = { path = "../../primitives/chain-spec" , version = "3.0.0"} serde = { version = "1.0.101", features = ["derive"] } serde_json = "1.0.41" -sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" } sp-rpc = { version = "4.0.0-dev", path = "../../primitives/rpc" } sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } diff --git a/client/rpc/Cargo.toml b/client/rpc/Cargo.toml index 8c73cd0f4fb29..1062188d3117f 100644 --- a/client/rpc/Cargo.toml +++ b/client/rpc/Cargo.toml @@ -35,7 +35,7 @@ sp-chain-spec = { version = "3.0.0", path = "../../primitives/chain-spec" } sc-executor = { version = "0.10.0-dev", path = "../executor" } sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } sc-keystore = { version = "4.0.0-dev", path = "../keystore" } -sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" } sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } sc-tracing = { version = "4.0.0-dev", path = "../tracing" } hash-db = { version = "0.15.2", default-features = false } diff --git a/client/service/Cargo.toml b/client/service/Cargo.toml index 35c4ec5171c94..98865bd5d02e1 100644 --- a/client/service/Cargo.toml +++ b/client/service/Cargo.toml @@ -64,7 +64,7 @@ sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db codec = { package = "parity-scale-codec", version = "2.0.0" } sc-executor = { version = "0.10.0-dev", path = "../executor" } sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" } -sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" } sp-transaction-storage-proof = { version = "4.0.0-dev", path = "../../primitives/transaction-storage-proof" } sc-rpc-server = { version = "4.0.0-dev", path = "../rpc-servers" } sc-rpc = { version = "4.0.0-dev", path = "../rpc" } diff --git a/client/service/test/Cargo.toml b/client/service/test/Cargo.toml index 65b6b2412aa31..160dfccd970c2 100644 --- a/client/service/test/Cargo.toml +++ b/client/service/test/Cargo.toml @@ -33,7 +33,7 @@ sc-network = { version = "0.10.0-dev", path = "../../network" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } -sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" } substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } sc-client-api = { version = "4.0.0-dev", path = "../../api" } diff --git a/client/transaction-pool/Cargo.toml b/client/transaction-pool/Cargo.toml index 57aba1ce343bb..86f99c5180e56 100644 --- a/client/transaction-pool/Cargo.toml +++ b/client/transaction-pool/Cargo.toml @@ -27,7 +27,7 @@ sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } -sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" } sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } wasm-timer = "0.2" diff --git a/client/transaction-pool/graph/Cargo.toml b/client/transaction-pool/graph/Cargo.toml index 18047574e07ca..3d590f06765f1 100644 --- a/client/transaction-pool/graph/Cargo.toml +++ b/client/transaction-pool/graph/Cargo.toml @@ -24,7 +24,7 @@ sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" sp-utils = { version = "4.0.0-dev", path = "../../../primitives/utils" } sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } -sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } linked-hash-map = "0.5.2" retain_mut = "0.1.3" diff --git a/primitives/transaction-pool/Cargo.toml b/primitives/transaction-pool/Cargo.toml index baed51441123c..19672dd70cebb 100644 --- a/primitives/transaction-pool/Cargo.toml +++ b/primitives/transaction-pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-transaction-pool" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/test-utils/runtime/Cargo.toml b/test-utils/runtime/Cargo.toml index 525ae83ea79d3..c907446f7a464 100644 --- a/test-utils/runtime/Cargo.toml +++ b/test-utils/runtime/Cargo.toml @@ -37,7 +37,7 @@ frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, pa pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../frame/timestamp" } sp-finality-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../primitives/finality-grandpa" } sp-trie = { version = "4.0.0-dev", default-features = false, path = "../../primitives/trie" } -sp-transaction-pool = { version = "3.0.0", default-features = false, path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../primitives/transaction-pool" } trie-db = { version = "0.22.2", default-features = false } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } sc-service = { version = "0.10.0-dev", default-features = false, optional = true, features = ["test-helpers"], path = "../../client/service" } diff --git a/test-utils/runtime/transaction-pool/Cargo.toml b/test-utils/runtime/transaction-pool/Cargo.toml index ac293b4a22e3d..0b4d4d5ba6b36 100644 --- a/test-utils/runtime/transaction-pool/Cargo.toml +++ b/test-utils/runtime/transaction-pool/Cargo.toml @@ -17,7 +17,7 @@ parking_lot = "0.11.1" codec = { package = "parity-scale-codec", version = "2.0.0" } sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } -sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" } sc-transaction-graph = { version = "4.0.0-dev", path = "../../../client/transaction-pool/graph" } futures = { version = "0.3.1", features = ["compat"] } derive_more = "0.99.2" diff --git a/test-utils/test-runner/Cargo.toml b/test-utils/test-runner/Cargo.toml index 4cd6aedd909b0..5a7dad7d66f81 100644 --- a/test-utils/test-runner/Cargo.toml +++ b/test-utils/test-runner/Cargo.toml @@ -26,7 +26,7 @@ sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } sp-block-builder = { version = "4.0.0-dev", path = "../../primitives/block-builder" } sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } sp-io = { version = "4.0.0-dev", path = "../../primitives/io" } -sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" } sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } diff --git a/utils/frame/rpc/system/Cargo.toml b/utils/frame/rpc/system/Cargo.toml index 89f34f258f610..929a94442b44d 100644 --- a/utils/frame/rpc/system/Cargo.toml +++ b/utils/frame/rpc/system/Cargo.toml @@ -26,7 +26,7 @@ sp-api = { version = "4.0.0-dev", path = "../../../../primitives/api" } frame-system-rpc-runtime-api = { version = "3.0.0", path = "../../../../frame/system/rpc/runtime-api" } sp-core = { version = "4.0.0-dev", path = "../../../../primitives/core" } sp-blockchain = { version = "4.0.0-dev", path = "../../../../primitives/blockchain" } -sp-transaction-pool = { version = "3.0.0", path = "../../../../primitives/transaction-pool" } +sp-transaction-pool = { version = "4.0.0-dev", path = "../../../../primitives/transaction-pool" } sp-block-builder = { version = "4.0.0-dev", path = "../../../../primitives/block-builder" } sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" } From 6df80b97fceb315c6a8fa03b83e776cfbb513e6a Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Fri, 18 Jun 2021 15:01:12 +0200 Subject: [PATCH 09/32] WIP: Bump sp-offchain as well --- Cargo.lock | 2 +- bin/node-template/runtime/Cargo.toml | 2 +- bin/node/runtime/Cargo.toml | 2 +- client/offchain/Cargo.toml | 2 +- client/rpc/Cargo.toml | 2 +- primitives/offchain/Cargo.toml | 2 +- test-utils/runtime/Cargo.toml | 2 +- test-utils/test-runner/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bfc1ffa28f00b..1a1aef4be3b99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9140,7 +9140,7 @@ dependencies = [ [[package]] name = "sp-offchain" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "sp-api", "sp-core", diff --git a/bin/node-template/runtime/Cargo.toml b/bin/node-template/runtime/Cargo.toml index c7bac6f8e2e96..a2ba091643849 100644 --- a/bin/node-template/runtime/Cargo.toml +++ b/bin/node-template/runtime/Cargo.toml @@ -29,7 +29,7 @@ sp-block-builder = { path = "../../../primitives/block-builder", default-feature sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/aura" } sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" } sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "4.0.0-dev"} -sp-offchain = { version = "3.0.0", default-features = false, path = "../../../primitives/offchain" } +sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" } sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" } sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } diff --git a/bin/node/runtime/Cargo.toml b/bin/node/runtime/Cargo.toml index e3bc57a811b51..83f5af57da8e5 100644 --- a/bin/node/runtime/Cargo.toml +++ b/bin/node/runtime/Cargo.toml @@ -25,7 +25,7 @@ sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = " sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "4.0.0-dev"} sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents" } node-primitives = { version = "2.0.0", default-features = false, path = "../primitives" } -sp-offchain = { version = "3.0.0", default-features = false, path = "../../../primitives/offchain" } +sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" } sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" } sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" } sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" } diff --git a/client/offchain/Cargo.toml b/client/offchain/Cargo.toml index 1b1418a1b5752..afe7dca15b7d7 100644 --- a/client/offchain/Cargo.toml +++ b/client/offchain/Cargo.toml @@ -28,7 +28,7 @@ sc-keystore = { version = "4.0.0-dev", path = "../keystore" } sc-network = { version = "0.10.0-dev", path = "../network" } sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } -sp-offchain = { version = "3.0.0", path = "../../primitives/offchain" } +sp-offchain = { version = "4.0.0-dev", path = "../../primitives/offchain" } sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } threadpool = "1.7" diff --git a/client/rpc/Cargo.toml b/client/rpc/Cargo.toml index 1062188d3117f..c261d15c266f9 100644 --- a/client/rpc/Cargo.toml +++ b/client/rpc/Cargo.toml @@ -25,7 +25,7 @@ rpc = { package = "jsonrpc-core", version = "15.1.0" } sp-version = { version = "4.0.0-dev", path = "../../primitives/version" } serde_json = "1.0.41" sp-session = { version = "4.0.0-dev", path = "../../primitives/session" } -sp-offchain = { version = "3.0.0", path = "../../primitives/offchain" } +sp-offchain = { version = "4.0.0-dev", path = "../../primitives/offchain" } sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } sp-utils = { version = "4.0.0-dev", path = "../../primitives/utils" } sp-rpc = { version = "4.0.0-dev", path = "../../primitives/rpc" } diff --git a/primitives/offchain/Cargo.toml b/primitives/offchain/Cargo.toml index 8982d0cf2c994..500d3e8b867a1 100644 --- a/primitives/offchain/Cargo.toml +++ b/primitives/offchain/Cargo.toml @@ -1,7 +1,7 @@ [package] description = "Substrate offchain workers primitives" name = "sp-offchain" -version = "3.0.0" +version = "4.0.0-dev" license = "Apache-2.0" authors = ["Parity Technologies "] edition = "2018" diff --git a/test-utils/runtime/Cargo.toml b/test-utils/runtime/Cargo.toml index c907446f7a464..48c6ee73b49bf 100644 --- a/test-utils/runtime/Cargo.toml +++ b/test-utils/runtime/Cargo.toml @@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features = sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" } sp-keyring = { version = "3.0.0", optional = true, path = "../../primitives/keyring" } memory-db = { version = "0.26.0", default-features = false } -sp-offchain = { path = "../../primitives/offchain", default-features = false, version = "3.0.0"} +sp-offchain = { path = "../../primitives/offchain", default-features = false, version = "4.0.0-dev"} sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } sp-runtime-interface = { path = "../../primitives/runtime-interface", default-features = false, version = "4.0.0-dev"} diff --git a/test-utils/test-runner/Cargo.toml b/test-utils/test-runner/Cargo.toml index 5a7dad7d66f81..fca22e02105c1 100644 --- a/test-utils/test-runner/Cargo.toml +++ b/test-utils/test-runner/Cargo.toml @@ -31,7 +31,7 @@ sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/comm sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } sp-session = { version = "4.0.0-dev", path = "../../primitives/session" } -sp-offchain = { version = "3.0.0", path = "../../primitives/offchain" } +sp-offchain = { version = "4.0.0-dev", path = "../../primitives/offchain" } sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" } sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } From fb55d05583f47d4fd29f7fa5f048385752b5f282 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Fri, 18 Jun 2021 15:01:25 +0200 Subject: [PATCH 10/32] WIP: Bump frame-system-rpc-runtime-api as well --- Cargo.lock | 2 +- bin/node-template/runtime/Cargo.toml | 2 +- bin/node/runtime/Cargo.toml | 2 +- frame/system/rpc/runtime-api/Cargo.toml | 2 +- test-utils/runtime/Cargo.toml | 2 +- utils/frame/rpc/system/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1a1aef4be3b99..b0085fd32bbee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1947,7 +1947,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "sp-api", diff --git a/bin/node-template/runtime/Cargo.toml b/bin/node-template/runtime/Cargo.toml index a2ba091643849..bf416835b1c8c 100644 --- a/bin/node-template/runtime/Cargo.toml +++ b/bin/node-template/runtime/Cargo.toml @@ -37,7 +37,7 @@ sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" } # Used for the node template's RPCs -frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" } +frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" } pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" } # Used for runtime benchmarking diff --git a/bin/node/runtime/Cargo.toml b/bin/node/runtime/Cargo.toml index 83f5af57da8e5..f4a62ccc9c11c 100644 --- a/bin/node/runtime/Cargo.toml +++ b/bin/node/runtime/Cargo.toml @@ -44,7 +44,7 @@ frame-support = { version = "4.0.0-dev", default-features = false, path = "../.. frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" } frame-system-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/benchmarking", optional = true } frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/election-provider-support" } -frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" } +frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" } frame-try-runtime = { version = "0.10.0-dev", default-features = false, path = "../../../frame/try-runtime", optional = true } pallet-assets = { version = "4.0.0-dev", default-features = false, path = "../../../frame/assets" } pallet-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/authority-discovery" } diff --git a/frame/system/rpc/runtime-api/Cargo.toml b/frame/system/rpc/runtime-api/Cargo.toml index 15fd710a148bb..fce29612b4d8c 100644 --- a/frame/system/rpc/runtime-api/Cargo.toml +++ b/frame/system/rpc/runtime-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-system-rpc-runtime-api" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/test-utils/runtime/Cargo.toml b/test-utils/runtime/Cargo.toml index 48c6ee73b49bf..141050f1535ed 100644 --- a/test-utils/runtime/Cargo.toml +++ b/test-utils/runtime/Cargo.toml @@ -33,7 +33,7 @@ sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primit sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } pallet-babe = { version = "4.0.0-dev", default-features = false, path = "../../frame/babe" } frame-system = { version = "4.0.0-dev", default-features = false, path = "../../frame/system" } -frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../frame/system/rpc/runtime-api" } +frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../frame/system/rpc/runtime-api" } pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../frame/timestamp" } sp-finality-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../primitives/finality-grandpa" } sp-trie = { version = "4.0.0-dev", default-features = false, path = "../../primitives/trie" } diff --git a/utils/frame/rpc/system/Cargo.toml b/utils/frame/rpc/system/Cargo.toml index 929a94442b44d..5f94aee2da2b6 100644 --- a/utils/frame/rpc/system/Cargo.toml +++ b/utils/frame/rpc/system/Cargo.toml @@ -23,7 +23,7 @@ log = "0.4.8" serde = { version = "1.0.101", features = ["derive"] } sp-runtime = { version = "4.0.0-dev", path = "../../../../primitives/runtime" } sp-api = { version = "4.0.0-dev", path = "../../../../primitives/api" } -frame-system-rpc-runtime-api = { version = "3.0.0", path = "../../../../frame/system/rpc/runtime-api" } +frame-system-rpc-runtime-api = { version = "4.0.0-dev", path = "../../../../frame/system/rpc/runtime-api" } sp-core = { version = "4.0.0-dev", path = "../../../../primitives/core" } sp-blockchain = { version = "4.0.0-dev", path = "../../../../primitives/blockchain" } sp-transaction-pool = { version = "4.0.0-dev", path = "../../../../primitives/transaction-pool" } From 583547c84e13984e2962ca40a638062435d59468 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Fri, 18 Jun 2021 15:01:33 +0200 Subject: [PATCH 11/32] WIP: Bump sp-authority-discovery as well --- Cargo.lock | 2 +- bin/node/cli/Cargo.toml | 2 +- bin/node/runtime/Cargo.toml | 2 +- client/authority-discovery/Cargo.toml | 2 +- frame/authority-discovery/Cargo.toml | 2 +- primitives/authority-discovery/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b0085fd32bbee..2323870a4d256 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8777,7 +8777,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "sp-api", diff --git a/bin/node/cli/Cargo.toml b/bin/node/cli/Cargo.toml index dc04a0ba44bc3..0d0597907e975 100644 --- a/bin/node/cli/Cargo.toml +++ b/bin/node/cli/Cargo.toml @@ -44,7 +44,7 @@ structopt = { version = "0.3.8", optional = true } parking_lot = "0.11.1" # primitives -sp-authority-discovery = { version = "3.0.0", path = "../../../primitives/authority-discovery" } +sp-authority-discovery = { version = "4.0.0-dev", path = "../../../primitives/authority-discovery" } sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" } grandpa-primitives = { version = "4.0.0-dev", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" } sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } diff --git a/bin/node/runtime/Cargo.toml b/bin/node/runtime/Cargo.toml index f4a62ccc9c11c..62c04a527b438 100644 --- a/bin/node/runtime/Cargo.toml +++ b/bin/node/runtime/Cargo.toml @@ -20,7 +20,7 @@ hex-literal = { version = "0.3.1", optional = true } log = { version = "0.4.14", default-features = false } # primitives -sp-authority-discovery = { version = "3.0.0", default-features = false, path = "../../../primitives/authority-discovery" } +sp-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/authority-discovery" } sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/babe" } sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "4.0.0-dev"} sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents" } diff --git a/client/authority-discovery/Cargo.toml b/client/authority-discovery/Cargo.toml index 5365c20ba96b7..bca84d18d0885 100644 --- a/client/authority-discovery/Cargo.toml +++ b/client/authority-discovery/Cargo.toml @@ -32,7 +32,7 @@ rand = "0.7.2" sc-client-api = { version = "4.0.0-dev", path = "../api" } sc-network = { version = "0.10.0-dev", path = "../network" } serde_json = "1.0.41" -sp-authority-discovery = { version = "3.0.0", path = "../../primitives/authority-discovery" } +sp-authority-discovery = { version = "4.0.0-dev", path = "../../primitives/authority-discovery" } sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } diff --git a/frame/authority-discovery/Cargo.toml b/frame/authority-discovery/Cargo.toml index d64b2c1c3820d..33faf0183e78a 100644 --- a/frame/authority-discovery/Cargo.toml +++ b/frame/authority-discovery/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -sp-authority-discovery = { version = "3.0.0", default-features = false, path = "../../primitives/authority-discovery" } +sp-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../primitives/authority-discovery" } sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../primitives/application-crypto" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } diff --git a/primitives/authority-discovery/Cargo.toml b/primitives/authority-discovery/Cargo.toml index 962df789490d9..c900324d85510 100644 --- a/primitives/authority-discovery/Cargo.toml +++ b/primitives/authority-discovery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-authority-discovery" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] description = "Authority discovery primitives" edition = "2018" From 5ee416765cb37f5da80c14b74d1570b073a416bb Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Fri, 18 Jun 2021 15:18:51 +0200 Subject: [PATCH 12/32] Manually deactivate dev-deps before `cargo unleash check` Otherwise we run into `Cycle detected` error. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f3b4751c78684..5f0b6522976f1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -333,6 +333,7 @@ unleash-check: # - if: $CI_COMMIT_REF_NAME =~ /^v[0-9]+\.[0-9]+.*$/ # i.e. v1.0, v2.1rc1 script: - cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS} + - cargo unleash de-dev-deps - cargo unleash check ${CARGO_UNLEASH_PKG_DEF} test-frame-examples-compile-to-wasm: From 39b7ca8750b673d6471da243a409978cde3260b0 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 6 Jul 2021 15:08:43 +0200 Subject: [PATCH 13/32] Bump sp-consensus-slots --- client/consensus/aura/Cargo.toml | 2 +- client/consensus/babe/Cargo.toml | 2 +- client/consensus/manual-seal/Cargo.toml | 2 +- client/consensus/slots/Cargo.toml | 2 +- primitives/consensus/aura/Cargo.toml | 2 +- primitives/consensus/babe/Cargo.toml | 2 +- primitives/consensus/slots/Cargo.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/client/consensus/aura/Cargo.toml b/client/consensus/aura/Cargo.toml index 973704a3c5c52..0b505a7c3dabf 100644 --- a/client/consensus/aura/Cargo.toml +++ b/client/consensus/aura/Cargo.toml @@ -20,7 +20,7 @@ sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" } sc-client-api = { version = "4.0.0-dev", path = "../../api" } codec = { package = "parity-scale-codec", version = "2.0.0" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } -sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" } +sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" } derive_more = "0.99.2" futures = "0.3.9" futures-timer = "3.0.1" diff --git a/client/consensus/babe/Cargo.toml b/client/consensus/babe/Cargo.toml index d4b98de5a4943..f1266932274ea 100644 --- a/client/consensus/babe/Cargo.toml +++ b/client/consensus/babe/Cargo.toml @@ -34,7 +34,7 @@ sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } -sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" } +sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" } sp-consensus-vrf = { version = "0.9.0", path = "../../../primitives/consensus/vrf" } sc-consensus-uncles = { version = "0.10.0-dev", path = "../uncles" } sc-consensus-slots = { version = "0.10.0-dev", path = "../slots" } diff --git a/client/consensus/manual-seal/Cargo.toml b/client/consensus/manual-seal/Cargo.toml index 7a46722786f86..ed16984560031 100644 --- a/client/consensus/manual-seal/Cargo.toml +++ b/client/consensus/manual-seal/Cargo.toml @@ -33,7 +33,7 @@ sp-consensus-babe = { path = "../../../primitives/consensus/babe", version = "0. sc-transaction-pool = { path = "../../transaction-pool", version = "4.0.0-dev"} sp-blockchain = { path = "../../../primitives/blockchain", version = "4.0.0-dev"} sp-consensus = { path = "../../../primitives/consensus/common", version = "0.10.0-dev"} -sp-consensus-slots = { path = "../../../primitives/consensus/slots", version = "0.9.0"} +sp-consensus-slots = { path = "../../../primitives/consensus/slots", version = "0.10.0-dev"} sp-inherents = { path = "../../../primitives/inherents", version = "4.0.0-dev"} sp-runtime = { path = "../../../primitives/runtime", version = "4.0.0-dev"} sp-core = { path = "../../../primitives/core", version = "4.0.0-dev"} diff --git a/client/consensus/slots/Cargo.toml b/client/consensus/slots/Cargo.toml index baaf99fb27204..72c3a4ddbf35e 100644 --- a/client/consensus/slots/Cargo.toml +++ b/client/consensus/slots/Cargo.toml @@ -21,7 +21,7 @@ sp-trie = { version = "4.0.0-dev", path = "../../../primitives/trie" } sp-application-crypto = { version = "4.0.0-dev", path = "../../../primitives/application-crypto" } sp-arithmetic = { version = "4.0.0-dev", path = "../../../primitives/arithmetic" } sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } -sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" } +sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" } sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } sp-state-machine = { version = "0.10.0-dev", path = "../../../primitives/state-machine" } sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } diff --git a/primitives/consensus/aura/Cargo.toml b/primitives/consensus/aura/Cargo.toml index 69da8d9f2c531..f989b2a1897d6 100644 --- a/primitives/consensus/aura/Cargo.toml +++ b/primitives/consensus/aura/Cargo.toml @@ -20,7 +20,7 @@ sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" } sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" } sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" } sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../timestamp" } -sp-consensus-slots = { version = "0.9.0", default-features = false, path = "../slots" } +sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" } sp-consensus = { version = "0.10.0-dev", path = "../common", optional = true } async-trait = { version = "0.1.48", optional = true } diff --git a/primitives/consensus/babe/Cargo.toml b/primitives/consensus/babe/Cargo.toml index 7fda2f8013654..f3ec491a3edad 100644 --- a/primitives/consensus/babe/Cargo.toml +++ b/primitives/consensus/babe/Cargo.toml @@ -19,7 +19,7 @@ merlin = { version = "2.0", default-features = false } sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" } sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" } sp-consensus = { version = "0.10.0-dev", optional = true, path = "../common" } -sp-consensus-slots = { version = "0.9.0", default-features = false, path = "../slots" } +sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" } sp-consensus-vrf = { version = "0.9.0", path = "../vrf", default-features = false } sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" } sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" } diff --git a/primitives/consensus/slots/Cargo.toml b/primitives/consensus/slots/Cargo.toml index 9538cc7c5dcba..9619f627a0b7c 100644 --- a/primitives/consensus/slots/Cargo.toml +++ b/primitives/consensus/slots/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-consensus-slots" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Primitives for slots-based consensus" edition = "2018" From ceb4d5535a54ae392391ac72751ca24e0a55514e Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 6 Jul 2021 15:12:42 +0200 Subject: [PATCH 14/32] Add missing Cargo.lock change --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 7a77204f2d517..a17d22a69030b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8887,7 +8887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "parity-scale-codec", "sp-arithmetic", From 1bdd6b8062f2e4635080be4c2304cfc0b21ea1a6 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 6 Jul 2021 15:13:10 +0200 Subject: [PATCH 15/32] Bump sp-consensus-vrf as well --- Cargo.lock | 2 +- client/consensus/babe/Cargo.toml | 2 +- frame/babe/Cargo.toml | 2 +- primitives/consensus/babe/Cargo.toml | 2 +- primitives/consensus/vrf/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a17d22a69030b..a3051bef24fd1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8896,7 +8896,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "parity-scale-codec", "schnorrkel", diff --git a/client/consensus/babe/Cargo.toml b/client/consensus/babe/Cargo.toml index f1266932274ea..0a01be507120b 100644 --- a/client/consensus/babe/Cargo.toml +++ b/client/consensus/babe/Cargo.toml @@ -35,7 +35,7 @@ sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-bu sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" } -sp-consensus-vrf = { version = "0.9.0", path = "../../../primitives/consensus/vrf" } +sp-consensus-vrf = { version = "0.10.0-dev", path = "../../../primitives/consensus/vrf" } sc-consensus-uncles = { version = "0.10.0-dev", path = "../uncles" } sc-consensus-slots = { version = "0.10.0-dev", path = "../slots" } sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } diff --git a/frame/babe/Cargo.toml b/frame/babe/Cargo.toml index f15fdb1c177e4..f1a93bb418e9f 100644 --- a/frame/babe/Cargo.toml +++ b/frame/babe/Cargo.toml @@ -22,7 +22,7 @@ pallet-session = { version = "4.0.0-dev", default-features = false, path = "../s pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../timestamp" } sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../primitives/application-crypto" } sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/babe" } -sp-consensus-vrf = { version = "0.9.0", default-features = false, path = "../../primitives/consensus/vrf" } +sp-consensus-vrf = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/vrf" } sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" } diff --git a/primitives/consensus/babe/Cargo.toml b/primitives/consensus/babe/Cargo.toml index f3ec491a3edad..aa5f29db0df78 100644 --- a/primitives/consensus/babe/Cargo.toml +++ b/primitives/consensus/babe/Cargo.toml @@ -20,7 +20,7 @@ sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" } sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" } sp-consensus = { version = "0.10.0-dev", optional = true, path = "../common" } sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" } -sp-consensus-vrf = { version = "0.9.0", path = "../vrf", default-features = false } +sp-consensus-vrf = { version = "0.10.0-dev", path = "../vrf", default-features = false } sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" } sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" } sp-keystore = { version = "0.10.0-dev", default-features = false, path = "../../keystore", optional = true } diff --git a/primitives/consensus/vrf/Cargo.toml b/primitives/consensus/vrf/Cargo.toml index 7512fe1d375ec..124cbf423f068 100644 --- a/primitives/consensus/vrf/Cargo.toml +++ b/primitives/consensus/vrf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-consensus-vrf" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Primitives for VRF based consensus" edition = "2018" From d8d2f59c1ea2c699e74f938eedd449182da642ca Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 6 Jul 2021 15:21:05 +0200 Subject: [PATCH 16/32] Bump sp-keyring as well --- Cargo.lock | 2 +- bin/node/cli/Cargo.toml | 2 +- bin/node/runtime/Cargo.toml | 2 +- bin/node/test-runner-example/Cargo.toml | 2 +- bin/node/testing/Cargo.toml | 2 +- client/cli/Cargo.toml | 2 +- client/consensus/aura/Cargo.toml | 2 +- client/consensus/babe/Cargo.toml | 2 +- client/consensus/babe/rpc/Cargo.toml | 2 +- client/consensus/manual-seal/Cargo.toml | 2 +- client/db/Cargo.toml | 2 +- client/finality-grandpa-warp-sync/Cargo.toml | 2 +- client/finality-grandpa/Cargo.toml | 2 +- client/finality-grandpa/rpc/Cargo.toml | 2 +- client/network/Cargo.toml | 2 +- client/transaction-pool/Cargo.toml | 2 +- frame/grandpa/Cargo.toml | 2 +- frame/indices/Cargo.toml | 2 +- primitives/keyring/Cargo.toml | 2 +- test-utils/client/Cargo.toml | 2 +- test-utils/runtime/Cargo.toml | 2 +- test-utils/test-runner/Cargo.toml | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a3051bef24fd1..1167d84d8dce9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9037,7 +9037,7 @@ dependencies = [ [[package]] name = "sp-keyring" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "lazy_static", "sp-core", diff --git a/bin/node/cli/Cargo.toml b/bin/node/cli/Cargo.toml index 0d0597907e975..e9cb8318103a0 100644 --- a/bin/node/cli/Cargo.toml +++ b/bin/node/cli/Cargo.toml @@ -52,7 +52,7 @@ sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } sp-authorship = { version = "4.0.0-dev", path = "../../../primitives/authorship" } sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } -sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../../primitives/keyring" } sp-keystore = { version = "0.10.0-dev", path = "../../../primitives/keystore" } sp-io = { version = "4.0.0-dev", path = "../../../primitives/io" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } diff --git a/bin/node/runtime/Cargo.toml b/bin/node/runtime/Cargo.toml index 381a8e1c726b9..4856b6ed9b70c 100644 --- a/bin/node/runtime/Cargo.toml +++ b/bin/node/runtime/Cargo.toml @@ -31,7 +31,7 @@ sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../pri sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" } sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" } sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" } -sp-keyring = { version = "3.0.0", optional = true, path = "../../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", optional = true, path = "../../../primitives/keyring" } sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" } sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" } sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" } diff --git a/bin/node/test-runner-example/Cargo.toml b/bin/node/test-runner-example/Cargo.toml index f4c13b699f339..5882a73982ecd 100644 --- a/bin/node/test-runner-example/Cargo.toml +++ b/bin/node/test-runner-example/Cargo.toml @@ -31,7 +31,7 @@ sc-informant = { version = "0.10.0-dev", path = "../../../client/informant" } sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" } sp-runtime = { path = "../../../primitives/runtime", version = "4.0.0-dev"} -sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../../primitives/keyring" } sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } diff --git a/bin/node/testing/Cargo.toml b/bin/node/testing/Cargo.toml index 1e2b071bed1e4..e2a4555e6797c 100644 --- a/bin/node/testing/Cargo.toml +++ b/bin/node/testing/Cargo.toml @@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0" } pallet-contracts = { version = "4.0.0-dev", path = "../../../frame/contracts" } pallet-grandpa = { version = "4.0.0-dev", path = "../../../frame/grandpa" } pallet-indices = { version = "4.0.0-dev", path = "../../../frame/indices" } -sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../../primitives/keyring" } node-executor = { version = "3.0.0-dev", path = "../executor" } node-primitives = { version = "2.0.0", path = "../primitives" } node-runtime = { version = "3.0.0-dev", path = "../runtime" } diff --git a/client/cli/Cargo.toml b/client/cli/Cargo.toml index f28e9b6d94636..82325238ca0fc 100644 --- a/client/cli/Cargo.toml +++ b/client/cli/Cargo.toml @@ -36,7 +36,7 @@ sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } sc-service = { version = "0.10.0-dev", default-features = false, path = "../service" } sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" } -sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" } names = "0.11.0" structopt = "0.3.8" sc-tracing = { version = "4.0.0-dev", path = "../tracing" } diff --git a/client/consensus/aura/Cargo.toml b/client/consensus/aura/Cargo.toml index 0b505a7c3dabf..36187871aa88a 100644 --- a/client/consensus/aura/Cargo.toml +++ b/client/consensus/aura/Cargo.toml @@ -43,7 +43,7 @@ getrandom = { version = "0.2", features = ["js"], optional = true } [dev-dependencies] sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } -sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../../primitives/keyring" } sp-tracing = { version = "4.0.0-dev", path = "../../../primitives/tracing" } sc-executor = { version = "0.10.0-dev", path = "../../executor" } sc-keystore = { version = "4.0.0-dev", path = "../../keystore" } diff --git a/client/consensus/babe/Cargo.toml b/client/consensus/babe/Cargo.toml index 0a01be507120b..f9dc45ed9c6dd 100644 --- a/client/consensus/babe/Cargo.toml +++ b/client/consensus/babe/Cargo.toml @@ -56,7 +56,7 @@ async-trait = "0.1.42" [dev-dependencies] sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } -sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../../primitives/keyring" } sp-tracing = { version = "4.0.0-dev", path = "../../../primitives/tracing" } sc-executor = { version = "0.10.0-dev", path = "../../executor" } sc-network = { version = "0.10.0-dev", path = "../../network" } diff --git a/client/consensus/babe/rpc/Cargo.toml b/client/consensus/babe/rpc/Cargo.toml index ca3b1c1170ab9..12bce64c3afe7 100644 --- a/client/consensus/babe/rpc/Cargo.toml +++ b/client/consensus/babe/rpc/Cargo.toml @@ -34,7 +34,7 @@ sp-keystore = { version = "0.10.0-dev", path = "../../../../primitives/keystore" [dev-dependencies] sc-consensus = { version = "0.10.0-dev", path = "../../../consensus/common" } serde_json = "1.0.50" -sp-keyring = { version = "3.0.0", path = "../../../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../../../primitives/keyring" } sc-keystore = { version = "4.0.0-dev", path = "../../../keystore" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" } tempfile = "3.1.0" diff --git a/client/consensus/manual-seal/Cargo.toml b/client/consensus/manual-seal/Cargo.toml index ed16984560031..14c4eb88db385 100644 --- a/client/consensus/manual-seal/Cargo.toml +++ b/client/consensus/manual-seal/Cargo.toml @@ -38,7 +38,7 @@ sp-inherents = { path = "../../../primitives/inherents", version = "4.0.0-dev"} sp-runtime = { path = "../../../primitives/runtime", version = "4.0.0-dev"} sp-core = { path = "../../../primitives/core", version = "4.0.0-dev"} sp-keystore = { path = "../../../primitives/keystore", version = "0.10.0-dev"} -sp-keyring = { path = "../../../primitives/keyring", version = "3.0.0"} +sp-keyring = { path = "../../../primitives/keyring", version = "4.0.0-dev"} sp-api = { path = "../../../primitives/api", version = "4.0.0-dev"} sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "4.0.0-dev"} sp-timestamp = { path = "../../../primitives/timestamp", version = "4.0.0-dev"} diff --git a/client/db/Cargo.toml b/client/db/Cargo.toml index 0176c1cdf50ae..5873883a11ee6 100644 --- a/client/db/Cargo.toml +++ b/client/db/Cargo.toml @@ -39,7 +39,7 @@ parity-db = { version = "0.2.4", optional = true } prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" } [dev-dependencies] -sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" } sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } quickcheck = "1.0.3" diff --git a/client/finality-grandpa-warp-sync/Cargo.toml b/client/finality-grandpa-warp-sync/Cargo.toml index 8d37c941e43d1..43a7cc0565cde 100644 --- a/client/finality-grandpa-warp-sync/Cargo.toml +++ b/client/finality-grandpa-warp-sync/Cargo.toml @@ -32,5 +32,5 @@ finality-grandpa = { version = "0.14.1" } rand = "0.8" sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } -sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } diff --git a/client/finality-grandpa/Cargo.toml b/client/finality-grandpa/Cargo.toml index 3f15b1ef4fd58..8815f70f3ccf6 100644 --- a/client/finality-grandpa/Cargo.toml +++ b/client/finality-grandpa/Cargo.toml @@ -55,7 +55,7 @@ assert_matches = "1.3.0" finality-grandpa = { version = "0.14.1", features = ["derive-codec", "test-helpers"] } sc-network = { version = "0.10.0-dev", path = "../network" } sc-network-test = { version = "0.8.0", path = "../network/test" } -sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } sp-consensus-babe = { version = "0.10.0-dev", path = "../../primitives/consensus/babe" } sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } diff --git a/client/finality-grandpa/rpc/Cargo.toml b/client/finality-grandpa/rpc/Cargo.toml index 1fbf083aed2b5..e965f9279bd37 100644 --- a/client/finality-grandpa/rpc/Cargo.toml +++ b/client/finality-grandpa/rpc/Cargo.toml @@ -34,6 +34,6 @@ sc-rpc = { version = "4.0.0-dev", path = "../../rpc", features = ["test-helpers" sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } sp-finality-grandpa = { version = "4.0.0-dev", path = "../../../primitives/finality-grandpa" } -sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../../primitives/keyring" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } lazy_static = "1.4" diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 3b8f2a32eecf9..056ae5cbaa05f 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -76,7 +76,7 @@ assert_matches = "1.3" libp2p = { version = "0.37.1", default-features = false } quickcheck = "1.0.3" rand = "0.7.2" -sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" } sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" } sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" } diff --git a/client/transaction-pool/Cargo.toml b/client/transaction-pool/Cargo.toml index e8bfaf99fe83e..bb74886fc2cee 100644 --- a/client/transaction-pool/Cargo.toml +++ b/client/transaction-pool/Cargo.toml @@ -35,7 +35,7 @@ wasm-timer = "0.2" [dev-dependencies] assert_matches = "1.3.0" hex = "0.4" -sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" } sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } substrate-test-runtime-transaction-pool = { version = "2.0.0", path = "../../test-utils/runtime/transaction-pool" } substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } diff --git a/frame/grandpa/Cargo.toml b/frame/grandpa/Cargo.toml index 5154e4ef60779..9e60ad0fb3c8a 100644 --- a/frame/grandpa/Cargo.toml +++ b/frame/grandpa/Cargo.toml @@ -32,7 +32,7 @@ log = { version = "0.4.14", default-features = false } [dev-dependencies] frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" } grandpa = { package = "finality-grandpa", version = "0.14.1", features = ["derive-codec"] } -sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" } pallet-balances = { version = "4.0.0-dev", path = "../balances" } pallet-offences = { version = "4.0.0-dev", path = "../offences" } pallet-staking = { version = "4.0.0-dev", path = "../staking" } diff --git a/frame/indices/Cargo.toml b/frame/indices/Cargo.toml index 97007e6dcd590..1ef4527f607bc 100644 --- a/frame/indices/Cargo.toml +++ b/frame/indices/Cargo.toml @@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } -sp-keyring = { version = "3.0.0", optional = true, path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", optional = true, path = "../../primitives/keyring" } sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" } sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../primitives/runtime" } diff --git a/primitives/keyring/Cargo.toml b/primitives/keyring/Cargo.toml index 87106f9ee448e..a14e98d3d8059 100644 --- a/primitives/keyring/Cargo.toml +++ b/primitives/keyring/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-keyring" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/test-utils/client/Cargo.toml b/test-utils/client/Cargo.toml index cc6dde1cd688d..26661b8209c10 100644 --- a/test-utils/client/Cargo.toml +++ b/test-utils/client/Cargo.toml @@ -30,7 +30,7 @@ sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" } sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" } sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } sp-keystore = { version = "0.10.0-dev", path = "../../primitives/keystore" } -sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" } sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } async-trait = "0.1.42" diff --git a/test-utils/runtime/Cargo.toml b/test-utils/runtime/Cargo.toml index 948915a97c5d2..371f2fd5a13b6 100644 --- a/test-utils/runtime/Cargo.toml +++ b/test-utils/runtime/Cargo.toml @@ -19,7 +19,7 @@ sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = " sp-block-builder = { version = "4.0.0-dev", default-features = false, path = "../../primitives/block-builder" } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" } -sp-keyring = { version = "3.0.0", optional = true, path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", optional = true, path = "../../primitives/keyring" } memory-db = { version = "0.27.0", default-features = false } sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../primitives/offchain" } sp-core = { version = "4.0.0-dev", default-features = false, path = "../../primitives/core" } diff --git a/test-utils/test-runner/Cargo.toml b/test-utils/test-runner/Cargo.toml index fca22e02105c1..83219049564c7 100644 --- a/test-utils/test-runner/Cargo.toml +++ b/test-utils/test-runner/Cargo.toml @@ -33,7 +33,7 @@ sp-runtime = { version = "4.0.0-dev", path = "../../primitives/runtime" } sp-session = { version = "4.0.0-dev", path = "../../primitives/session" } sp-offchain = { version = "4.0.0-dev", path = "../../primitives/offchain" } sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" } -sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" } +sp-keyring = { version = "4.0.0-dev", path = "../../primitives/keyring" } sp-externalities = { version = "0.10.0-dev", path = "../../primitives/externalities" } sp-state-machine = { version = "0.10.0-dev", path = "../../primitives/state-machine" } From c3b0cb53f48e2296a566637eaaf478b2a3a55124 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 6 Jul 2021 15:32:43 +0200 Subject: [PATCH 17/32] Bump sp-consensus-pow as well --- Cargo.lock | 2 +- client/consensus/pow/Cargo.toml | 2 +- primitives/consensus/pow/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1167d84d8dce9..686d90964fefe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8876,7 +8876,7 @@ dependencies = [ [[package]] name = "sp-consensus-pow" -version = "0.9.0" +version = "0.10.0-dev" dependencies = [ "parity-scale-codec", "sp-api", diff --git a/client/consensus/pow/Cargo.toml b/client/consensus/pow/Cargo.toml index f66691bc4652f..e484665cc3f88 100644 --- a/client/consensus/pow/Cargo.toml +++ b/client/consensus/pow/Cargo.toml @@ -21,7 +21,7 @@ sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } sc-client-api = { version = "4.0.0-dev", path = "../../api" } sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" } -sp-consensus-pow = { version = "0.9.0", path = "../../../primitives/consensus/pow" } +sp-consensus-pow = { version = "0.10.0-dev", path = "../../../primitives/consensus/pow" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } log = "0.4.8" futures = { version = "0.3.1", features = ["compat"] } diff --git a/primitives/consensus/pow/Cargo.toml b/primitives/consensus/pow/Cargo.toml index 26d9af7512d2f..f93eeca2fb24e 100644 --- a/primitives/consensus/pow/Cargo.toml +++ b/primitives/consensus/pow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-consensus-pow" -version = "0.9.0" +version = "0.10.0-dev" authors = ["Parity Technologies "] description = "Primitives for Aura consensus" edition = "2018" From 3e72a8bf1720150fd7b0b44d8f9235c052b87e09 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 6 Jul 2021 21:33:46 +0200 Subject: [PATCH 18/32] Try to speed up the `unleash-check` job Previously, the job took 106 minutes - let's see if explicitly specifying a `CARGO_TARGET_DIR` will help --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5f0b6522976f1..a1c5c610039fe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -334,6 +334,9 @@ unleash-check: script: - cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS} - cargo unleash de-dev-deps +# TODO: Let's see if we can shave some time by reusing cache + - mkdir target/unleash + - export CARGO_TARGET_DIR=target/unleash - cargo unleash check ${CARGO_UNLEASH_PKG_DEF} test-frame-examples-compile-to-wasm: From a0c09b3c82e3315d9aad080acfaf54223074e1f1 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 6 Jul 2021 21:42:34 +0200 Subject: [PATCH 19/32] fixup: Ensure the temp target dir exists for unleash check --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a1c5c610039fe..f7b7dd34b8357 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -335,7 +335,7 @@ unleash-check: - cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS} - cargo unleash de-dev-deps # TODO: Let's see if we can shave some time by reusing cache - - mkdir target/unleash + - mkdir -p target/unleash - export CARGO_TARGET_DIR=target/unleash - cargo unleash check ${CARGO_UNLEASH_PKG_DEF} From e2115182d692bda127a1f704e168e6f0e31df655 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 6 Jul 2021 21:48:58 +0200 Subject: [PATCH 20/32] Bump pallet-transaction-payment-rpc-runtime-api as well Needed for Polkadot --- Cargo.lock | 2 +- bin/node-template/runtime/Cargo.toml | 2 +- bin/node/runtime/Cargo.toml | 2 +- frame/transaction-payment/rpc/Cargo.toml | 2 +- frame/transaction-payment/rpc/runtime-api/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 686d90964fefe..265f02dc84d91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5615,7 +5615,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", diff --git a/bin/node-template/runtime/Cargo.toml b/bin/node-template/runtime/Cargo.toml index bf416835b1c8c..72e19cc62b0ba 100644 --- a/bin/node-template/runtime/Cargo.toml +++ b/bin/node-template/runtime/Cargo.toml @@ -38,7 +38,7 @@ sp-version = { version = "4.0.0-dev", default-features = false, path = "../../.. # Used for the node template's RPCs frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" } -pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" } +pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" } # Used for runtime benchmarking frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/benchmarking", optional = true } diff --git a/bin/node/runtime/Cargo.toml b/bin/node/runtime/Cargo.toml index 4856b6ed9b70c..78e46edbd64e4 100644 --- a/bin/node/runtime/Cargo.toml +++ b/bin/node/runtime/Cargo.toml @@ -85,7 +85,7 @@ pallet-tips = { version = "4.0.0-dev", default-features = false, path = "../../. pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../../../frame/treasury" } pallet-utility = { version = "4.0.0-dev", default-features = false, path = "../../../frame/utility" } pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" } -pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" } +pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" } pallet-transaction-storage = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-storage" } pallet-uniques = { version = "4.0.0-dev", default-features = false, path = "../../../frame/uniques" } pallet-vesting = { version = "4.0.0-dev", default-features = false, path = "../../../frame/vesting" } diff --git a/frame/transaction-payment/rpc/Cargo.toml b/frame/transaction-payment/rpc/Cargo.toml index 92f9ef8e61f0e..25e671630f7fb 100644 --- a/frame/transaction-payment/rpc/Cargo.toml +++ b/frame/transaction-payment/rpc/Cargo.toml @@ -23,4 +23,4 @@ sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } sp-rpc = { version = "4.0.0-dev", path = "../../../primitives/rpc" } sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" } -pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", path = "./runtime-api" } +pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", path = "./runtime-api" } diff --git a/frame/transaction-payment/rpc/runtime-api/Cargo.toml b/frame/transaction-payment/rpc/runtime-api/Cargo.toml index 4f7636bdcaed3..2f78f2439c604 100644 --- a/frame/transaction-payment/rpc/runtime-api/Cargo.toml +++ b/frame/transaction-payment/rpc/runtime-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-transaction-payment-rpc-runtime-api" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" From c65cd35ef252ec554596105905fbd4415c225a94 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Tue, 6 Jul 2021 21:49:09 +0200 Subject: [PATCH 21/32] Bump pallet-transaction-payment-rpc as well Needed for Polkadot --- Cargo.lock | 2 +- bin/node-template/node/Cargo.toml | 2 +- bin/node/rpc/Cargo.toml | 2 +- frame/transaction-payment/rpc/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 265f02dc84d91..1a07a62a3ae14 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5599,7 +5599,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" -version = "3.0.0" +version = "4.0.0-dev" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", diff --git a/bin/node-template/node/Cargo.toml b/bin/node-template/node/Cargo.toml index 054b3ce47538b..89cf7ffb3cb78 100644 --- a/bin/node-template/node/Cargo.toml +++ b/bin/node-template/node/Cargo.toml @@ -47,7 +47,7 @@ sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" } substrate-frame-rpc-system = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/system" } -pallet-transaction-payment-rpc = { version = "3.0.0", path = "../../../frame/transaction-payment/rpc/" } +pallet-transaction-payment-rpc = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/rpc/" } # These dependencies are used for runtime benchmarking frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" } diff --git a/bin/node/rpc/Cargo.toml b/bin/node/rpc/Cargo.toml index 665aac2a2f3d1..850484997e72a 100644 --- a/bin/node/rpc/Cargo.toml +++ b/bin/node/rpc/Cargo.toml @@ -15,7 +15,7 @@ jsonrpc-core = "15.1.0" node-primitives = { version = "2.0.0", path = "../primitives" } pallet-contracts-rpc = { version = "4.0.0-dev", path = "../../../frame/contracts/rpc/" } pallet-mmr-rpc = { version = "3.0.0", path = "../../../frame/merkle-mountain-range/rpc/" } -pallet-transaction-payment-rpc = { version = "3.0.0", path = "../../../frame/transaction-payment/rpc/" } +pallet-transaction-payment-rpc = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/rpc/" } sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" } sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/babe" } sc-consensus-babe-rpc = { version = "0.10.0-dev", path = "../../../client/consensus/babe/rpc" } diff --git a/frame/transaction-payment/rpc/Cargo.toml b/frame/transaction-payment/rpc/Cargo.toml index 25e671630f7fb..785a7c9c96abc 100644 --- a/frame/transaction-payment/rpc/Cargo.toml +++ b/frame/transaction-payment/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-transaction-payment-rpc" -version = "3.0.0" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" From 821a837359200f7d61f278a51a0e1bebe356d0dc Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 7 Jul 2021 15:37:55 +0200 Subject: [PATCH 22/32] Try updating crates after patching in the Polkadot CI job --- .maintain/gitlab/check_polkadot_companion_build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.maintain/gitlab/check_polkadot_companion_build.sh b/.maintain/gitlab/check_polkadot_companion_build.sh index 89780f082e45b..46e4e66c6776c 100755 --- a/.maintain/gitlab/check_polkadot_companion_build.sh +++ b/.maintain/gitlab/check_polkadot_companion_build.sh @@ -88,5 +88,9 @@ fi # Patch all Substrate crates in Polkadot diener patch --crates-to-patch ../ --substrate --path Cargo.toml +# Propagate the patches across the workspace (e.g. so that BEEFY uses the +# patched version as well) +cargo update --workspace + # Test Polkadot pr or master branch with this Substrate commit. time cargo test --all --release --verbose From dbe7ad8f14372ec195f24a7c7c51ba1367ca51dc Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 7 Jul 2021 16:32:53 +0200 Subject: [PATCH 23/32] Use another approach to update patched Substrate crates --- .maintain/gitlab/check_polkadot_companion_build.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.maintain/gitlab/check_polkadot_companion_build.sh b/.maintain/gitlab/check_polkadot_companion_build.sh index 46e4e66c6776c..729debfefb00b 100755 --- a/.maintain/gitlab/check_polkadot_companion_build.sh +++ b/.maintain/gitlab/check_polkadot_companion_build.sh @@ -88,9 +88,12 @@ fi # Patch all Substrate crates in Polkadot diener patch --crates-to-patch ../ --substrate --path Cargo.toml -# Propagate the patches across the workspace (e.g. so that BEEFY uses the -# patched version as well) -cargo update --workspace +# We need to update explicitly our patched Substrate crates so that other crates +# that depend on them (e.g. Polkadot, BEEFY) use this unified version +# NOTE: There's no way to only update patched crates, so we use a heuristic +# of updating a crucial Substrate crate (`sp-core`) +SP_CORE_VERSION=$(cat ../primitives/core/Cargo.toml | grep -oP '(?<=version = ")[a-zA-z0-9|\.|-]+(?="\w*$)') +cargo update -p sp-core:${SP_CORE_VERSION} --offline # Test Polkadot pr or master branch with this Substrate commit. time cargo test --all --release --verbose From 4dd3c5f1a0e853eef7ec18af242459a0a12f0370 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 7 Jul 2021 16:46:56 +0200 Subject: [PATCH 24/32] Try to update all sp-core versions in Polkadot CI job --- .maintain/gitlab/check_polkadot_companion_build.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.maintain/gitlab/check_polkadot_companion_build.sh b/.maintain/gitlab/check_polkadot_companion_build.sh index 729debfefb00b..0041800bcc95b 100755 --- a/.maintain/gitlab/check_polkadot_companion_build.sh +++ b/.maintain/gitlab/check_polkadot_companion_build.sh @@ -92,8 +92,13 @@ diener patch --crates-to-patch ../ --substrate --path Cargo.toml # that depend on them (e.g. Polkadot, BEEFY) use this unified version # NOTE: There's no way to only update patched crates, so we use a heuristic # of updating a crucial Substrate crate (`sp-core`) -SP_CORE_VERSION=$(cat ../primitives/core/Cargo.toml | grep -oP '(?<=version = ")[a-zA-z0-9|\.|-]+(?="\w*$)') -cargo update -p sp-core:${SP_CORE_VERSION} --offline +# We're using `--offline` to minimize impact of updating unrelated dependencies +# SP_CORE_VERSION=$(cat ../primitives/core/Cargo.toml | grep -oP '(?<=version = ")[a-zA-z0-9|\.|-]+(?="\w*$)') +SP_CORE_VERSIONS=$(cat Cargo.lock | grep -oP '(?<=sp-core) [a-zA-Z0-9|\.|-]*' | sort | uniq) +for vers in ${SP_CORE_VERSIONS[@]} +do + cargo update -p sp-core:${vers} --offline +done # Test Polkadot pr or master branch with this Substrate commit. time cargo test --all --release --verbose From 772f236d2c7a61c275872c65ea8ada47b49bd03d Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 7 Jul 2021 17:02:48 +0200 Subject: [PATCH 25/32] Simplify sp-core version checking --- .maintain/gitlab/check_polkadot_companion_build.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.maintain/gitlab/check_polkadot_companion_build.sh b/.maintain/gitlab/check_polkadot_companion_build.sh index 0041800bcc95b..c32cc6daceb99 100755 --- a/.maintain/gitlab/check_polkadot_companion_build.sh +++ b/.maintain/gitlab/check_polkadot_companion_build.sh @@ -93,9 +93,7 @@ diener patch --crates-to-patch ../ --substrate --path Cargo.toml # NOTE: There's no way to only update patched crates, so we use a heuristic # of updating a crucial Substrate crate (`sp-core`) # We're using `--offline` to minimize impact of updating unrelated dependencies -# SP_CORE_VERSION=$(cat ../primitives/core/Cargo.toml | grep -oP '(?<=version = ")[a-zA-z0-9|\.|-]+(?="\w*$)') -SP_CORE_VERSIONS=$(cat Cargo.lock | grep -oP '(?<=sp-core) [a-zA-Z0-9|\.|-]*' | sort | uniq) -for vers in ${SP_CORE_VERSIONS[@]} +for vers in $(grep -oP '(?<=sp-core) [a-zA-Z0-9|\.|-]*' < Cargo.lock | sort | uniq) do cargo update -p sp-core:${vers} --offline done From e897db2e1a5ae9d54b307b26842512714eed6f89 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 7 Jul 2021 17:04:17 +0200 Subject: [PATCH 26/32] Apply another shellcheck lint --- .maintain/gitlab/check_polkadot_companion_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.maintain/gitlab/check_polkadot_companion_build.sh b/.maintain/gitlab/check_polkadot_companion_build.sh index c32cc6daceb99..d5ee7dcc8db7c 100755 --- a/.maintain/gitlab/check_polkadot_companion_build.sh +++ b/.maintain/gitlab/check_polkadot_companion_build.sh @@ -95,7 +95,7 @@ diener patch --crates-to-patch ../ --substrate --path Cargo.toml # We're using `--offline` to minimize impact of updating unrelated dependencies for vers in $(grep -oP '(?<=sp-core) [a-zA-Z0-9|\.|-]*' < Cargo.lock | sort | uniq) do - cargo update -p sp-core:${vers} --offline + cargo update -p sp-core:"${vers}" --offline done # Test Polkadot pr or master branch with this Substrate commit. From 201adc3a7194e2b4808eadba393890d9dfa1469c Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 7 Jul 2021 18:04:39 +0200 Subject: [PATCH 27/32] Just do the simplest thing I guess --- .maintain/gitlab/check_polkadot_companion_build.sh | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.maintain/gitlab/check_polkadot_companion_build.sh b/.maintain/gitlab/check_polkadot_companion_build.sh index d5ee7dcc8db7c..d981439645be7 100755 --- a/.maintain/gitlab/check_polkadot_companion_build.sh +++ b/.maintain/gitlab/check_polkadot_companion_build.sh @@ -88,15 +88,12 @@ fi # Patch all Substrate crates in Polkadot diener patch --crates-to-patch ../ --substrate --path Cargo.toml -# We need to update explicitly our patched Substrate crates so that other crates -# that depend on them (e.g. Polkadot, BEEFY) use this unified version +# We need to update specifically our patched Substrate crates so that other +# crates that depend on them (e.g. Polkadot, BEEFY) use this unified version # NOTE: There's no way to only update patched crates, so we use a heuristic -# of updating a crucial Substrate crate (`sp-core`) -# We're using `--offline` to minimize impact of updating unrelated dependencies -for vers in $(grep -oP '(?<=sp-core) [a-zA-Z0-9|\.|-]*' < Cargo.lock | sort | uniq) -do - cargo update -p sp-core:"${vers}" --offline -done +# of updating a crucial Substrate crate (`sp-core`) together with `--offline` +# to minimize the impact of updating unrelated dependencies +cargo update -p sp-core --offline # Test Polkadot pr or master branch with this Substrate commit. time cargo test --all --release --verbose From 6948c089fd2782b464f771d9b1930c6640332bf9 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 7 Jul 2021 18:42:18 +0200 Subject: [PATCH 28/32] Welp don't do --offline then --- .maintain/gitlab/check_polkadot_companion_build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.maintain/gitlab/check_polkadot_companion_build.sh b/.maintain/gitlab/check_polkadot_companion_build.sh index d981439645be7..531155b73dfc8 100755 --- a/.maintain/gitlab/check_polkadot_companion_build.sh +++ b/.maintain/gitlab/check_polkadot_companion_build.sh @@ -91,9 +91,9 @@ diener patch --crates-to-patch ../ --substrate --path Cargo.toml # We need to update specifically our patched Substrate crates so that other # crates that depend on them (e.g. Polkadot, BEEFY) use this unified version # NOTE: There's no way to only update patched crates, so we use a heuristic -# of updating a crucial Substrate crate (`sp-core`) together with `--offline` -# to minimize the impact of updating unrelated dependencies -cargo update -p sp-core --offline +# of updating a crucial Substrate crate (`sp-core`) to minimize the impact of +# updating unrelated dependencies +cargo update -p sp-core # Test Polkadot pr or master branch with this Substrate commit. time cargo test --all --release --verbose From b869dc7643a20aeba4050bacf020e1c219cd3674 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 7 Jul 2021 17:18:06 +0000 Subject: [PATCH 29/32] Clean up `unleash-check` job triggers Co-authored-by: Denis Pisarev --- .gitlab-ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f7b7dd34b8357..4d2f387cafa88 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -326,11 +326,7 @@ test-linux-stable: &test-linux unleash-check: stage: test <<: *docker-env - #rules: - # - if: $CI_PIPELINE_SOURCE == "pipeline" - # when: never - # - if: $CI_COMMIT_REF_NAME == "master" - # - if: $CI_COMMIT_REF_NAME =~ /^v[0-9]+\.[0-9]+.*$/ # i.e. v1.0, v2.1rc1 + <<: *test-refs-no-trigger script: - cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS} - cargo unleash de-dev-deps From 15a7709f71cb5ba2e4b7b61f1ce405960ff39933 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 7 Jul 2021 19:19:59 +0200 Subject: [PATCH 30/32] Fix a note in unleash-check cache step --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4d2f387cafa88..7289037069419 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -330,7 +330,7 @@ unleash-check: script: - cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS} - cargo unleash de-dev-deps -# TODO: Let's see if we can shave some time by reusing cache + # Reuse build artifacts when running checks (cuts down check time by 3x) - mkdir -p target/unleash - export CARGO_TARGET_DIR=target/unleash - cargo unleash check ${CARGO_UNLEASH_PKG_DEF} From 42a50013d8aa44721e4f229f4a83efbd75797e29 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Sun, 11 Jul 2021 00:20:35 +0200 Subject: [PATCH 31/32] Add a note about temporary optimization in cargo-unleash --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7289037069419..b0cfdadd94f93 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -331,6 +331,7 @@ unleash-check: - cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS} - cargo unleash de-dev-deps # Reuse build artifacts when running checks (cuts down check time by 3x) + # TODO: Implement this optimization in cargo-unleash rather than here - mkdir -p target/unleash - export CARGO_TARGET_DIR=target/unleash - cargo unleash check ${CARGO_UNLEASH_PKG_DEF} From 666eae24bd72947bebec28e7710875c2caab1e80 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Sun, 11 Jul 2021 00:33:34 +0200 Subject: [PATCH 32/32] Pin a newer version of cargo-unleash --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b0cfdadd94f93..727ee20496489 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,7 +40,7 @@ variables: &default-vars ARCH: "x86_64" CI_IMAGE: "paritytech/ci-linux:production" # FIXME set to release - CARGO_UNLEASH_INSTALL_PARAMS: "--git https://github.com/paritytech/cargo-unleash" + CARGO_UNLEASH_INSTALL_PARAMS: "--version 1.0.0-alpha.12" CARGO_UNLEASH_PKG_DEF: "--skip node node-* pallet-template pallet-example pallet-example-* subkey chain-spec-builder" default: