mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 10:21:05 +00:00
Upgrading parity-scale-codec to v3 (#10825)
* Upgraded dependencies * Adapting code to scale v3 * Empty commit to trigger CI * Triggering CI * Fixing UI test * Remove superfluous dev-dep added by #9228 * Cryout for CI
This commit is contained in:
@@ -14,7 +14,7 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = [
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
|
||||
"derive",
|
||||
] }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
||||
@@ -25,7 +25,7 @@ futures = "0.3.1"
|
||||
hash-db = { version = "0.15.2", default-features = false }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
log = "0.4.8"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
sp-database = { version = "4.0.0-dev", path = "../../primitives/database" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-keystore = { version = "0.11.0", default-features = false, path = "../../primitives/keystore" }
|
||||
|
||||
@@ -18,7 +18,7 @@ prost-build = "0.9"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1"
|
||||
codec = { package = "parity-scale-codec", default-features = false, version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", default-features = false, version = "3.0.0" }
|
||||
thiserror = "1.0"
|
||||
futures = "0.3.9"
|
||||
futures-timer = "3.0.1"
|
||||
|
||||
@@ -13,7 +13,7 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
futures = "0.3.9"
|
||||
futures-timer = "3.0.1"
|
||||
log = "0.4.8"
|
||||
@@ -33,4 +33,4 @@ sc-proposer-metrics = { version = "0.10.0-dev", path = "../proposer-metrics" }
|
||||
[dev-dependencies]
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
|
||||
@@ -11,11 +11,11 @@ description = "BEEFY Client gadget for substrate"
|
||||
fnv = "1.0.6"
|
||||
futures = "0.3"
|
||||
log = "0.4"
|
||||
parking_lot = "0.11"
|
||||
parking_lot = "0.12.0"
|
||||
thiserror = "1.0"
|
||||
wasm-timer = "0.2.5"
|
||||
|
||||
codec = { version = "2.2.0", package = "parity-scale-codec", features = ["derive"] }
|
||||
codec = { version = "3.0.0", package = "parity-scale-codec", features = ["derive"] }
|
||||
prometheus = { version = "0.10.0-dev", package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
|
||||
@@ -10,7 +10,7 @@ description = "RPC for the BEEFY Client gadget for substrate"
|
||||
[dependencies]
|
||||
futures = "0.3.16"
|
||||
log = "0.4"
|
||||
parking_lot = "0.11"
|
||||
parking_lot = "0.12.0"
|
||||
thiserror = "1.0"
|
||||
serde = { version = "1.0.136", features = ["derive"] }
|
||||
|
||||
@@ -19,7 +19,7 @@ jsonrpc-core-client = "18.0.0"
|
||||
jsonrpc-derive = "18.0.0"
|
||||
jsonrpc-pubsub = "18.0.0"
|
||||
|
||||
codec = { version = "2.2.0", package = "parity-scale-codec", features = ["derive"] }
|
||||
codec = { version = "3.0.0", package = "parity-scale-codec", features = ["derive"] }
|
||||
|
||||
sc-rpc = { version = "4.0.0-dev", path = "../../rpc" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
||||
|
||||
@@ -22,7 +22,7 @@ sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../primitives/block-builder" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = [
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = [
|
||||
"derive",
|
||||
] }
|
||||
|
||||
|
||||
@@ -21,5 +21,5 @@ serde = { version = "1.0.136", features = ["derive"] }
|
||||
serde_json = "1.0.74"
|
||||
sp-runtime = { version = "5.0.0", path = "../../primitives/runtime" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
memmap2 = "0.5.0"
|
||||
|
||||
@@ -30,7 +30,7 @@ thiserror = "1.0.30"
|
||||
tiny-bip39 = "0.8.2"
|
||||
tokio = { version = "1.15", features = ["signal", "rt-multi-thread", "parking_lot"] }
|
||||
|
||||
parity-scale-codec = "2.3.1"
|
||||
parity-scale-codec = "3.0.0"
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-keystore = { version = "4.0.0-dev", path = "../keystore" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network" }
|
||||
|
||||
@@ -18,7 +18,7 @@ sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consen
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" }
|
||||
@@ -48,4 +48,4 @@ sc-network = { version = "0.10.0-dev", path = "../../network" }
|
||||
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
tempfile = "3.1.0"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
|
||||
@@ -14,7 +14,7 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = [
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = [
|
||||
"derive",
|
||||
] }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
|
||||
@@ -44,7 +44,7 @@ sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.10.0-dev" }
|
||||
futures = "0.3.9"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
log = "0.4.8"
|
||||
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated"] }
|
||||
rand = "0.7.2"
|
||||
|
||||
@@ -26,7 +26,7 @@ sp-state-machine = { version = "0.11.0", path = "../../../primitives/state-machi
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.10.0-dev" }
|
||||
async-trait = "0.1.42"
|
||||
|
||||
@@ -13,7 +13,7 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
||||
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
|
||||
@@ -19,7 +19,7 @@ jsonrpc-core = "18.0.0"
|
||||
jsonrpc-core-client = "18.0.0"
|
||||
jsonrpc-derive = "18.0.0"
|
||||
log = "0.4.8"
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
assert_matches = "1.3.0"
|
||||
async-trait = "0.1.50"
|
||||
|
||||
@@ -13,7 +13,7 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
@@ -27,7 +27,7 @@ sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/commo
|
||||
log = "0.4.8"
|
||||
futures = "0.3.16"
|
||||
futures-timer = "3.0.1"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
thiserror = "1.0"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.10.0-dev"}
|
||||
async-trait = "0.1.50"
|
||||
|
||||
@@ -14,7 +14,7 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sp-arithmetic = { version = "4.0.0", path = "../../../primitives/arithmetic" }
|
||||
|
||||
@@ -13,14 +13,14 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
log = "0.4.8"
|
||||
kvdb = "0.10.0"
|
||||
kvdb-rocksdb = { version = "0.14.0", optional = true }
|
||||
kvdb-memorydb = "0.10.0"
|
||||
kvdb = "0.11.0"
|
||||
kvdb-rocksdb = { version = "0.15.1", optional = true }
|
||||
kvdb-memorydb = "0.11.0"
|
||||
linked-hash-map = "0.5.4"
|
||||
hash-db = "0.15.2"
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = [
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = [
|
||||
"derive",
|
||||
] }
|
||||
|
||||
@@ -39,7 +39,7 @@ parity-db = { version = "0.3.5", optional = true }
|
||||
sp-tracing = { version = "4.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.14.0"
|
||||
kvdb-rocksdb = "0.15.1"
|
||||
tempfile = "3"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -14,7 +14,7 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-tasks = { version = "4.0.0-dev", path = "../../primitives/tasks" }
|
||||
@@ -30,7 +30,7 @@ sp-externalities = { version = "0.11.0", path = "../../primitives/externalities"
|
||||
sc-executor-common = { version = "0.10.0-dev", path = "common" }
|
||||
sc-executor-wasmi = { version = "0.10.0-dev", path = "wasmi" }
|
||||
sc-executor-wasmtime = { version = "0.10.0-dev", path = "wasmtime", optional = true }
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
libsecp256k1 = "0.7"
|
||||
sp-core-hashing-proc-macro = { version = "4.0.0-dev", path = "../../primitives/core/hashing/proc-macro" }
|
||||
lru = "0.6.6"
|
||||
|
||||
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
wasm-instrument = "0.1"
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
wasmi = "0.9.1"
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sc-allocator = { version = "4.1.0-dev", path = "../../allocator" }
|
||||
|
||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
log = "0.4.8"
|
||||
wasmi = "0.9.1"
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
sc-executor-common = { version = "0.10.0-dev", path = "../common" }
|
||||
sc-allocator = { version = "4.1.0-dev", path = "../../allocator" }
|
||||
sp-wasm-interface = { version = "5.0.0", path = "../../../primitives/wasm-interface" }
|
||||
|
||||
@@ -17,7 +17,7 @@ libc = "0.2.112"
|
||||
cfg-if = "1.0"
|
||||
log = "0.4.8"
|
||||
parity-wasm = "0.42.0"
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
sc-executor-common = { version = "0.10.0-dev", path = "../common" }
|
||||
sp-wasm-interface = { version = "5.0.0", path = "../../../primitives/wasm-interface", features = ["wasmtime"] }
|
||||
sp-runtime-interface = { version = "5.0.0", path = "../../../primitives/runtime-interface" }
|
||||
|
||||
@@ -20,10 +20,10 @@ 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.2"
|
||||
parking_lot = "0.12.0"
|
||||
rand = "0.8.4"
|
||||
ahash = "0.7.6"
|
||||
parity-scale-codec = { version = "2.3.1", features = ["derive"] }
|
||||
parity-scale-codec = { version = "3.0.0", features = ["derive"] }
|
||||
sp-application-crypto = { version = "5.0.0", path = "../../primitives/application-crypto" }
|
||||
sp-arithmetic = { version = "4.0.0", path = "../../primitives/arithmetic" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../primitives/runtime" }
|
||||
@@ -44,12 +44,12 @@ sc-network-gossip = { version = "0.10.0-dev", path = "../network-gossip" }
|
||||
sp-finality-grandpa = { version = "4.0.0-dev", path = "../../primitives/finality-grandpa" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.10.0-dev" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
finality-grandpa = { version = "0.14.4", features = ["derive-codec"] }
|
||||
finality-grandpa = { version = "0.15.0", features = ["derive-codec"] }
|
||||
async-trait = "0.1.50"
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.3.0"
|
||||
finality-grandpa = { version = "0.14.1", features = [
|
||||
finality-grandpa = { version = "0.15.0", features = [
|
||||
"derive-codec",
|
||||
"test-helpers",
|
||||
] }
|
||||
|
||||
@@ -14,7 +14,7 @@ sc-rpc = { version = "4.0.0-dev", path = "../../rpc" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
finality-grandpa = { version = "0.14.4", features = ["derive-codec"] }
|
||||
finality-grandpa = { version = "0.15.0", features = ["derive-codec"] }
|
||||
jsonrpc-core = "18.0.0"
|
||||
jsonrpc-core-client = "18.0.0"
|
||||
jsonrpc-derive = "18.0.0"
|
||||
@@ -24,7 +24,7 @@ serde = { version = "1.0.105", features = ["derive"] }
|
||||
serde_json = "1.0.50"
|
||||
log = "0.4.8"
|
||||
thiserror = "1.0"
|
||||
parity-scale-codec = { version = "2.0.0", features = ["derive"] }
|
||||
parity-scale-codec = { version = "3.0.0", features = ["derive"] }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@@ -17,7 +17,7 @@ ansi_term = "0.12.1"
|
||||
futures = "0.3.9"
|
||||
futures-timer = "3.0.1"
|
||||
log = "0.4.8"
|
||||
parity-util-mem = { version = "0.10.2", default-features = false, features = ["primitive-types"] }
|
||||
parity-util-mem = { version = "0.11.0", default-features = false, features = ["primitive-types"] }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
|
||||
@@ -21,7 +21,7 @@ sp-application-crypto = { version = "5.0.0", path = "../../primitives/applicatio
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-keystore = { version = "0.11.0", path = "../../primitives/keystore" }
|
||||
hex = "0.4.0"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
serde_json = "1.0.74"
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@@ -21,7 +21,7 @@ async-trait = "0.1"
|
||||
bitflags = "1.3.2"
|
||||
cid = "0.6.0"
|
||||
bytes = "1"
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = [
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = [
|
||||
"derive",
|
||||
] }
|
||||
either = "1.5.3"
|
||||
@@ -36,7 +36,7 @@ linked-hash-map = "0.5.4"
|
||||
linked_hash_set = "0.1.3"
|
||||
lru = "0.7.0"
|
||||
log = "0.4.8"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
pin-project = "1.0.10"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
prost = "0.9"
|
||||
|
||||
@@ -1666,7 +1666,7 @@ impl<B: BlockT> NetworkBehaviour for Protocol<B> {
|
||||
}
|
||||
} else {
|
||||
match (
|
||||
message::Roles::decode_all(&received_handshake[..]),
|
||||
message::Roles::decode_all(&mut &received_handshake[..]),
|
||||
self.peers.get(&peer_id),
|
||||
) {
|
||||
(Ok(roles), _) => CustomMessageOutcome::NotificationStreamOpened {
|
||||
|
||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
async-std = "1.10.0"
|
||||
sc-network = { version = "0.10.0-dev", path = "../" }
|
||||
log = "0.4.8"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
futures = "0.3.9"
|
||||
futures-timer = "3.0.1"
|
||||
rand = "0.7.2"
|
||||
|
||||
@@ -14,13 +14,13 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
bytes = "1.1"
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
||||
hex = "0.4"
|
||||
fnv = "1.0.6"
|
||||
futures = "0.3.16"
|
||||
futures-timer = "3.0.2"
|
||||
num_cpus = "1.13"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
rand = "0.7.2"
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network" }
|
||||
|
||||
@@ -13,14 +13,14 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
futures = "0.3.16"
|
||||
jsonrpc-core = "18.0.0"
|
||||
jsonrpc-core-client = "18.0.0"
|
||||
jsonrpc-derive = "18.0.0"
|
||||
jsonrpc-pubsub = "18.0.0"
|
||||
log = "0.4.8"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
thiserror = "1.0"
|
||||
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
|
||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
sc-rpc-api = { version = "0.10.0-dev", path = "../rpc-api" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
futures = "0.3.16"
|
||||
jsonrpc-pubsub = "18.0.0"
|
||||
log = "0.4.8"
|
||||
@@ -35,7 +35,7 @@ sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
|
||||
hash-db = { version = "0.15.2", default-features = false }
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
lazy_static = { version = "1.4.0", optional = true }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../transaction-pool/api" }
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ futures = "0.3.16"
|
||||
jsonrpc-pubsub = "18.0"
|
||||
jsonrpc-core = "18.0"
|
||||
rand = "0.7.3"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
log = "0.4.11"
|
||||
futures-timer = "3.0.1"
|
||||
exit-future = "0.2.0"
|
||||
@@ -56,7 +56,7 @@ sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" }
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../executor" }
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" }
|
||||
sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" }
|
||||
@@ -74,7 +74,7 @@ sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
|
||||
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing" }
|
||||
tracing = "0.1.29"
|
||||
tracing-futures = { version = "0.2.4" }
|
||||
parity-util-mem = { version = "0.10.2", default-features = false, features = [
|
||||
parity-util-mem = { version = "0.11.0", default-features = false, features = [
|
||||
"primitive-types",
|
||||
] }
|
||||
async-trait = "0.1.50"
|
||||
|
||||
@@ -18,7 +18,7 @@ tempfile = "3.1.0"
|
||||
tokio = { version = "1.15.0", features = ["time"] }
|
||||
log = "0.4.8"
|
||||
fdlimit = "0.2.1"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-state-machine = { version = "0.11.0", path = "../../../primitives/state-machine" }
|
||||
@@ -40,5 +40,5 @@ sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../../executor" }
|
||||
sp-panic-handler = { version = "4.0.0", path = "../../../primitives/panic-handler" }
|
||||
parity-scale-codec = "2.3.1"
|
||||
parity-scale-codec = "3.0.0"
|
||||
sp-tracing = { version = "4.0.0", path = "../../../primitives/tracing" }
|
||||
|
||||
@@ -13,10 +13,10 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
log = "0.4.11"
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||
parity-util-mem = { version = "0.10.2", default-features = false, features = ["primitive-types"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
||||
parity-util-mem = { version = "0.11.0", default-features = false, features = ["primitive-types"] }
|
||||
parity-util-mem-derive = "0.1.0"
|
||||
|
||||
@@ -26,4 +26,4 @@ serde_json = "1.0.74"
|
||||
serde = { version = "1.0.136", features = ["derive"] }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../primitives/runtime" }
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
|
||||
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
futures = "0.3.9"
|
||||
wasm-timer = "0.2.5"
|
||||
libp2p = { version = "0.40.0", default-features = false, features = ["dns-async-std", "tcp-async-io", "wasm-ext", "websocket"] }
|
||||
|
||||
@@ -20,7 +20,7 @@ lazy_static = "1.4.0"
|
||||
libc = "0.2.112"
|
||||
log = { version = "0.4.8" }
|
||||
once_cell = "1.8.0"
|
||||
parking_lot = "0.11.2"
|
||||
parking_lot = "0.12.0"
|
||||
regex = "1.5.4"
|
||||
rustc-hash = "1.1.0"
|
||||
serde = "1.0.136"
|
||||
|
||||
@@ -13,13 +13,13 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
thiserror = "1.0.30"
|
||||
futures = "0.3.16"
|
||||
futures-timer = "3.0.2"
|
||||
log = "0.4.8"
|
||||
parity-util-mem = { version = "0.10.2", default-features = false, features = ["primitive-types"] }
|
||||
parking_lot = "0.11.2"
|
||||
parity-util-mem = { version = "0.11.0", default-features = false, features = ["primitive-types"] }
|
||||
parking_lot = "0.12.0"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.10.0-dev"}
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
@@ -41,7 +41,6 @@ sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/comm
|
||||
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.10.0-dev", path = "../block-builder" }
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
||||
criterion = "0.3"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ readme = "README.md"
|
||||
[dependencies]
|
||||
futures = "0.3.9"
|
||||
lazy_static = "1.4.0"
|
||||
parking_lot = "0.11"
|
||||
parking_lot = "0.12.0"
|
||||
prometheus = { version = "0.13.0", default-features = false }
|
||||
futures-timer = "3.0.2"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user