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

Commit 16dc9e6

Browse files
author
parity-processbot
committed
Merge remote-tracking branch 'origin/master' into move-block-announce-config
2 parents 7ebce8b + 4454404 commit 16dc9e6

File tree

11 files changed

+23
-24
lines changed

11 files changed

+23
-24
lines changed

Cargo.lock

Lines changed: 8 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/consensus/aura/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
async-trait = "0.1.57"
1010
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
1111
futures = "0.3.24"
12-
tracing = "0.1.36"
12+
tracing = "0.1.37"
1313

1414
# Substrate
1515
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }

client/consensus/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ async-trait = "0.1.57"
1010
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
1111
dyn-clone = "1.0.9"
1212
futures = "0.3.24"
13-
tracing = "0.1.36"
13+
tracing = "0.1.37"
1414

1515
# Substrate
1616
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }

client/consensus/relay-chain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
async-trait = "0.1.57"
1010
futures = "0.3.24"
1111
parking_lot = "0.12.1"
12-
tracing = "0.1.36"
12+
tracing = "0.1.37"
1313

1414
# Substrate
1515
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }

client/network/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "deriv
1111
futures = "0.3.24"
1212
futures-timer = "3.0.2"
1313
parking_lot = "0.12.1"
14-
tracing = "0.1.36"
14+
tracing = "0.1.37"
1515

1616
# Substrate
1717
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
@@ -31,7 +31,7 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
3131

3232
[dev-dependencies]
3333
portpicker = "0.1.1"
34-
tokio = { version = "1.21.1", features = ["macros"] }
34+
tokio = { version = "1.21.2", features = ["macros"] }
3535
url = "2.3.1"
3636

3737
# Substrate

client/pov-recovery/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "deriv
1010
futures = "0.3.24"
1111
futures-timer = "3.0.2"
1212
rand = "0.8.5"
13-
tracing = "0.1.36"
13+
tracing = "0.1.37"
1414

1515
# Substrate
1616
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
@@ -30,7 +30,7 @@ cumulus-primitives-core = { path = "../../primitives/core" }
3030
cumulus-relay-chain-interface = {path = "../relay-chain-interface"}
3131

3232
[dev-dependencies]
33-
tokio = { version = "1.21.1", features = ["macros"] }
33+
tokio = { version = "1.21.2", features = ["macros"] }
3434
portpicker = "0.1.1"
3535

3636
# Cumulus

client/relay-chain-minimal-node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ cumulus-primitives-core = { path = "../../primitives/core" }
4343

4444
array-bytes = "4.1"
4545
lru = "0.8"
46-
tracing = "0.1.25"
46+
tracing = "0.1.37"
4747
async-trait = "0.1.52"
4848
futures = "0.3.24"
4949
url = "2.2.2"
50-
tokio = { version = "1.17.0", features = ["macros"] }
50+
tokio = { version = "1.21.2", features = ["macros"] }

client/relay-chain-rpc-interface/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "
2020
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
2121
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" }
2222
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
23-
tokio = { version = "1.21.1", features = ["sync"] }
23+
tokio = { version = "1.21.2", features = ["sync"] }
2424

2525
futures = "0.3.24"
2626
futures-timer = "3.0.2"
2727
parity-scale-codec = "3.2.1"
2828
jsonrpsee = { version = "0.15.1", features = ["ws-client"] }
29-
tracing = "0.1.36"
29+
tracing = "0.1.37"
3030
async-trait = "0.1.57"
3131
url = "2.3.1"
3232
backoff = { version = "0.4.0", features = ["tokio"] }

polkadot-parachain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ substrate-build-script-utils = { git = "https://github.com/paritytech/substrate"
9292
assert_cmd = "2.0"
9393
nix = "0.25"
9494
tempfile = "3.3.0"
95-
tokio = { version = "1.21.1", features = ["macros", "time", "parking_lot"] }
95+
tokio = { version = "1.21.2", features = ["macros", "time", "parking_lot"] }
9696
wait-timeout = "0.2"
9797
# purge_chain_works works with rococo-local and needs to allow this
9898
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", features = ["rococo-native"] }

primitives/parachain-inherent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
async-trait = { version = "0.1.57", optional = true }
99
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] }
1010
scale-info = { version = "2.2.0", default-features = false, features = ["derive"] }
11-
tracing = { version = "0.1.36", optional = true }
11+
tracing = { version = "0.1.37", optional = true }
1212

1313
# Substrate
1414
sc-client-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }

0 commit comments

Comments
 (0)