Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Bump dependencies, respecting semver
Browse files Browse the repository at this point in the history
  • Loading branch information
Demi-Marie committed Nov 6, 2019
1 parent a0d368b commit c031389
Show file tree
Hide file tree
Showing 109 changed files with 749 additions and 735 deletions.
979 changes: 491 additions & 488 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions core/application-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ description = "Provides facilities for generating application specific crypto wr

[dependencies]
primitives = { package = "substrate-primitives", path = "../primitives", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
serde = { version = "1.0.102", optional = true, features = ["derive"] }
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
runtime-io = { package = "sr-io", path = "../sr-io", default-features = false }

Expand All @@ -25,4 +25,4 @@ std = [ "full_crypto", "primitives/std", "codec/std", "serde", "rstd/std", "runt
# For the regular wasm runtime builds this should not be used.
full_crypto = [
"primitives/full_crypto"
]
]
4 changes: 2 additions & 2 deletions core/authority-discovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ prost-build = "0.5.0"
authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", path = "./primitives" }
bytes = "0.4.12"
client = { package = "substrate-client", path = "../../core/client" }
codec = { package = "parity-scale-codec", default-features = false, version = "1.0.3" }
codec = { package = "parity-scale-codec", default-features = false, version = "1.0.6" }
derive_more = "0.15.0"
futures-preview = "0.3.0-alpha.19"
libp2p = { version = "0.13.0", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
Expand All @@ -22,7 +22,7 @@ primitives = { package = "substrate-primitives", path = "../primitives" }
prost = "0.5.0"
serde_json = "1.0.41"
sr-primitives = { path = "../../core/sr-primitives" }
futures-timer = "0.4"
futures-timer = "0.4.0"

[dev-dependencies]
parking_lot = "0.9.0"
Expand Down
2 changes: 1 addition & 1 deletion core/authority-discovery/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Authority discovery primitives"
edition = "2018"

[dependencies]
codec = { package = "parity-scale-codec", default-features = false, version = "1.0.3" }
codec = { package = "parity-scale-codec", default-features = false, version = "1.0.6" }
client = { package = "substrate-client", path = "../../client", default-features = false }
sr-primitives = { path = "../../sr-primitives", default-features = false }
rstd = { package = "sr-std", path = "../../sr-std", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion core/basic-authorship/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
log = "0.4.8"
futures-preview = "0.3.0-alpha.19"
codec = { package = "parity-scale-codec", version = "1.0.0" }
codec = { package = "parity-scale-codec", version = "1.0.6" }
sr-primitives = { path = "../../core/sr-primitives" }
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
client = { package = "substrate-client", path = "../../core/client" }
Expand Down
2 changes: 1 addition & 1 deletion core/chain-spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ substrate-chain-spec-derive = { path = "./derive" }
impl-trait-for-tuples = "0.1.3"
network = { package = "substrate-network", path = "../../core/network" }
primitives = { package = "substrate-primitives", path = "../primitives" }
serde = { version = "1.0.101", features = ["derive"] }
serde = { version = "1.0.102", features = ["derive"] }
serde_json = "1.0.41"
sr-primitives = { path = "../../core/sr-primitives" }
tel = { package = "substrate-telemetry", path = "../../core/telemetry" }
Expand Down
4 changes: 2 additions & 2 deletions core/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
clap = "2.33.0"
derive_more = "0.15.0"
env_logger = "0.7.0"
env_logger = "0.7.1"
log = "0.4.8"
atty = "0.2.13"
regex = "1.3.1"
Expand All @@ -18,7 +18,7 @@ lazy_static = "1.4.0"
app_dirs = "1.2.1"
tokio = "0.1.22"
futures = "0.1.29"
futures03 = { package = "futures-preview", version = "=0.3.0-alpha.19", features = ["compat"] }
futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] }
fdlimit = "0.1.1"
exit-future = "0.1.4"
serde_json = "1.0.41"
Expand Down
4 changes: 2 additions & 2 deletions core/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ trie = { package = "substrate-trie", path = "../trie", optional = true }
substrate-telemetry = { path = "../telemetry", optional = true }
hash-db = { version = "0.15.2", default-features = false }
kvdb = { git = "https://github.com/paritytech/parity-common", optional = true, rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
primitives = { package = "substrate-primitives", path = "../primitives", default-features = false }
sr-primitives = { path = "../sr-primitives", default-features = false }
runtime-version = { package = "sr-version", path = "../sr-version", default-features = false }
Expand All @@ -30,7 +30,7 @@ sr-api-macros = { path = "../sr-api-macros" }
header-metadata = { package = "substrate-header-metadata", path = "header-metadata", optional = true }

[dev-dependencies]
env_logger = "0.7.0"
env_logger = "0.7.1"
tempfile = "3.1.0"
client-db = { package = "substrate-client-db", path = "./db", features = ["kvdb-rocksdb"] }
test-client = { package = "substrate-test-runtime-client", path = "../test-runtime/client" }
Expand Down
4 changes: 2 additions & 2 deletions core/client/db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ primitives = { package = "substrate-primitives", path = "../../primitives" }
sr-primitives = { path = "../../sr-primitives" }
client = { package = "substrate-client", path = "../../client" }
state-machine = { package = "substrate-state-machine", path = "../../state-machine" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
executor = { package = "substrate-executor", path = "../../executor" }
state_db = { package = "substrate-state-db", path = "../../state-db" }
trie = { package = "substrate-trie", path = "../../trie" }
Expand All @@ -27,7 +27,7 @@ header_metadata = { package = "substrate-header-metadata", path = "../header-met
[dev-dependencies]
substrate-keyring = { path = "../../keyring" }
test-client = { package = "substrate-test-runtime-client", path = "../../test-runtime/client" }
env_logger = "0.7.0"
env_logger = "0.7.1"

[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions core/client/header-metadata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
lru-cache = { version = "0.1.2" }
parking_lot = { version = "0.9.0" }
lru-cache = "0.1.2"
parking_lot = "0.9.0"
sr-primitives = { path = "../../sr-primitives" }
6 changes: 3 additions & 3 deletions core/consensus/aura/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Aura consensus algorithm for substrate"
edition = "2018"

[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" }
codec = { package = "parity-scale-codec", version = "1.0.6" }
primitives = { package = "substrate-primitives", path = "../../primitives" }
app-crypto = { package = "substrate-application-crypto", path = "../../application-crypto" }
runtime_support = { package = "srml-support", path = "../../../srml/support" }
Expand All @@ -22,7 +22,7 @@ keystore = { package = "substrate-keystore", path = "../../keystore" }
consensus_common = { package = "substrate-consensus-common", path = "../common" }
sr-primitives = { path = "../../sr-primitives" }
futures-preview = { version = "0.3.0-alpha.19", features = ["compat"] }
futures01 = { package = "futures", version = "0.1" }
futures01 = { package = "futures", version = "0.1.29" }
futures-timer = "0.4.0"
parking_lot = "0.9.0"
log = "0.4.8"
Expand All @@ -35,5 +35,5 @@ network = { package = "substrate-network", path = "../../network", features = ["
service = { package = "substrate-service", path = "../../service" }
test-client = { package = "substrate-test-runtime-client", path = "../../test-runtime/client" }
tokio = "0.1.22"
env_logger = "0.7.0"
env_logger = "0.7.1"
tempfile = "3.1.0"
2 changes: 1 addition & 1 deletion core/consensus/aura/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Primitives for Aura consensus"
edition = "2018"

[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false }
substrate-client = { path = "../../../client", default-features = false }
app-crypto = { package = "substrate-application-crypto", path = "../../../application-crypto", default-features = false }
rstd = { package = "sr-std", path = "../../../sr-std", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions core/consensus/babe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "BABE consensus algorithm for substrate"
edition = "2018"

[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
babe_primitives = { package = "substrate-consensus-babe-primitives", path = "primitives" }
primitives = { package = "substrate-primitives", path = "../../primitives" }
app-crypto = { package = "substrate-application-crypto", path = "../../application-crypto" }
Expand All @@ -28,7 +28,7 @@ slots = { package = "substrate-consensus-slots", path = "../slots" }
sr-primitives = { path = "../../sr-primitives" }
fork-tree = { path = "../../utils/fork-tree" }
futures-preview = { version = "0.3.0-alpha.19", features = ["compat"] }
futures01 = { package = "futures", version = "0.1" }
futures01 = { package = "futures", version = "0.1.29" }
futures-timer = "0.4.0"
parking_lot = "0.9.0"
log = "0.4.8"
Expand All @@ -45,7 +45,7 @@ network = { package = "substrate-network", path = "../../network", features = ["
service = { package = "substrate-service", path = "../../service" }
test-client = { package = "substrate-test-runtime-client", path = "../../test-runtime/client" }
tokio = "0.1.22"
env_logger = "0.7.0"
env_logger = "0.7.1"
tempfile = "3.1.0"

[features]
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/babe/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sr-primitives = { path = "../../../sr-primitives", default-features = false }
app-crypto = { package = "substrate-application-crypto", path = "../../../application-crypto", default-features = false }
slots = { package = "substrate-consensus-slots", path = "../../slots", optional = true }
schnorrkel = { version = "0.8.5", features = ["preaudit_deprecated"], optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false }

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ futures-timer = "0.4.0"
rstd = { package = "sr-std", path = "../../sr-std" }
runtime_version = { package = "sr-version", path = "../../sr-version" }
sr-primitives = { path = "../../sr-primitives" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
parking_lot = "0.9.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/pow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "PoW consensus algorithm for substrate"
edition = "2018"

[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
primitives = { package = "substrate-primitives", path = "../../primitives" }
sr-primitives = { path = "../../sr-primitives" }
client = { package = "substrate-client", path = "../../client" }
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/pow/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ substrate-client = { path = "../../../client", default-features = false }
rstd = { package = "sr-std", path = "../../../sr-std", default-features = false }
sr-primitives = { path = "../../../sr-primitives", default-features = false }
primitives = { package = "substrate-primitives", path = "../../../primitives", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/rhd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
derive_more = "0.15.0"
futures = "0.1.29"
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
primitives = { package = "substrate-primitives", path = "../../primitives" }
consensus = { package = "substrate-consensus-common", path = "../common" }
client = { package = "substrate-client", path = "../../client" }
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/slots/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
build = "build.rs"

[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" }
codec = { package = "parity-scale-codec", version = "1.0.6" }
client = { package = "substrate-client", path = "../../client" }
primitives = { package = "substrate-primitives", path = "../../primitives" }
sr-primitives = { path = "../../sr-primitives" }
Expand Down
4 changes: 2 additions & 2 deletions core/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"

[dependencies]
derive_more = "0.15.0"
codec = { package = "parity-scale-codec", version = "1.0.0" }
codec = { package = "parity-scale-codec", version = "1.0.6" }
runtime_io = { package = "sr-io", path = "../sr-io" }
primitives = { package = "substrate-primitives", path = "../primitives" }
trie = { package = "substrate-trie", path = "../trie" }
Expand All @@ -20,7 +20,7 @@ wasm-interface = { package = "substrate-wasm-interface", path = "../wasm-interfa
externalities = { package = "substrate-externalities", path = "../externalities" }
parking_lot = "0.9.0"
log = "0.4.8"
libsecp256k1 = "0.3.0"
libsecp256k1 = "0.3.2"
tiny-keccak = "1.5.0"

cranelift-codegen = { version = "0.46.1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions core/externalities/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
primitive-types = { version = "0.6", features = ["codec"] }
primitive-types = { version = "0.6.1", features = ["codec"] }
primitives-storage = { package = "substrate-primitives-storage", path = "../primitives/storage" }
rstd = { package = "sr-std", path = "../sr-std" }
environmental = { version = "1.0.2" }
environmental = "1.0.2"
8 changes: 4 additions & 4 deletions core/finality-grandpa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ parking_lot = "0.9.0"
tokio-executor = "0.1.8"
tokio-timer = "0.2.11"
rand = "0.7.2"
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
sr-primitives = { path = "../sr-primitives" }
consensus_common = { package = "substrate-consensus-common", path = "../consensus/common" }
primitives = { package = "substrate-primitives", path = "../primitives" }
Expand All @@ -26,15 +26,15 @@ inherents = { package = "substrate-inherents", path = "../../core/inherents" }
network = { package = "substrate-network", path = "../network" }
srml-finality-tracker = { path = "../../srml/finality-tracker" }
fg_primitives = { package = "substrate-finality-grandpa-primitives", path = "primitives" }
grandpa = { package = "finality-grandpa", version = "0.9.0", features = ["derive-codec"] }
grandpa = { package = "finality-grandpa", version = "0.9.1", features = ["derive-codec"] }

[dev-dependencies]
grandpa = { package = "finality-grandpa", version = "0.9.0", features = ["derive-codec", "test-helpers"] }
grandpa = { package = "finality-grandpa", version = "0.9.1", features = ["derive-codec", "test-helpers"] }
network = { package = "substrate-network", path = "../network", features = ["test-helpers"] }
keyring = { package = "substrate-keyring", path = "../keyring" }
test-client = { package = "substrate-test-runtime-client", path = "../test-runtime/client"}
babe_primitives = { package = "substrate-consensus-babe-primitives", path = "../consensus/babe/primitives" }
state_machine = { package = "substrate-state-machine", path = "../state-machine" }
env_logger = "0.7.0"
env_logger = "0.7.1"
tokio = "0.1.22"
tempfile = "3.1.0"
4 changes: 2 additions & 2 deletions core/finality-grandpa/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ edition = "2018"
[dependencies]
client = { package = "substrate-client", path = "../../client", default-features = false }
app-crypto = { package = "substrate-application-crypto", path = "../../application-crypto", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
sr-primitives = { path = "../../sr-primitives", default-features = false }
rstd = { package = "sr-std", path = "../../sr-std", default-features = false }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
serde = { version = "1.0.102", optional = true, features = ["derive"] }

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion core/inherents/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
parking_lot = { version = "0.9.0", optional = true }
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
sr-primitives = { path = "../sr-primitives", default-features = false }

[features]
Expand Down
2 changes: 1 addition & 1 deletion core/keystore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ app-crypto = { package = "substrate-application-crypto", path = "../application
hex = "0.3.2"
rand = "0.7.2"
serde_json = "1.0.41"
subtle = "2.1.1"
subtle = "2.2.1"
parking_lot = "0.9.0"

[dev-dependencies]
Expand Down
12 changes: 6 additions & 6 deletions core/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ derive_more = "0.15.0"
either = "1.5.3"
log = "0.4.8"
parking_lot = "0.9.0"
bitflags = "1.2.0"
bitflags = "1.2.1"
fnv = "1.0.6"
futures = "0.1.29"
futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] }
Expand All @@ -29,16 +29,16 @@ client = { package = "substrate-client", path = "../../core/client" }
header_metadata = { package = "substrate-header-metadata", path = "../../core/client/header-metadata" }
sr-primitives = { path = "../../core/sr-primitives" }
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
peerset = { package = "substrate-peerset", path = "../../core/peerset" }
serde = { version = "1.0.101", features = ["derive"] }
serde = { version = "1.0.102", features = ["derive"] }
serde_json = "1.0.41"
slog = { version = "2.5.2", features = ["nested-values"] }
slog_derive = "0.1.1"
smallvec = "0.6.10"
smallvec = "0.6.13"
tokio-io = "0.1.12"
tokio = { version = "0.1.22", optional = true }
unsigned-varint = { version = "0.2.2", features = ["codec"] }
unsigned-varint = { version = "0.2.3", features = ["codec"] }
keyring = { package = "substrate-keyring", path = "../../core/keyring", optional = true }
test_client = { package = "substrate-test-client", path = "../../core/test-client", optional = true }
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client", optional = true }
Expand All @@ -48,7 +48,7 @@ zeroize = "0.10.1"
babe-primitives = { package = "substrate-consensus-babe-primitives", path = "../consensus/babe/primitives" }

[dev-dependencies]
env_logger = "0.7.0"
env_logger = "0.7.1"
keyring = { package = "substrate-keyring", path = "../../core/keyring" }
quickcheck = "0.9.0"
rand = "0.7.2"
Expand Down
10 changes: 5 additions & 5 deletions core/offchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ edition = "2018"
bytes = "0.4.12"
client = { package = "substrate-client", path = "../../core/client" }
fnv = "1.0.6"
futures01 = { package = "futures", version = "0.1" }
futures01 = { package = "futures", version = "0.1.29" }
futures-preview = "0.3.0-alpha.19"
futures-timer = "0.4.0"
log = "0.4.8"
threadpool = "1.7"
num_cpus = "1.10"
threadpool = "1.7.1"
num_cpus = "1.11.0"
offchain-primitives = { package = "substrate-offchain-primitives", path = "./primitives" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
parking_lot = "0.9.0"
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
rand = "0.7.2"
Expand All @@ -31,7 +31,7 @@ hyper = "0.12.35"
hyper-tls = "0.3.2"

[dev-dependencies]
env_logger = "0.7.0"
env_logger = "0.7.1"
client-db = { package = "substrate-client-db", path = "../../core/client/db/", default-features = true }
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client" }
tokio = "0.1.22"
Expand Down
Loading

0 comments on commit c031389

Please sign in to comment.