From 5e0b6f2f29c6f94ea70b433f9cbd7cad77a15f6c Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Mon, 16 Mar 2020 10:36:04 +0200 Subject: [PATCH] Update parity-common dependencies (#5254) --- substrate/Cargo.lock | 8 ++++---- substrate/client/cli/Cargo.toml | 2 +- substrate/client/db/Cargo.toml | 6 +++--- substrate/client/informant/Cargo.toml | 2 +- substrate/client/service/Cargo.toml | 2 +- substrate/client/state-db/Cargo.toml | 2 +- substrate/client/transaction-pool/Cargo.toml | 2 +- substrate/client/transaction-pool/graph/Cargo.toml | 2 +- substrate/primitives/core/Cargo.toml | 2 +- substrate/primitives/runtime/Cargo.toml | 2 +- substrate/primitives/test-primitives/Cargo.toml | 2 +- substrate/test-utils/runtime/Cargo.toml | 2 +- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/substrate/Cargo.lock b/substrate/Cargo.lock index 1b73e54785..ac67db2e52 100644 --- a/substrate/Cargo.lock +++ b/substrate/Cargo.lock @@ -2551,9 +2551,9 @@ dependencies = [ [[package]] name = "kvdb-rocksdb" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af36fd66ccd99f3f771ae39b75aaba28b952372b6debfb971134bf1f03466ab2" +checksum = "1fecd50b14a534125228d7039951f92aaff742aff151c04546347aba4d3b4fbc" dependencies = [ "fs-swap", "interleaved-ordered", @@ -4656,9 +4656,9 @@ checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" [[package]] name = "parity-util-mem" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef1476e40bf8f5c6776e9600983435821ca86eb9819d74a6207cca69d091406a" +checksum = "9344bc978467339b9ae688f9dcf279d1aaa0ccfc88e9a780c729b765a82d57d5" dependencies = [ "cfg-if", "ethereum-types", diff --git a/substrate/client/cli/Cargo.toml b/substrate/client/cli/Cargo.toml index 588aa134ab..908cc4c10e 100644 --- a/substrate/client/cli/Cargo.toml +++ b/substrate/client/cli/Cargo.toml @@ -39,7 +39,7 @@ names = "0.11.0" structopt = "0.3.8" sc-tracing = { version = "2.0.0-alpha.2", path = "../tracing" } chrono = "0.4.10" -parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] } [target.'cfg(not(target_os = "unknown"))'.dependencies] rpassword = "4.0.1" diff --git a/substrate/client/db/Cargo.toml b/substrate/client/db/Cargo.toml index 8eaae24e52..d30b6f95e4 100644 --- a/substrate/client/db/Cargo.toml +++ b/substrate/client/db/Cargo.toml @@ -13,11 +13,11 @@ parking_lot = "0.10.0" log = "0.4.8" rand = "0.7" kvdb = "0.4.0" -kvdb-rocksdb = { version = "0.5", optional = true } +kvdb-rocksdb = { version = "0.6", optional = true } kvdb-memorydb = "0.4.0" linked-hash-map = "0.5.2" hash-db = "0.15.2" -parity-util-mem = { version = "0.5.1", default-features = false, features = ["std"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["std"] } codec = { package = "parity-scale-codec", version = "1.2.0", features = ["derive"] } sc-client-api = { version = "2.0.0-alpha.2", path = "../api" } @@ -37,7 +37,7 @@ sp-keyring = { version = "2.0.0-alpha.2", path = "../../primitives/keyring" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" } env_logger = "0.7.0" quickcheck = "0.9" -kvdb-rocksdb = "0.5" +kvdb-rocksdb = "0.6" tempfile = "3" [features] diff --git a/substrate/client/informant/Cargo.toml b/substrate/client/informant/Cargo.toml index a29d793c36..d37bfb1cc2 100644 --- a/substrate/client/informant/Cargo.toml +++ b/substrate/client/informant/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/substrate/" ansi_term = "0.12.1" futures = "0.3.1" log = "0.4.8" -parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] } wasm-timer = "0.2" sc-client-api = { version = "2.0.0-alpha.2", path = "../api" } sc-network = { version = "0.8.0-alpha.2", path = "../network" } diff --git a/substrate/client/service/Cargo.toml b/substrate/client/service/Cargo.toml index 89cc4dabc5..ba376ed329 100644 --- a/substrate/client/service/Cargo.toml +++ b/substrate/client/service/Cargo.toml @@ -59,7 +59,7 @@ parity-multiaddr = { package = "parity-multiaddr", version = "0.7.3" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" , version = "0.8.0-alpha.2"} sc-tracing = { version = "2.0.0-alpha.2", path = "../tracing" } tracing = "0.1.10" -parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] } [dev-dependencies] substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" } diff --git a/substrate/client/state-db/Cargo.toml b/substrate/client/state-db/Cargo.toml index 7c7823b534..da62696a15 100644 --- a/substrate/client/state-db/Cargo.toml +++ b/substrate/client/state-db/Cargo.toml @@ -14,7 +14,7 @@ log = "0.4.8" sc-client-api = { version = "2.0.0-alpha.2", path = "../api" } sp-core = { version = "2.0.0-alpha.2", path = "../../primitives/core" } codec = { package = "parity-scale-codec", version = "1.2.0", features = ["derive"] } -parity-util-mem = "0.5.1" +parity-util-mem = "0.5.2" parity-util-mem-derive = "0.1.0" [dev-dependencies] diff --git a/substrate/client/transaction-pool/Cargo.toml b/substrate/client/transaction-pool/Cargo.toml index 3d80e06c95..233397262a 100644 --- a/substrate/client/transaction-pool/Cargo.toml +++ b/substrate/client/transaction-pool/Cargo.toml @@ -24,7 +24,7 @@ sp-transaction-pool = { version = "2.0.0-alpha.2", path = "../../primitives/tran sc-client-api = { version = "2.0.0-alpha.2", path = "../api" } sp-blockchain = { version = "2.0.0-alpha.2", path = "../../primitives/blockchain" } futures-timer = "2.0" -parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] } [dev-dependencies] sp-keyring = { version = "2.0.0-alpha.2", path = "../../primitives/keyring" } diff --git a/substrate/client/transaction-pool/graph/Cargo.toml b/substrate/client/transaction-pool/graph/Cargo.toml index 10846acfea..080061dd25 100644 --- a/substrate/client/transaction-pool/graph/Cargo.toml +++ b/substrate/client/transaction-pool/graph/Cargo.toml @@ -19,7 +19,7 @@ sp-blockchain = { version = "2.0.0-alpha.2", path = "../../../primitives/blockch sp-core = { version = "2.0.0-alpha.2", path = "../../../primitives/core" } sp-runtime = { version = "2.0.0-alpha.2", path = "../../../primitives/runtime" } sp-transaction-pool = { version = "2.0.0-alpha.2", path = "../../../primitives/transaction-pool" } -parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] } linked-hash-map = "0.5.2" [dev-dependencies] diff --git a/substrate/primitives/core/Cargo.toml b/substrate/primitives/core/Cargo.toml index ddffb92ec5..4112aff01f 100644 --- a/substrate/primitives/core/Cargo.toml +++ b/substrate/primitives/core/Cargo.toml @@ -33,7 +33,7 @@ parking_lot = { version = "0.10.0", optional = true } sp-debug-derive = { version = "2.0.0-alpha.2", path = "../debug-derive" } sp-externalities = { version = "0.8.0-alpha.2", optional = true, path = "../externalities" } sp-storage = { version = "2.0.0-alpha.2", default-features = false, path = "../storage" } -parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] } # full crypto ed25519-dalek = { version = "1.0.0-pre.3", default-features = false, features = ["u64_backend", "alloc"], optional = true } diff --git a/substrate/primitives/runtime/Cargo.toml b/substrate/primitives/runtime/Cargo.toml index 84e452a5b4..fd40b9406a 100644 --- a/substrate/primitives/runtime/Cargo.toml +++ b/substrate/primitives/runtime/Cargo.toml @@ -23,7 +23,7 @@ paste = "0.1.6" rand = { version = "0.7.2", optional = true } impl-trait-for-tuples = "0.1.3" sp-inherents = { version = "2.0.0-alpha.2", default-features = false, path = "../inherents" } -parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] } hash256-std-hasher = { version = "0.15.2", default-features = false } [dev-dependencies] diff --git a/substrate/primitives/test-primitives/Cargo.toml b/substrate/primitives/test-primitives/Cargo.toml index 1879ca26b7..8788876769 100644 --- a/substrate/primitives/test-primitives/Cargo.toml +++ b/substrate/primitives/test-primitives/Cargo.toml @@ -14,7 +14,7 @@ codec = { package = "parity-scale-codec", version = "1.2.0", default-features = sp-core = { version = "2.0.0-alpha.2", default-features = false, path = "../core" } serde = { version = "1.0.101", optional = true, features = ["derive"] } sp-runtime = { version = "2.0.0-alpha.2", default-features = false, path = "../runtime" } -parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] } [features] default = [ diff --git a/substrate/test-utils/runtime/Cargo.toml b/substrate/test-utils/runtime/Cargo.toml index b5ae15029a..629656f10f 100644 --- a/substrate/test-utils/runtime/Cargo.toml +++ b/substrate/test-utils/runtime/Cargo.toml @@ -40,7 +40,7 @@ sc-client = { version = "0.8.0-alpha.2", optional = true, path = "../../client" sp-trie = { version = "2.0.0-alpha.2", default-features = false, path = "../../primitives/trie" } sp-transaction-pool = { version = "2.0.0-alpha.2", default-features = false, path = "../../primitives/transaction-pool" } trie-db = { version = "0.20.0", default-features = false } -parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } +parity-util-mem = { version = "0.5.2", default-features = false, features = ["primitive-types"] } [dev-dependencies] sc-block-builder = { version = "0.8.0-alpha.2", path = "../../client/block-builder" }