Releasing 3.0 (#8098)

* bumping version for next release
* add changelog
* add guide
This commit is contained in:
Benjamin Kampmann
2021-02-10 19:23:18 +01:00
committed by GitHub
parent 772224c132
commit 6a964c5df0
200 changed files with 3140 additions and 1879 deletions
+19 -19
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-client-api"
version = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -15,32 +15,32 @@ 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.8.0", path = "../../primitives/consensus/common" }
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
derive_more = "0.99.2"
sc-executor = { version = "0.8.0", path = "../executor" }
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" }
sc-executor = { version = "0.9.0", path = "../executor" }
sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" }
fnv = "1.0.6"
futures = "0.3.1"
hash-db = { version = "0.15.2", default-features = false }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" }
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
sp-inherents = { version = "3.0.0", 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 = "2.0.0", path = "../../primitives/database" }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
sp-keystore = { version = "0.8.0", default-features = false, path = "../../primitives/keystore" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
sp-version = { version = "2.0.0", default-features = false, path = "../../primitives/version" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
sp-storage = { version = "2.0.0", path = "../../primitives/storage" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
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-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" }
[dev-dependencies]
kvdb-memorydb = "0.9.0"
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-authority-discovery"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
@@ -25,21 +25,21 @@ futures = "0.3.9"
futures-timer = "3.0.1"
libp2p = { version = "0.34.0", default-features = false, features = ["kad"] }
log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
prost = "0.7"
rand = "0.7.2"
sc-client-api = { version = "2.0.0", path = "../api" }
sc-network = { version = "0.8.0", path = "../network" }
sc-client-api = { version = "3.0.0", path = "../api" }
sc-network = { version = "0.9.0", path = "../network" }
serde_json = "1.0.41"
sp-authority-discovery = { version = "2.0.0", path = "../../primitives/authority-discovery" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
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" }
[dev-dependencies]
quickcheck = "1.0.3"
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
sc-peerset = { version = "2.0.0", path = "../peerset" }
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
sc-peerset = { version = "3.0.0", path = "../peerset" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client"}
+14 -14
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-basic-authorship"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -17,20 +17,20 @@ codec = { package = "parity-scale-codec", version = "2.0.0" }
futures = "0.3.9"
futures-timer = "3.0.1"
log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
sc-proposer-metrics = { version = "0.8.0", path = "../proposer-metrics" }
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-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
sc-proposer-metrics = { version = "0.9.0", path = "../proposer-metrics" }
[dev-dependencies]
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
parking_lot = "0.11.1"
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-block-builder"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-block-builder = { version = "2.0.0", path = "../../primitives/block-builder" }
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" }
sc-client-api = { version = "2.0.0", path = "../api" }
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-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
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" }
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 = "2.0.0", path = "../../primitives/trie" }
sp-trie = { version = "3.0.0", path = "../../primitives/trie" }
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-chain-spec"
version = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
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 = "2.0.0", path = "./derive" }
sc-chain-spec-derive = { version = "3.0.0", path = "./derive" }
impl-trait-for-tuples = "0.2.1"
sc-network = { version = "0.8.0", path = "../network" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sc-network = { version = "0.9.0", path = "../network" }
sp-core = { version = "3.0.0", path = "../../primitives/core" }
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.41"
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-chain-spec = { version = "2.0.0", path = "../../primitives/chain-spec" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
sp-chain-spec = { version = "3.0.0", path = "../../primitives/chain-spec" }
sc-telemetry = { version = "3.0.0", path = "../telemetry" }
codec = { package = "parity-scale-codec", version = "2.0.0" }
sc-consensus-babe = { version = "0.8.0-rc6", path = "../consensus/babe" }
sp-consensus-babe = { version = "0.8.0-rc6", path = "../../primitives/consensus/babe" }
sc-consensus-epochs = { version = "0.8.0-rc6", path = "../consensus/epochs" }
sc-finality-grandpa = { version = "0.8.0-rc6", path = "../finality-grandpa" }
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" }
@@ -1,6 +1,6 @@
[package]
name = "sc-chain-spec-derive"
version = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-cli"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
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 = "2.0.0", path = "../keystore" }
sp-panic-handler = { version = "2.0.0", path = "../../primitives/panic-handler" }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sc-network = { version = "0.8.0", path = "../network" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
sp-version = { version = "2.0.0", path = "../../primitives/version" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
sc-service = { version = "0.8.0", default-features = false, path = "../service" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
sc-keystore = { version = "3.0.0", 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" }
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
names = "0.11.0"
structopt = "0.3.8"
sc-tracing = { version = "2.0.0", path = "../tracing" }
sc-tracing = { version = "3.0.0", path = "../tracing" }
chrono = "0.4.10"
serde = "1.0.111"
thiserror = "1.0.21"
+26 -26
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-aura"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Aura consensus algorithm for substrate"
edition = "2018"
@@ -13,42 +13,42 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8.0", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
sc-client-api = { version = "2.0.0", path = "../../api" }
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" }
codec = { package = "parity-scale-codec", version = "2.0.0" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sp-consensus-slots = { version = "0.8.0", path = "../../../primitives/consensus/slots" }
sp-consensus = { version = "0.9.0", 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 = "2.0.0", path = "../../../primitives/inherents" }
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
log = "0.4.8"
parking_lot = "0.11.1"
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
sp-version = { version = "2.0.0", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8.0", path = "../slots" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
sp-keystore = { version = "0.8.0", path = "../../../primitives/keystore" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
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-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" }
sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
sc-telemetry = { version = "3.0.0", path = "../../telemetry" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"}
# We enable it only for web-wasm check
# See https://docs.rs/getrandom/0.2.1/getrandom/#webassembly-support
getrandom = { version = "0.2", features = ["js"], optional = true }
[dev-dependencies]
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
sc-executor = { version = "0.8.0", path = "../../executor" }
sc-keystore = { version = "2.0.0", path = "../../keystore" }
sc-network = { version = "0.8.0", path = "../../network" }
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" }
sc-network-test = { version = "0.8.0", path = "../../network/test" }
sc-service = { version = "0.8.0", default-features = false, path = "../../service" }
sc-service = { version = "0.9.0", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
tempfile = "3.1.0"
+31 -31
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-babe"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "BABE consensus algorithm for substrate"
edition = "2018"
@@ -15,34 +15,34 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
sp-consensus-babe = { version = "0.8.0", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
sp-keystore = { version = "0.8.0", path = "../../../primitives/keystore" }
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" }
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 = "2.0.0", path = "../../../primitives/version" }
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
sc-keystore = { version = "2.0.0", path = "../../keystore" }
sc-client-api = { version = "2.0.0", path = "../../api" }
sc-consensus-epochs = { version = "0.8.0", path = "../epochs" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sp-consensus-slots = { version = "0.8.0", path = "../../../primitives/consensus/slots" }
sp-consensus-vrf = { version = "0.8.0", path = "../../../primitives/consensus/vrf" }
sc-consensus-uncles = { version = "0.8.0", path = "../uncles" }
sc-consensus-slots = { version = "0.8.0", path = "../slots" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-utils = { version = "2.0.0", path = "../../../primitives/utils" }
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
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" }
sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" }
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-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" }
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"
futures-timer = "3.0.1"
parking_lot = "0.11.1"
@@ -55,14 +55,14 @@ derive_more = "0.99.2"
retain_mut = "0.1.2"
[dev-dependencies]
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
sc-executor = { version = "0.8.0", path = "../../executor" }
sc-network = { version = "0.8.0", path = "../../network" }
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" }
sc-network-test = { version = "0.8.0", path = "../../network/test" }
sc-service = { version = "0.8.0", default-features = false, path = "../../service" }
sc-service = { version = "0.9.0", default-features = false, path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
sc-block-builder = { version = "0.9.0", path = "../../block-builder" }
rand_chacha = "0.2.2"
tempfile = "3.1.0"
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-babe-rpc"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
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.8.0", path = "../" }
sc-rpc-api = { version = "0.8.0", path = "../../../rpc-api" }
sc-consensus-babe = { version = "0.9.0", path = "../" }
sc-rpc-api = { version = "0.9.0", path = "../../../rpc-api" }
jsonrpc-core = "15.1.0"
jsonrpc-core-client = "15.1.0"
jsonrpc-derive = "15.1.0"
sp-consensus-babe = { version = "0.8.0", path = "../../../../primitives/consensus/babe" }
sp-consensus-babe = { version = "0.9.0", path = "../../../../primitives/consensus/babe" }
serde = { version = "1.0.104", features=["derive"] }
sp-blockchain = { version = "2.0.0", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8.0", path = "../../epochs" }
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" }
futures = { version = "0.3.4", features = ["compat"] }
derive_more = "0.99.2"
sp-api = { version = "2.0.0", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8.0", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0", path = "../../../../primitives/core" }
sp-application-crypto = { version = "2.0.0", path = "../../../../primitives/application-crypto" }
sp-keystore = { version = "0.8.0", path = "../../../../primitives/keystore" }
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" }
[dev-dependencies]
sc-consensus = { version = "0.8.0", path = "../../../consensus/common" }
sc-consensus = { version = "0.9.0", path = "../../../consensus/common" }
serde_json = "1.0.50"
sp-keyring = { version = "2.0.0", path = "../../../../primitives/keyring" }
sc-keystore = { version = "2.0.0", path = "../../../keystore" }
sp-keyring = { version = "3.0.0", path = "../../../../primitives/keyring" }
sc-keystore = { version = "3.0.0", path = "../../../keystore" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
tempfile = "3.1.0"
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0", path = "../../api" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/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-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-epochs"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
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"] }
parking_lot = "0.11.1"
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0"}
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" , version = "2.0.0"}
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"}
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-manual-seal"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Manual sealing engine for Substrate"
edition = "2018"
@@ -24,29 +24,29 @@ codec = { package = "parity-scale-codec", version = "2.0.0" }
serde = { version = "1.0", features=["derive"] }
assert_matches = "1.3.0"
sc-client-api = { path = "../../api", version = "2.0.0" }
sc-consensus-babe = { path = "../../consensus/babe", version = "0.8.0" }
sc-consensus-epochs = { path = "../../consensus/epochs", version = "0.8.0" }
sp-consensus-babe = { path = "../../../primitives/consensus/babe", version = "0.8.0" }
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-transaction-pool = { path = "../../transaction-pool", version = "2.0.0" }
sp-blockchain = { path = "../../../primitives/blockchain", version = "2.0.0" }
sp-consensus = { path = "../../../primitives/consensus/common", version = "0.8.0" }
sp-consensus-slots = { path = "../../../primitives/consensus/slots", version = "0.8.1" }
sp-inherents = { path = "../../../primitives/inherents", version = "2.0.0" }
sp-runtime = { path = "../../../primitives/runtime", version = "2.0.0" }
sp-core = { path = "../../../primitives/core", version = "2.0.0" }
sp-keystore = { path = "../../../primitives/keystore", version = "0.8.0" }
sp-keyring = { path = "../../../primitives/keyring", version = "2.0.0" }
sp-api = { path = "../../../primitives/api", version = "2.0.0" }
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "2.0.0" }
sp-timestamp = { path = "../../../primitives/timestamp", version = "2.0.0" }
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"}
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-keyring = { path = "../../../primitives/keyring", version = "3.0.0"}
sp-api = { path = "../../../primitives/api", version = "3.0.0"}
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "3.0.0"}
sp-timestamp = { path = "../../../primitives/timestamp", version = "3.0.0"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0" }
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.8.0" }
sc-basic-authorship = { path = "../../basic-authorship", version = "0.9.0"}
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"
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-pow"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "PoW consensus algorithm for substrate"
edition = "2018"
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0", path = "../../api" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8.0", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
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-consensus-pow = { version = "0.9.0", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
log = "0.4.8"
futures = { version = "0.3.1", features = ["compat"] }
futures-timer = "3.0.1"
parking_lot = "0.11.1"
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" }
derive_more = "0.99.2"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"}
+14 -14
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-slots"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic slots-based utilities for consensus"
edition = "2018"
@@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "2.0.0" }
sc-client-api = { version = "2.0.0", path = "../../api" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-trie = { version = "2.0.0", path = "../../../primitives/trie" }
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
sp-arithmetic = { version = "2.0.0", path = "../../../primitives/arithmetic" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-consensus-slots = { version = "0.8.0", path = "../../../primitives/consensus/slots" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
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" }
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" }
futures = "0.3.9"
futures-timer = "3.0.1"
parking_lot = "0.11.1"
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-uncles"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic uncle inclusion utilities for consensus"
edition = "2018"
@@ -13,10 +13,10 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0", path = "../../api" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
sc-client-api = { version = "3.0.0", path = "../../api" }
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
sp-authorship = { version = "3.0.0", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
log = "0.4.8"
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-client-db"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
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 = "2.0.0", path = "../api" }
sp-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
sc-executor = { version = "0.8.0", path = "../executor" }
sc-state-db = { version = "0.8.0", path = "../state-db" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-database = { version = "2.0.0", path = "../../primitives/database" }
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" }
parity-db = { version = "0.2.2", optional = true }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" }
[dev-dependencies]
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
sp-tracing = { version = "3.0.0", 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"
+19 -19
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-executor"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
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 = "2.0.0", path = "../../primitives/io" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-tasks = { version = "2.0.0", path = "../../primitives/tasks" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
sp-serializer = { version = "2.0.0", path = "../../primitives/serializer" }
sp-version = { version = "2.0.0", path = "../../primitives/version" }
sp-panic-handler = { version = "2.0.0", path = "../../primitives/panic-handler" }
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-serializer = { version = "3.0.0", path = "../../primitives/serializer" }
sp-version = { version = "3.0.0", path = "../../primitives/version" }
sp-panic-handler = { version = "3.0.0", path = "../../primitives/panic-handler" }
wasmi = "0.6.2"
parity-wasm = "0.41.0"
lazy_static = "1.4.0"
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sp-wasm-interface = { version = "2.0.0", path = "../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0", path = "../../primitives/runtime-interface" }
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" }
sc-executor-common = { version = "0.8.0", path = "common" }
sc-executor-wasmi = { version = "0.8.0", path = "wasmi" }
sc-executor-wasmtime = { version = "0.8.0", path = "wasmtime", optional = true }
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 }
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.8.0", path = "../../primitives/state-machine" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
sc-tracing = { version = "2.0.0", path = "../tracing" }
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" }
tracing = "0.1.22"
tracing-subscriber = "0.2.15"
paste = "1.0"
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-executor-common"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -18,10 +18,10 @@ derive_more = "0.99.2"
parity-wasm = "0.41.0"
codec = { package = "parity-scale-codec", version = "2.0.0" }
wasmi = "0.6.2"
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0", path = "../../../primitives/allocator" }
sp-wasm-interface = { version = "2.0.0", path = "../../../primitives/wasm-interface" }
sp-serializer = { version = "2.0.0", path = "../../../primitives/serializer" }
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-serializer = { version = "3.0.0", path = "../../../primitives/serializer" }
thiserror = "1.0.21"
[features]
@@ -13,16 +13,16 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-allocator = { version = "2.0.0", default-features = false, path = "../../../primitives/allocator" }
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
sp-io = { version = "2.0.0", default-features = false, path = "../../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-sandbox = { version = "0.8.0", default-features = false, path = "../../../primitives/sandbox" }
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
sp-tasks = { version = "2.0.0", default-features = false, path = "../../../primitives/tasks" }
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" }
[build-dependencies]
substrate-wasm-builder = { version = "3.0.0", path = "../../../utils/wasm-builder" }
substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" }
[features]
default = [ "std" ]
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-executor-wasmi"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
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.6.2"
codec = { package = "parity-scale-codec", version = "2.0.0" }
sc-executor-common = { version = "0.8.0", path = "../common" }
sp-wasm-interface = { version = "2.0.0", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0", path = "../../../primitives/allocator" }
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" }
@@ -1,6 +1,6 @@
[package]
name = "sc-executor-wasmtime"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -17,11 +17,11 @@ log = "0.4.8"
scoped-tls = "1.0"
parity-wasm = "0.41.0"
codec = { package = "parity-scale-codec", version = "2.0.0" }
sc-executor-common = { version = "0.8.0", path = "../common" }
sp-wasm-interface = { version = "2.0.0", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0", path = "../../../primitives/allocator" }
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" }
wasmtime = "0.22"
pwasm-utils = "0.14.0"
@@ -13,12 +13,12 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-network = { version = "0.8.0", path = "../network" }
sc-finality-grandpa = { version = "0.8.0", path = "../finality-grandpa" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sc-client-api = { version = "2.0.0", path = "../api" }
sc-service = { version = "0.8.0", path = "../service" }
sc-network = { version = "0.9.0", path = "../network" }
sc-finality-grandpa = { version = "0.9.0", path = "../finality-grandpa" }
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
sc-client-api = { version = "3.0.0", path = "../api" }
sc-service = { version = "0.9.0", path = "../service" }
futures = "0.3.8"
log = "0.4.11"
derive_more = "0.99.11"
+27 -27
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-finality-grandpa"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -16,33 +16,33 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
derive_more = "0.99.2"
fork-tree = { version = "2.0.0", path = "../../utils/fork-tree" }
fork-tree = { version = "3.0.0", path = "../../utils/fork-tree" }
futures = "0.3.9"
futures-timer = "3.0.1"
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 = "2.0.0", path = "../../primitives/application-crypto" }
sp-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0", path = "../consensus/common" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
sc-keystore = { version = "2.0.0", path = "../keystore" }
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" }
serde_json = "1.0.41"
sc-client-api = { version = "2.0.0", path = "../api" }
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sc-network = { version = "0.8.0", path = "../network" }
sc-network-gossip = { version = "0.8.0", path = "../network-gossip" }
sp-finality-grandpa = { version = "2.0.0", path = "../../primitives/finality-grandpa" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
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" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
finality-grandpa = { version = "0.13.0", features = ["derive-codec"] }
pin-project = "1.0.4"
linked-hash-map = "0.5.2"
@@ -50,13 +50,13 @@ linked-hash-map = "0.5.2"
[dev-dependencies]
assert_matches = "1.3.0"
finality-grandpa = { version = "0.13.0", features = ["derive-codec", "test-helpers"] }
sc-network = { version = "0.8.0", path = "../network" }
sc-network = { version = "0.9.0", path = "../network" }
sc-network-test = { version = "0.8.0", path = "../network/test" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
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.8.0", path = "../../primitives/consensus/babe" }
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
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" }
tokio = { version = "0.2", features = ["rt-core"] }
tempfile = "3.1.0"
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sp-api = { version = "3.0.0", path = "../../primitives/api" }
@@ -1,6 +1,6 @@
[package]
name = "sc-finality-grandpa-rpc"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
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.8.0", path = "../" }
sc-rpc = { version = "2.0.0", path = "../../rpc" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
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" }
finality-grandpa = { version = "0.13.0", 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 = "2.0.0", path = "../../api" }
sc-client-api = { version = "3.0.0", path = "../../api" }
[dev-dependencies]
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
sc-block-builder = { version = "0.9.0", path = "../../block-builder" }
sc-network-test = { version = "0.8.0", path = "../../network/test" }
sc-rpc = { version = "2.0.0", path = "../../rpc", features = ["test-helpers"] }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-finality-grandpa = { version = "2.0.0", path = "../../../primitives/finality-grandpa" }
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
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" }
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"
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-informant"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate informant."
edition = "2018"
@@ -17,10 +17,10 @@ ansi_term = "0.12.1"
futures = "0.3.9"
log = "0.4.8"
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
sc-client-api = { version = "2.0.0", path = "../api" }
sc-network = { version = "0.8.0", path = "../network" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
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" }
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
wasm-timer = "0.2"
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-keystore"
version = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
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 = "2.0.0", path = "../../primitives/application-crypto" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
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" }
hex = "0.4.0"
merlin = { version = "2.0", default-features = false }
parking_lot = "0.11.1"
+9 -9
View File
@@ -1,7 +1,7 @@
[package]
description = "components for a light client"
name = "sc-light"
version = "2.0.1"
version = "3.0.0"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
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 = "2.0.0", path = "../../primitives/runtime" }
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
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" }
codec = { package = "parity-scale-codec", version = "2.0.0" }
sc-executor = { version = "0.8.0", path = "../executor" }
sc-executor = { version = "0.9.0", path = "../executor" }
[features]
default = []
+4 -4
View File
@@ -1,7 +1,7 @@
[package]
description = "Gossiping for the Substrate network protocol"
name = "sc-network-gossip"
version = "0.8.1"
version = "0.9.0"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -20,9 +20,9 @@ futures-timer = "3.0.1"
libp2p = { version = "0.34.0", default-features = false }
log = "0.4.8"
lru = "0.6.1"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
sc-network = { version = "0.8.0", path = "../network" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
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" }
wasm-timer = "0.2"
[dev-dependencies]
+14 -14
View File
@@ -1,7 +1,7 @@
[package]
description = "Substrate network protocol"
name = "sc-network"
version = "0.8.1"
version = "0.9.0"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -28,7 +28,7 @@ derive_more = "0.99.2"
either = "1.5.3"
erased-serde = "0.3.9"
fnv = "1.0.6"
fork-tree = { version = "2.0.0", path = "../../utils/fork-tree" }
fork-tree = { version = "3.0.0", path = "../../utils/fork-tree" }
futures = "0.3.9"
futures-timer = "3.0.2"
asynchronous-codec = "0.5"
@@ -41,21 +41,21 @@ log = "0.4.8"
nohash-hasher = "0.2.0"
parking_lot = "0.11.1"
pin-project = "1.0.4"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
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.8.0", path = "../block-builder" }
sc-client-api = { version = "2.0.0", path = "../api" }
sc-peerset = { version = "2.0.0", path = "../peerset" }
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" }
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.41"
smallvec = "1.5.0"
sp-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
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" }
thiserror = "1"
unsigned-varint = { version = "0.6.0", features = ["futures", "asynchronous_codec"] }
void = "1.0.2"
@@ -76,9 +76,9 @@ assert_matches = "1.3"
libp2p = { version = "0.34.0", default-features = false }
quickcheck = "1.0.3"
rand = "0.7.2"
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" }
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
sp-tracing = { version = "3.0.0", 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"
+11 -11
View File
@@ -14,23 +14,23 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
async-std = "1.6.5"
sc-network = { version = "0.8.0", path = "../" }
sc-network = { version = "0.9.0", 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.34.0", default-features = false }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sc-consensus = { version = "0.8.0", path = "../../consensus/common" }
sc-client-api = { version = "2.0.0", path = "../../api" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
sp-consensus-babe = { version = "0.8.0", path = "../../../primitives/consensus/babe" }
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" }
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 = "2.0.0", path = "../../../primitives/tracing" }
sc-service = { version = "0.8.0", default-features = false, features = ["test-helpers"], path = "../../service" }
sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" }
sc-service = { version = "0.9.0", default-features = false, features = ["test-helpers"], path = "../../service" }
+15 -15
View File
@@ -1,7 +1,7 @@
[package]
description = "Substrate offchain workers"
name = "sc-offchain"
version = "2.0.1"
version = "3.0.0"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -14,35 +14,35 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
bytes = "0.5"
sc-client-api = { version = "2.0.0", path = "../api" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sc-client-api = { version = "3.0.0", path = "../api" }
sp-api = { version = "3.0.0", path = "../../primitives/api" }
fnv = "1.0.6"
futures = "0.3.9"
futures-timer = "3.0.1"
log = "0.4.8"
threadpool = "1.7"
num_cpus = "1.10"
sp-offchain = { version = "2.0.0", path = "../../primitives/offchain" }
sp-offchain = { version = "3.0.0", path = "../../primitives/offchain" }
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
parking_lot = "0.11.1"
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-core = { version = "3.0.0", path = "../../primitives/core" }
rand = "0.7.2"
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
sc-network = { version = "0.8.0", path = "../network" }
sc-keystore = { version = "2.0.0", path = "../keystore" }
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
sc-network = { version = "0.9.0", path = "../network" }
sc-keystore = { version = "3.0.0", path = "../keystore" }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
hyper = "0.13.9"
hyper-rustls = "0.21.0"
[dev-dependencies]
sc-client-db = { version = "0.8.0", default-features = true, path = "../db" }
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
sp-consensus = { version = "0.8.1", path = "../../primitives/consensus/common" }
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" }
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" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
tokio = "0.2"
lazy_static = "1.4.0"
+2 -2
View File
@@ -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 = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
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.34.0", default-features = false }
sp-utils = { version = "2.0.0", path = "../../primitives/utils"}
sp-utils = { version = "3.0.0", path = "../../primitives/utils"}
log = "0.4.8"
serde_json = "1.0.41"
wasm-timer = "0.2"
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-proposer-metrics"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -14,4 +14,4 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-rpc-api"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -22,11 +22,11 @@ jsonrpc-derive = "15.1.0"
jsonrpc-pubsub = "15.1.0"
log = "0.4.8"
parking_lot = "0.11.1"
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-version = { version = "2.0.0", path = "../../primitives/version" }
sp-runtime = { path = "../../primitives/runtime" , version = "2.0.0"}
sp-chain-spec = { path = "../../primitives/chain-spec" , version = "2.0.0"}
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-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 = "2.0.0", path = "../../primitives/transaction-pool" }
sp-rpc = { version = "2.0.0", path = "../../primitives/rpc" }
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
sp-rpc = { version = "3.0.0", path = "../../primitives/rpc" }
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-rpc-server"
version = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -17,10 +17,10 @@ futures = "0.1.6"
jsonrpc-core = "15.1.0"
pubsub = { package = "jsonrpc-pubsub", version = "15.1.0" }
log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
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 = "2.0.0", path = "../../primitives/runtime" }
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
http = { package = "jsonrpc-http-server", version = "15.1.0" }
+24 -24
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-rpc"
version = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -13,31 +13,31 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-rpc-api = { version = "0.8.0", path = "../rpc-api" }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
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" }
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 = "2.0.0", path = "../../primitives/core" }
sp-core = { version = "3.0.0", path = "../../primitives/core" }
rpc = { package = "jsonrpc-core", version = "15.1.0" }
sp-version = { version = "2.0.0", path = "../../primitives/version" }
sp-version = { version = "3.0.0", path = "../../primitives/version" }
serde_json = "1.0.41"
sp-session = { version = "2.0.0", path = "../../primitives/session" }
sp-offchain = { version = "2.0.0", path = "../../primitives/offchain" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
sp-rpc = { version = "2.0.0", path = "../../primitives/rpc" }
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
sp-chain-spec = { version = "2.0.0", path = "../../primitives/chain-spec" }
sc-executor = { version = "0.8.0", path = "../executor" }
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
sc-keystore = { version = "2.0.0", path = "../keystore" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sc-tracing = { version = "2.0.0", path = "../tracing" }
sp-session = { version = "3.0.0", 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-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" }
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" }
hash-db = { version = "0.15.2", default-features = false }
parking_lot = "0.11.1"
lazy_static = { version = "1.4.0", optional = true }
@@ -46,12 +46,12 @@ lazy_static = { version = "1.4.0", optional = true }
assert_matches = "1.3.0"
futures01 = { package = "futures", version = "0.1.29" }
lazy_static = "1.4.0"
sc-network = { version = "0.8.0", path = "../network" }
sp-io = { version = "2.0.0", path = "../../primitives/io" }
sc-network = { version = "0.9.0", path = "../network" }
sp-io = { version = "3.0.0", path = "../../primitives/io" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
tokio = "0.1.22"
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
sc-cli = { version = "0.8.0", path = "../cli" }
sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" }
sc-cli = { version = "0.9.0", path = "../cli" }
[features]
test-helpers = ["lazy_static"]
+38 -38
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-service"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -40,41 +40,41 @@ pin-project = "1.0.4"
hash-db = "0.15.2"
serde = "1.0.101"
serde_json = "1.0.41"
sc-keystore = { version = "2.0.0", path = "../keystore" }
sp-io = { version = "2.0.0", path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" }
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
sp-version = { version = "2.0.0", path = "../../primitives/version" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
sp-session = { version = "2.0.0", path = "../../primitives/session" }
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" }
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" }
sc-network = { version = "0.8.0", path = "../network" }
sc-chain-spec = { version = "2.0.0", path = "../chain-spec" }
sc-light = { version = "2.0.0", path = "../light" }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sc-client-db = { version = "0.8.0", default-features = false, path = "../db" }
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" }
codec = { package = "parity-scale-codec", version = "2.0.0" }
sc-executor = { version = "0.8.0", path = "../executor" }
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
sc-rpc-server = { version = "2.0.0", path = "../rpc-servers" }
sc-rpc = { version = "2.0.0", path = "../rpc" }
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
sp-block-builder = { version = "2.0.0", path = "../../primitives/block-builder" }
sc-informant = { version = "0.8.0", path = "../informant" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
sc-offchain = { version = "2.0.0", path = "../offchain" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
sc-tracing = { version = "2.0.0", path = "../tracing" }
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
sc-executor = { version = "0.9.0", path = "../executor" }
sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" }
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
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" }
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" }
tracing = "0.1.22"
tracing-futures = { version = "0.2.4" }
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
@@ -86,9 +86,9 @@ 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.8.0", path = "../../primitives/consensus/babe" }
grandpa = { version = "0.8.0", package = "sc-finality-grandpa", path = "../finality-grandpa" }
grandpa-primitives = { version = "2.0.0", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
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" }
tokio = { version = "0.2.25", default-features = false }
async-std = { version = "1.6.5", default-features = false }
tracing-subscriber = "0.2.15"
+19 -19
View File
@@ -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 = "2.0.0", path = "../../light" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
sp-externalities = { version = "0.8.0", path = "../../../primitives/externalities" }
sp-trie = { version = "2.0.0", path = "../../../primitives/trie" }
sp-storage = { version = "2.0.0", path = "../../../primitives/storage" }
sc-client-db = { version = "0.8.0", default-features = false, path = "../../db" }
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" }
futures = { version = "0.3.1", features = ["compat"] }
sc-service = { version = "0.8.0", default-features = false, features = ["test-helpers"], path = "../../service" }
sc-network = { version = "0.8.0", path = "../../network" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
sc-service = { version = "0.9.0", default-features = false, 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" }
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 = "2.0.0", path = "../../api" }
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
sc-executor = { version = "0.8.0", path = "../../executor" }
sp-panic-handler = { version = "2.0.0", path = "../../../primitives/panic-handler" }
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" }
sp-panic-handler = { version = "3.0.0", path = "../../../primitives/panic-handler" }
parity-scale-codec = "2.0.0"
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" }
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-state-db"
version = "0.8.1"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
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 = "2.0.0", path = "../api" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sc-client-api = { version = "3.0.0", path = "../api" }
sp-core = { version = "3.0.0", 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"
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-sync-state-rpc"
version = "0.8.0"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
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 = "2.0.0", path = "../chain-spec" }
sc-client-api = { version = "2.0.0", path = "../api" }
sc-consensus-babe = { version = "0.8.0", path = "../consensus/babe" }
sc-consensus-epochs = { version = "0.8.0", path = "../consensus/epochs" }
sc-finality-grandpa = { version = "0.8.0", path = "../finality-grandpa" }
sc-rpc-api = { version = "0.8.0", path = "../rpc-api" }
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" }
serde_json = "1.0.58"
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-telemetry"
version = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Telemetry utils"
edition = "2018"
@@ -28,5 +28,5 @@ void = "1.0.2"
tracing = "0.1.10"
tracing-subscriber = "0.2.13"
serde_json = "1.0.41"
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
chrono = "0.4.19"
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-tracing"
version = "2.0.1"
version = "3.0.0"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -29,9 +29,9 @@ tracing = "0.1.22"
tracing-core = "0.1.17"
tracing-log = "0.1.1"
tracing-subscriber = "0.2.15"
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
sc-tracing-proc-macro = { version = "2.0.0", path = "./proc-macro" }
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
sc-telemetry = { version = "3.0.0", path = "../telemetry" }
sc-tracing-proc-macro = { version = "3.0.0", path = "./proc-macro" }
[target.'cfg(target_os = "unknown")'.dependencies]
wasm-bindgen = "0.2.67"
@@ -1,6 +1,6 @@
[package]
name = "sc-tracing-proc-macro"
version = "2.0.0"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+14 -14
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-transaction-pool"
version = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -21,23 +21,23 @@ intervalier = "0.4.0"
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.8.0"}
sc-client-api = { version = "2.0.0", path = "../api" }
sc-transaction-graph = { version = "2.0.0", path = "./graph" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
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" }
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" }
wasm-timer = "0.2"
[dev-dependencies]
assert_matches = "1.3.0"
hex = "0.4"
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
sp-consensus = { version = "0.9.0", 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.8.0", path = "../block-builder" }
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
@@ -1,6 +1,6 @@
[package]
name = "sc-transaction-graph"
version = "2.0.1"
version = "3.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -20,11 +20,11 @@ log = "0.4.8"
parking_lot = "0.11.1"
serde = { version = "1.0.101", features = ["derive"] }
wasm-timer = "0.2"
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
sp-utils = { version = "2.0.0", path = "../../../primitives/utils" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-transaction-pool = { version = "2.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-core = { version = "3.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "3.0.0", 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"
retain_mut = "0.1.2"