Setting versions locally towards 2.0 release (#4404)

* clean up cargo.toml syntax

* bumping versions to 2.0

* bump networking to 0.8

* move consensus down to 0.8

* bump consensus pallets to 0.8.0, too

* Upping babe and aura pallets

* add remaining, missing version definitions

* missed some
This commit is contained in:
Benjamin Kampmann
2019-12-17 15:05:50 +01:00
committed by Gavin Wood
parent 33fa445db0
commit 9200bfa997
131 changed files with 1115 additions and 1115 deletions
+18 -18
View File
@@ -5,36 +5,36 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
sc-block-builder = { path = "block-builder" }
sc-client-api = { path = "api" }
sc-block-builder = { version = "2.0.0", path = "block-builder" }
sc-client-api = { version = "2.0.0", path = "api" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sp-consensus = { path = "../primitives/consensus/common" }
sp-consensus = { version = "0.8", path = "../primitives/consensus/common" }
derive_more = { version = "0.99.2" }
sc-executor = { path = "executor" }
sp-externalities = { path = "../primitives/externalities" }
sc-executor = { version = "2.0.0", path = "executor" }
sp-externalities = { version = "2.0.0", path = "../primitives/externalities" }
fnv = { version = "1.0.6" }
futures = { version = "0.3.1", features = ["compat"] }
hash-db = { version = "0.15.2" }
hex-literal = { version = "0.2.1" }
sp-inherents = { path = "../primitives/inherents" }
sp-keyring = { path = "../primitives/keyring" }
sp-inherents = { version = "2.0.0", path = "../primitives/inherents" }
sp-keyring = { version = "2.0.0", path = "../primitives/keyring" }
kvdb = "0.1.1"
log = { version = "0.4.8" }
parking_lot = { version = "0.9.0" }
sp-core = { path = "../primitives/core" }
sp-std = { path = "../primitives/std" }
sp-version = { path = "../primitives/version" }
sp-api = { path = "../primitives/api" }
sp-runtime = { path = "../primitives/runtime" }
sp-blockchain = { path = "../primitives/blockchain" }
sp-state-machine = { path = "../primitives/state-machine" }
sc-telemetry = { path = "telemetry" }
sp-trie = { path = "../primitives/trie" }
sp-core = { version = "2.0.0", path = "../primitives/core" }
sp-std = { version = "2.0.0", path = "../primitives/std" }
sp-version = { version = "2.0.0", path = "../primitives/version" }
sp-api = { version = "2.0.0", path = "../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../primitives/runtime" }
sp-blockchain = { version = "2.0.0", path = "../primitives/blockchain" }
sp-state-machine = { version = "2.0.0", path = "../primitives/state-machine" }
sc-telemetry = { version = "2.0.0", path = "telemetry" }
sp-trie = { version = "2.0.0", path = "../primitives/trie" }
tracing = "0.1.10"
[dev-dependencies]
env_logger = "0.7.0"
tempfile = "3.1.0"
substrate-test-runtime-client = { path = "../test-utils/runtime/client" }
substrate-test-runtime-client = { version = "2.0.0", path = "../test-utils/runtime/client" }
kvdb-memorydb = "0.1.2"
sp-panic-handler = { path = "../primitives/panic-handler" }
sp-panic-handler = { version = "2.0.0", path = "../primitives/panic-handler" }
+16 -16
View File
@@ -6,29 +6,29 @@ edition = "2018"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-consensus = { path = "../../primitives/consensus/common" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" }
derive_more = { version = "0.99.2" }
sc-executor = { path = "../executor" }
sp-externalities = { path = "../../primitives/externalities" }
sc-executor = { version = "2.0.0", path = "../executor" }
sp-externalities = { version = "2.0.0", path = "../../primitives/externalities" }
fnv = { version = "1.0.6" }
futures = { version = "0.3.1" }
hash-db = { version = "0.15.2", default-features = false }
sp-blockchain = { path = "../../primitives/blockchain" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
hex-literal = { version = "0.2.1" }
sp-inherents = { path = "../../primitives/inherents", default-features = false }
sp-keyring = { path = "../../primitives/keyring" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
kvdb = "0.1.1"
log = { version = "0.4.8" }
parking_lot = { version = "0.9.0" }
sp-core = { path = "../../primitives/core", default-features = false }
sp-std = { path = "../../primitives/std", default-features = false }
sp-version = { path = "../../primitives/version", default-features = false }
sp-api = { path = "../../primitives/api" }
sp-runtime = { path = "../../primitives/runtime", default-features = false }
sp-state-machine = { path = "../../primitives/state-machine" }
sc-telemetry = { path = "../telemetry" }
sp-trie = { path = "../../primitives/trie" }
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
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-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
[dev-dependencies]
sp-test-primitives = { path = "../../primitives/test-primitives" }
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" }
+10 -10
View File
@@ -9,26 +9,26 @@ build = "build.rs"
prost-build = "0.5.0"
[dependencies]
sp-authority-discovery = { path = "../../primitives/authority-discovery" }
sp-authority-discovery = { version = "2.0.0", path = "../../primitives/authority-discovery" }
bytes = "0.4.12"
sc-client-api = { path = "../api" }
sc-client-api = { version = "2.0.0", path = "../api" }
codec = { package = "parity-scale-codec", default-features = false, version = "1.0.3" }
derive_more = "0.99.2"
futures = "0.3.1"
futures-timer = "2.0"
sc-keystore = { path = "../keystore" }
sc-keystore = { version = "2.0.0", path = "../keystore" }
libp2p = { version = "0.13.0", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
log = "0.4.8"
sc-network = { path = "../network" }
sp-core = { path = "../../primitives/core" }
sp-blockchain = { path = "../../primitives/blockchain" }
sc-network = { version = "0.8", path = "../network" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
prost = "0.5.0"
serde_json = "1.0.41"
sp-runtime = { path = "../../primitives/runtime" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
[dev-dependencies]
env_logger = "0.7.0"
parking_lot = "0.9.0"
sc-peerset = { path = "../peerset" }
sp-test-primitives = { path = "../../primitives/test-primitives" }
sp-api = { path = "../../primitives/api" }
sc-peerset = { version = "2.0.0", path = "../peerset" }
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
+12 -12
View File
@@ -8,19 +8,19 @@ edition = "2018"
log = "0.4.8"
futures = "0.3.1"
codec = { package = "parity-scale-codec", version = "1.0.0" }
sp-runtime = { path = "../../primitives/runtime" }
sp-core = { path = "../../primitives/core" }
sp-blockchain = { path = "../../primitives/blockchain" }
sc-client = { path = "../" }
sc-client-api = { path = "../api" }
sp-consensus = { path = "../../primitives/consensus/common" }
sp-inherents = { path = "../../primitives/inherents" }
sc-telemetry = { path = "../telemetry" }
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
sc-block-builder = { path = "../block-builder" }
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 = { version = "2.0.0", path = "../" }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-consensus = { version = "0.8", 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 = "2.0.0", path = "../block-builder" }
tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] }
[dev-dependencies]
sc-transaction-pool = { path = "../../client/transaction-pool" }
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
sc-transaction-pool = { version = "2.0.0", path = "../../client/transaction-pool" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
parking_lot = "0.9"
+6 -6
View File
@@ -5,10 +5,10 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
sp-state-machine = { path = "../../primitives/state-machine" }
sp-runtime = { path = "../../primitives/runtime" }
sp-blockchain = { path = "../../primitives/blockchain" }
sp-core = { path = "../../primitives/core" }
sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
sp-block-builder = { path = "../../primitives/block-builder" }
sp-api = { path = "../../primitives/api" }
sp-block-builder = { version = "2.0.0", path = "../../primitives/block-builder" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
+5 -5
View File
@@ -5,11 +5,11 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
sc-chain-spec-derive = { path = "./derive" }
sc-chain-spec-derive = { version = "2.0.0", path = "./derive" }
impl-trait-for-tuples = "0.1.3"
sc-network = { path = "../network" }
sp-core = { path = "../../primitives/core" }
sc-network = { version = "0.8", path = "../network" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.41"
sp-runtime = { path = "../../primitives/runtime" }
sc-telemetry = { path = "../telemetry" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
+11 -11
View File
@@ -20,19 +20,19 @@ tokio = "0.2.1"
futures = { version = "0.3.1", features = ["compat"] }
fdlimit = "0.1.1"
serde_json = "1.0.41"
sp-panic-handler = { path = "../../primitives/panic-handler" }
sc-client-api = { path = "../api" }
sp-blockchain = { path = "../../primitives/blockchain" }
sc-network = { path = "../network" }
sp-runtime = { path = "../../primitives/runtime" }
sp-core = { path = "../../primitives/core" }
sc-service = { path = "../service", default-features = false }
sp-state-machine = { path = "../../primitives/state-machine" }
sc-telemetry = { path = "../telemetry" }
sp-keyring = { path = "../../primitives/keyring" }
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", path = "../network" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sc-service = { version = "2.0.0", default-features = false, path = "../service" }
sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
names = "0.11.0"
structopt = "0.3.3"
sc-tracing = { path = "../tracing" }
sc-tracing = { version = "2.0.0", path = "../tracing" }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
rpassword = "4.0.1"
+24 -24
View File
@@ -1,43 +1,43 @@
[package]
name = "sc-consensus-aura"
version = "2.0.0"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Aura consensus algorithm for substrate"
edition = "2018"
[dependencies]
sp-application-crypto = { path = "../../../primitives/application-crypto" }
sp-consensus-aura = { path = "../../../primitives/consensus/aura" }
sp-block-builder = { path = "../../../primitives/block-builder" }
sc-client = { path = "../../" }
sc-client-api = { path = "../../api" }
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
sc-client = { version = "2.0.0", path = "../../" }
sc-client-api = { version = "2.0.0", path = "../../api" }
codec = { package = "parity-scale-codec", version = "1.0.0" }
sp-consensus = { path = "../../../primitives/consensus/common" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" }
derive_more = "0.99.2"
futures = { version = "0.3.1", features = ["compat"] }
futures01 = { package = "futures", version = "0.1" }
futures-timer = "0.4.0"
sp-inherents = { path = "../../../primitives/inherents" }
sc-keystore = { path = "../../keystore" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0", path = "../../keystore" }
log = "0.4.8"
parking_lot = "0.9.0"
sp-core = { path = "../../../primitives/core" }
sp-blockchain = { path = "../../../primitives/blockchain" }
sp-io = { path = "../../../primitives/io" }
sp-version = { path = "../../../primitives/version" }
sc-consensus-slots = { path = "../slots" }
sp-api = { path = "../../../primitives/api" }
sp-runtime = { path = "../../../primitives/runtime" }
sp-timestamp = { path = "../../../primitives/timestamp" }
sc-telemetry = { path = "../../telemetry" }
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", 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" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
[dev-dependencies]
sp-keyring = { path = "../../../primitives/keyring" }
sc-executor = { path = "../../executor" }
sc-network = { path = "../../network" }
sc-network-test = { path = "../../network/test" }
sc-service = { path = "../../service" }
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
sc-executor = { version = "2.0.0", path = "../../executor" }
sc-network = { version = "0.8", path = "../../network" }
sc-network-test = { version = "2.0.0", path = "../../network/test" }
sc-service = { version = "2.0.0", path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
tokio = "0.1.22"
env_logger = "0.7.0"
tempfile = "3.1.0"
+27 -27
View File
@@ -1,34 +1,34 @@
[package]
name = "sc-consensus-babe"
version = "2.0.0"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "BABE consensus algorithm for substrate"
edition = "2018"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sp-consensus-babe = { path = "../../../primitives/consensus/babe" }
sp-core = { path = "../../../primitives/core" }
sp-application-crypto = { path = "../../../primitives/application-crypto" }
sp-consensus-babe = { version = "0.8", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
num-bigint = "0.2.3"
num-rational = "0.2.2"
num-traits = "0.2.8"
sp-version = { path = "../../../primitives/version" }
sp-io = { path = "../../../primitives/io" }
sp-inherents = { path = "../../../primitives/inherents" }
sp-timestamp = { path = "../../../primitives/timestamp" }
sc-telemetry = { path = "../../telemetry" }
sc-keystore = { path = "../../keystore" }
sc-client-api = { path = "../../api" }
sc-client = { path = "../../" }
sp-api = { path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder" }
sp-blockchain = { path = "../../../primitives/blockchain" }
sp-consensus = { path = "../../../primitives/consensus/common" }
sc-consensus-uncles = { path = "../uncles" }
sc-consensus-slots = { path = "../slots" }
sp-runtime = { path = "../../../primitives/runtime" }
fork-tree = { path = "../../../utils/fork-tree" }
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-client = { version = "2.0.0", path = "../../" }
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", path = "../../../primitives/consensus/common" }
sc-consensus-uncles = { version = "0.8", path = "../uncles" }
sc-consensus-slots = { version = "0.8", path = "../slots" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" }
futures = { version = "0.3.1", features = ["compat"] }
futures01 = { package = "futures", version = "0.1" }
futures-timer = "0.4.0"
@@ -41,13 +41,13 @@ pdqselect = "0.1.0"
derive_more = "0.99.2"
[dev-dependencies]
sp-keyring = { path = "../../../primitives/keyring" }
sc-executor = { path = "../../executor" }
sc-network = { path = "../../network" }
sc-network-test = { path = "../../network/test" }
sc-service = { path = "../../service" }
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
sc-block-builder = { path = "../../block-builder" }
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
sc-executor = { version = "2.0.0", path = "../../executor" }
sc-network = { version = "0.8", path = "../../network" }
sc-network-test = { version = "2.0.0", path = "../../network/test" }
sc-service = { version = "2.0.0", path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "2.0.0", path = "../../block-builder" }
tokio = "0.1.22"
env_logger = "0.7.0"
tempfile = "3.1.0"
+10 -10
View File
@@ -1,21 +1,21 @@
[package]
name = "sc-consensus-pow"
version = "2.0.0"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "PoW consensus algorithm for substrate"
edition = "2018"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sp-core = { path = "../../../primitives/core" }
sp-blockchain = { path = "../../../primitives/blockchain" }
sp-runtime = { path = "../../../primitives/runtime" }
sc-client-api = { path = "../../api" }
sp-block-builder = { path = "../../../primitives/block-builder" }
sp-inherents = { path = "../../../primitives/inherents" }
sp-consensus-pow = { path = "../../../primitives/consensus/pow" }
sp-consensus = { path = "../../../primitives/consensus/common" }
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" }
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", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" }
log = "0.4.8"
futures = { version = "0.3.1", features = ["compat"] }
sp-timestamp = { path = "../../../primitives/timestamp" }
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
derive_more = "0.99.2"
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "sc-consensus-slots"
version = "2.0.0"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic slots-based utilities for consensus"
edition = "2018"
@@ -8,17 +8,17 @@ build = "build.rs"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" }
sc-client-api = { path = "../../api" }
sp-core = { path = "../../../primitives/core" }
sp-blockchain = { path = "../../../primitives/blockchain" }
sp-runtime = { path = "../../../primitives/runtime" }
sc-telemetry = { path = "../../telemetry" }
sp-consensus = { path = "../../../primitives/consensus/common" }
sp-inherents = { path = "../../../primitives/inherents" }
sc-client-api = { version = "2.0.0", path = "../../api" }
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" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
futures = "0.3.1"
futures-timer = "2.0"
parking_lot = "0.9.0"
log = "0.4.8"
[dev-dependencies]
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
+7 -7
View File
@@ -1,15 +1,15 @@
[package]
name = "sc-consensus-uncles"
version = "2.0.0"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic uncle inclusion utilities for consensus"
edition = "2018"
[dependencies]
sc-client-api = { path = "../../api" }
sp-core = { path = "../../../primitives/core" }
sp-runtime = { path = "../../../primitives/runtime" }
sp-authorship = { path = "../../../primitives/authorship" }
sp-consensus = { path = "../../../primitives/consensus/common" }
sp-inherents = { path = "../../../primitives/inherents" }
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", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
log = "0.4.8"
+12 -12
View File
@@ -12,21 +12,21 @@ kvdb-rocksdb = { version = "0.2", optional = true }
kvdb-memorydb = "0.1.2"
linked-hash-map = "0.5.2"
hash-db = "0.15.2"
sc-client-api = { path = "../api" }
sp-core = { path = "../../primitives/core" }
sp-runtime = { path = "../../primitives/runtime" }
sc-client = { path = "../" }
sp-state-machine = { path = "../../primitives/state-machine" }
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" }
sc-client = { version = "2.0.0", path = "../" }
sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sc-executor = { path = "../executor" }
sc-state-db = { path = "../state-db" }
sp-trie = { path = "../../primitives/trie" }
sp-consensus = { path = "../../primitives/consensus/common" }
sp-blockchain = { path = "../../primitives/blockchain" }
sc-executor = { version = "2.0.0", path = "../executor" }
sc-state-db = { version = "2.0.0", path = "../state-db" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
[dev-dependencies]
sp-keyring = { path = "../../primitives/keyring" }
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
env_logger = "0.7.0"
quickcheck = "0.9"
+12 -12
View File
@@ -7,18 +7,18 @@ edition = "2018"
[dependencies]
derive_more = "0.99.2"
codec = { package = "parity-scale-codec", version = "1.0.0" }
sp-io = { path = "../../primitives/io" }
sp-core = { path = "../../primitives/core" }
sp-trie = { path = "../../primitives/trie" }
sp-serializer = { path = "../../primitives/serializer" }
sp-version = { path = "../../primitives/version" }
sp-panic-handler = { path = "../../primitives/panic-handler" }
sp-io = { version = "2.0.0", path = "../../primitives/io" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
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" }
wasmi = "0.6.2"
parity-wasm = "0.41.0"
lazy_static = "1.4.0"
sp-wasm-interface = { path = "../../primitives/wasm-interface" }
sp-runtime-interface = { path = "../../primitives/runtime-interface" }
sp-externalities = { path = "../../primitives/externalities" }
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 = "2.0.0", path = "../../primitives/externalities" }
parking_lot = "0.9.0"
log = "0.4.8"
libsecp256k1 = "0.3.2"
@@ -36,9 +36,9 @@ wasmtime-runtime = { version = "0.8", optional = true }
assert_matches = "1.3.0"
wabt = "0.9.2"
hex-literal = "0.2.1"
sc-runtime-test = { path = "runtime-test" }
substrate-test-runtime = { path = "../../test-utils/runtime" }
sp-state-machine = { path = "../../primitives/state-machine" }
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 = "2.0.0", path = "../../primitives/state-machine" }
test-case = "0.3.3"
[features]
@@ -6,14 +6,14 @@ edition = "2018"
build = "build.rs"
[dependencies]
sp-std = { path = "../../../primitives/std", default-features = false }
sp-io = { path = "../../../primitives/io", default-features = false }
sp-sandbox = { path = "../../../primitives/sandbox", default-features = false }
sp-core = { path = "../../../primitives/core", default-features = false }
sp-runtime = { path = "../../../primitives/runtime", default-features = false }
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../../primitives/io" }
sp-sandbox = { version = "2.0.0", default-features = false, path = "../../../primitives/sandbox" }
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
[build-dependencies]
wasm-builder-runner = { package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner", version = "1.0.4" }
wasm-builder-runner = { version = "1.0.4", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
[features]
default = [ "std" ]
+21 -21
View File
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
fork-tree = { path = "../../utils/fork-tree" }
fork-tree = { version = "2.0.0", path = "../../utils/fork-tree" }
futures = "0.1.29"
futures03 = { package = "futures", version = "0.3.1", features = ["compat"] }
futures-timer = "2.0.2"
@@ -13,31 +13,31 @@ log = "0.4.8"
parking_lot = "0.9.0"
rand = "0.7.2"
parity-scale-codec = { version = "1.0.0", features = ["derive"] }
sp-runtime = { path = "../../primitives/runtime" }
sp-consensus = { path = "../../primitives/consensus/common" }
sp-core = { path = "../../primitives/core" }
sc-telemetry = { path = "../telemetry" }
sc-keystore = { path = "../keystore" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
sc-keystore = { version = "2.0.0", path = "../keystore" }
serde_json = "1.0.41"
sc-client-api = { path = "../api" }
sc-client = { path = "../" }
sp-inherents = { path = "../../primitives/inherents" }
sp-blockchain = { path = "../../primitives/blockchain" }
sc-network = { path = "../network" }
sc-network-gossip = { path = "../network-gossip" }
sp-finality-tracker = { path = "../../primitives/finality-tracker" }
sp-finality-grandpa = { path = "../../primitives/finality-grandpa" }
sc-client-api = { version = "2.0.0", path = "../api" }
sc-client = { version = "2.0.0", path = "../" }
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sc-network = { version = "0.8", path = "../network" }
sc-network-gossip = { version = "2.0.0", path = "../network-gossip" }
sp-finality-tracker = { version = "2.0.0", path = "../../primitives/finality-tracker" }
sp-finality-grandpa = { version = "2.0.0", path = "../../primitives/finality-grandpa" }
finality-grandpa = { version = "0.10.1", features = ["derive-codec"] }
[dev-dependencies]
finality-grandpa = { version = "0.10.1", features = ["derive-codec", "test-helpers"] }
sc-network = { path = "../network" }
sc-network-test = { path = "../network/test" }
sp-keyring = { path = "../../primitives/keyring" }
substrate-test-runtime-client = { path = "../../test-utils/runtime/client"}
sp-consensus-babe = { path = "../../primitives/consensus/babe" }
sp-state-machine = { path = "../../primitives/state-machine" }
sc-network = { version = "0.8", path = "../network" }
sc-network-test = { version = "2.0.0", path = "../network/test" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
sp-consensus-babe = { version = "0.8", path = "../../primitives/consensus/babe" }
sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" }
env_logger = "0.7.0"
tokio = "0.1.22"
tempfile = "3.1.0"
sp-api = { path = "../../primitives/api" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
+2 -2
View File
@@ -6,8 +6,8 @@ edition = "2018"
[dependencies]
derive_more = "0.99.2"
sp-core = { path = "../../primitives/core" }
sp-application-crypto = { path = "../../primitives/application-crypto" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" }
hex = "0.4.0"
rand = "0.7.2"
serde_json = "1.0.41"
+2 -2
View File
@@ -13,6 +13,6 @@ futures = { version = "0.3.1", features = ["compat"] }
futures-timer = "0.4.0"
lru = "0.1.2"
libp2p = { version = "0.13.0", default-features = false, features = ["libp2p-websocket"] }
sc-network = { path = "../network" }
sc-network = { version = "0.8", path = "../network" }
parking_lot = "0.9.0"
sp-runtime = { path = "../../primitives/runtime" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
+17 -17
View File
@@ -1,7 +1,7 @@
[package]
description = "Substrate network protocol"
name = "sc-network"
version = "2.0.0"
version = "0.8.0"
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -23,17 +23,17 @@ lru = "0.4.0"
rustc-hex = "2.0.1"
rand = "0.7.2"
libp2p = { version = "0.13.0", default-features = false, features = ["libp2p-websocket"] }
fork-tree = { path = "../../utils/fork-tree" }
sp-consensus = { path = "../../primitives/consensus/common" }
sc-client = { path = "../" }
sc-client-api = { path = "../api" }
sp-blockchain = { path = "../../primitives/blockchain" }
sp-runtime = { path = "../../primitives/runtime" }
sp-arithmetic = { path = "../../primitives/arithmetic" }
sp-core = { path = "../../primitives/core" }
sc-block-builder = { path = "../block-builder" }
fork-tree = { version = "2.0.0", path = "../../utils/fork-tree" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" }
sc-client = { version = "2.0.0", path = "../" }
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-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sc-block-builder = { version = "2.0.0", path = "../block-builder" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sc-peerset = { path = "../peerset" }
sc-peerset = { version = "2.0.0", path = "../peerset" }
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.41"
slog = { version = "2.5.2", features = ["nested-values"] }
@@ -42,18 +42,18 @@ smallvec = "0.6.10"
tokio-io = "0.1.12"
tokio = { version = "0.1.22", optional = true }
unsigned-varint = { version = "0.2.2", features = ["codec"] }
sp-keyring = { path = "../../primitives/keyring", optional = true }
substrate-test-client = { path = "../../test-utils/client", optional = true }
substrate-test-runtime-client = { path = "../../test-utils/runtime/client", optional = true }
sp-keyring = { version = "2.0.0", optional = true, path = "../../primitives/keyring" }
substrate-test-client = { version = "2.0.0", optional = true, path = "../../test-utils/client" }
substrate-test-runtime-client = { version = "2.0.0", optional = true, path = "../../test-utils/runtime/client" }
erased-serde = "0.3.9"
void = "1.0.2"
zeroize = "1.0.0"
sp-consensus-babe = { path = "../../primitives/consensus/babe" }
sp-consensus-babe = { version = "0.8", path = "../../primitives/consensus/babe" }
[dev-dependencies]
sp-test-primitives = { path = "../../primitives/test-primitives" }
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" }
env_logger = "0.7.0"
sp-keyring = { path = "../../primitives/keyring" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
quickcheck = "0.9.0"
rand = "0.7.2"
tempfile = "3.1.0"
+11 -11
View File
@@ -7,7 +7,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
sc-network = { path = "../" }
sc-network = { version = "0.8", path = "../" }
log = "0.4.8"
parking_lot = "0.9.0"
futures = "0.1.29"
@@ -15,16 +15,16 @@ futures03 = { package = "futures", version = "0.3.1", features = ["compat"] }
futures-timer = "0.4.0"
rand = "0.7.2"
libp2p = { version = "0.13.0", default-features = false, features = ["libp2p-websocket"] }
sp-consensus = { path = "../../../primitives/consensus/common" }
sc-client = { path = "../../" }
sc-client-api = { path = "../../api" }
sp-blockchain = { path = "../../../primitives/blockchain" }
sp-runtime = { path = "../../../primitives/runtime" }
sp-core = { path = "../../../primitives/core" }
sc-block-builder = { path = "../../block-builder" }
sp-consensus-babe = { path = "../../../primitives/consensus/babe" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" }
sc-client = { version = "2.0.0", path = "../../" }
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 = "2.0.0", path = "../../block-builder" }
sp-consensus-babe = { version = "0.8", path = "../../../primitives/consensus/babe" }
env_logger = "0.7.0"
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
substrate-test-runtime = { path = "../../../test-utils/runtime" }
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"
tokio = "0.1.22"
+11 -11
View File
@@ -8,8 +8,8 @@ edition = "2018"
[dependencies]
bytes = "0.4.12"
sc-client-api = { path = "../api" }
sp-api = { path = "../../primitives/api" }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
fnv = "1.0.6"
futures01 = { package = "futures", version = "0.1" }
futures = "0.3.1"
@@ -17,26 +17,26 @@ futures-timer = "2.0"
log = "0.4.8"
threadpool = "1.7"
num_cpus = "1.10"
sp-offchain = { path = "../../primitives/offchain" }
sp-offchain = { version = "2.0.0", path = "../../primitives/offchain" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
parking_lot = "0.9.0"
sp-core = { path = "../../primitives/core" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
rand = "0.7.2"
sp-runtime = { path = "../../primitives/runtime" }
sc-network = { path = "../network" }
sc-keystore = { path = "../keystore" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sc-network = { version = "0.8", path = "../network" }
sc-keystore = { version = "2.0.0", path = "../keystore" }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
hyper = "0.12.35"
hyper-rustls = "0.17.1"
[dev-dependencies]
sc-client-db = { path = "../db/", default-features = true }
sc-client-db = { version = "2.0.0", default-features = true, path = "../db/" }
env_logger = "0.7.0"
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
tokio = "0.1.22"
sc-transaction-pool = { path = "../../client/transaction-pool" }
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
sc-transaction-pool = { version = "2.0.0", path = "../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
[features]
default = []
+4 -4
View File
@@ -14,9 +14,9 @@ jsonrpc-derive = "14.0.3"
jsonrpc-pubsub = "14.0.3"
log = "0.4.8"
parking_lot = "0.9.0"
sp-core = { path = "../../primitives/core" }
sp-version = { path = "../../primitives/version" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-version = { version = "2.0.0", path = "../../primitives/version" }
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.41"
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
sp-rpc = { path = "../../primitives/rpc" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
sp-rpc = { version = "2.0.0", path = "../../primitives/rpc" }
+1 -1
View File
@@ -10,7 +10,7 @@ pubsub = { package = "jsonrpc-pubsub", version = "14.0.3" }
log = "0.4.8"
serde = "1.0.101"
serde_json = "1.0.41"
sp-runtime = { path = "../../primitives/runtime" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
http = { package = "jsonrpc-http-server", version = "14.0.3" }
+18 -18
View File
@@ -5,35 +5,35 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
sc-rpc-api = { path = "../rpc-api" }
sc-client-api = { path = "../api" }
sc-client = { path = "../" }
sp-api = { path = "../../primitives/api" }
sc-rpc-api = { version = "2.0.0", path = "../rpc-api" }
sc-client-api = { version = "2.0.0", path = "../api" }
sc-client = { version = "2.0.0", path = "../" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
codec = { package = "parity-scale-codec", version = "1.0.0" }
futures = { version = "0.3.1", features = ["compat"] }
jsonrpc-pubsub = "14.0.3"
log = "0.4.8"
sp-core = { path = "../../primitives/core" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
rpc = { package = "jsonrpc-core", version = "14.0.3" }
sp-version = { path = "../../primitives/version" }
sp-version = { version = "2.0.0", path = "../../primitives/version" }
serde_json = "1.0.41"
sp-session = { path = "../../primitives/session" }
sp-runtime = { path = "../../primitives/runtime" }
sp-rpc = { path = "../../primitives/rpc" }
sp-state-machine = { path = "../../primitives/state-machine" }
sc-executor = { path = "../executor" }
sc-keystore = { path = "../keystore" }
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
sp-blockchain = { path = "../../primitives/blockchain" }
sp-session = { version = "2.0.0", path = "../../primitives/session" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sp-rpc = { version = "2.0.0", path = "../../primitives/rpc" }
sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" }
sc-executor = { version = "2.0.0", path = "../executor" }
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" }
hash-db = { version = "0.15.2", default-features = false }
parking_lot = { version = "0.9.0" }
[dev-dependencies]
assert_matches = "1.3.0"
futures01 = { package = "futures", version = "0.1.29" }
sc-network = { path = "../network" }
sc-network = { version = "0.8", path = "../network" }
rustc-hex = "2.0.1"
sp-io = { path = "../../primitives/io" }
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
sp-io = { version = "2.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 = { path = "../transaction-pool" }
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
+27 -27
View File
@@ -28,36 +28,36 @@ serde = "1.0.101"
serde_json = "1.0.41"
sysinfo = "0.9.5"
target_info = "0.1.0"
sc-keystore = { path = "../keystore" }
sp-io = { path = "../../primitives/io" }
sp-runtime = { path = "../../primitives/runtime" }
sp-blockchain = { path = "../../primitives/blockchain" }
sp-core = { path = "../../primitives/core" }
sp-session = { path = "../../primitives/session" }
sp-application-crypto = { path = "../../primitives/application-crypto" }
sp-consensus = { path = "../../primitives/consensus/common" }
sc-network = { path = "../network" }
sc-chain-spec = { path = "../chain-spec" }
sc-client-api = { path = "../api" }
sc-client = { path = "../" }
sp-api = { path = "../../primitives/api" }
sc-client-db = { path = "../db" }
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-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-session = { version = "2.0.0", path = "../../primitives/session" }
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" }
sc-network = { version = "0.8", path = "../network" }
sc-chain-spec = { version = "2.0.0", path = "../chain-spec" }
sc-client-api = { version = "2.0.0", path = "../api" }
sc-client = { version = "2.0.0", path = "../" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sc-client-db = { version = "2.0.0", path = "../db" }
codec = { package = "parity-scale-codec", version = "1.0.0" }
sc-executor = { path = "../executor" }
sc-transaction-pool = { path = "../transaction-pool" }
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
sc-rpc-server = { path = "../rpc-servers" }
sc-rpc = { path = "../rpc" }
sc-telemetry = { path = "../telemetry" }
sc-offchain = { path = "../offchain" }
sc-executor = { version = "2.0.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-telemetry = { version = "2.0.0", path = "../telemetry" }
sc-offchain = { version = "2.0.0", path = "../offchain" }
parity-multiaddr = { package = "parity-multiaddr", version = "0.5.0" }
grafana-data-source = { path = "../../utils/grafana-data-source" }
sc-tracing = { path = "../tracing" }
grafana-data-source = { version = "2.0.0", path = "../../utils/grafana-data-source" }
sc-tracing = { version = "2.0.0", path = "../tracing" }
tracing = "0.1.10"
[dev-dependencies]
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
sp-consensus-babe = { path = "../../primitives/consensus/babe" }
grandpa = { package = "sc-finality-grandpa", path = "../finality-grandpa" }
grandpa-primitives = { package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
sp-consensus-babe = { version = "0.8", path = "../../primitives/consensus/babe" }
grandpa = { version = "2.0.0", package = "sc-finality-grandpa", path = "../finality-grandpa" }
grandpa-primitives = { version = "2.0.0", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
tokio = "0.1"
+7 -7
View File
@@ -12,10 +12,10 @@ log = "0.4.8"
env_logger = "0.7.0"
fdlimit = "0.1.1"
futures03 = { package = "futures", version = "0.3.1", features = ["compat"] }
sc-service = { path = "../../service", default-features = false }
sc-network = { path = "../../network" }
sp-consensus = { path = "../../../primitives/consensus/common" }
sc-client = { path = "../../" }
sp-runtime = { path = "../../../primitives/runtime" }
sp-core = { path = "../../../primitives/core" }
sp-transaction-pool = { path = "../../../primitives/transaction-pool" }
sc-service = { version = "2.0.0", default-features = false, path = "../../service" }
sc-network = { version = "0.8", path = "../../network" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" }
sc-client = { version = "2.0.0", path = "../../" }
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" }
+1 -1
View File
@@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
parking_lot = "0.9.0"
log = "0.4.8"
sp-core = { path = "../../primitives/core" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
[dev-dependencies]
+2 -2
View File
@@ -14,8 +14,8 @@ serde_json = "1.0.41"
slog = { version = "2.5.2", features = ["nested-values"] }
tracing-core = "0.1.7"
sc-telemetry = { path = "../telemetry" }
grafana-data-source = { path = "../../utils/grafana-data-source" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
grafana-data-source = { version = "2.0.0", path = "../../utils/grafana-data-source" }
[dev-dependencies]
tracing = "0.1.10"
+9 -9
View File
@@ -10,14 +10,14 @@ derive_more = "0.99.2"
futures = { version = "0.3.1", features = ["compat"] }
log = "0.4.8"
parking_lot = "0.9.0"
sp-core = { path = "../../primitives/core" }
sp-api = { path = "../../primitives/api" }
sp-runtime = { path = "../../primitives/runtime" }
sc-transaction-graph = { path = "./graph" }
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
sc-client-api = { path = "../api" }
sp-blockchain = { path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-api = { version = "2.0.0", path = "../../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
sc-transaction-graph = { version = "2.0.0", path = "./graph" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
sc-client-api = { version = "2.0.0", path = "../api" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
[dev-dependencies]
sp-keyring = { path = "../../primitives/keyring" }
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
@@ -10,14 +10,14 @@ futures = "0.3.1"
log = "0.4.8"
parking_lot = "0.9.0"
serde = { version = "1.0.101", features = ["derive"] }
sp-core = { path = "../../../primitives/core" }
sp-runtime = { path = "../../../primitives/runtime" }
sp-transaction-pool = { path = "../../../primitives/transaction-pool" }
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" }
[dev-dependencies]
assert_matches = "1.3.0"
codec = { package = "parity-scale-codec", version = "1.0.0" }
substrate-test-runtime = { path = "../../../test-utils/runtime" }
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" }
criterion = "0.3"
[[bench]]