Skip to content

Commit feb117d

Browse files
Bump tracing from 0.1.35 to 0.1.36
Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.35 to 0.1.36. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](tokio-rs/tracing@tracing-0.1.35...tracing-0.1.36) --- updated-dependencies: - dependency-name: tracing dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 1b23ec9 commit feb117d

11 files changed

Lines changed: 28 additions & 28 deletions

File tree

Cargo.lock

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

client/executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1717
lazy_static = "1.4.0"
1818
lru = "0.7.5"
1919
parking_lot = "0.12.1"
20-
tracing = "0.1.29"
20+
tracing = "0.1.36"
2121
wasmi = "0.13"
2222

2323
codec = { package = "parity-scale-codec", version = "3.0.0" }

client/network-gossip/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ futures-timer = "3.0.1"
2020
libp2p = { version = "0.46.1", default-features = false }
2121
log = "0.4.17"
2222
lru = "0.7.5"
23-
tracing = "0.1.29"
23+
tracing = "0.1.36"
2424
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
2525
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
2626
sc-peerset = { version = "4.0.0-dev", path = "../peerset" }

client/offchain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ once_cell = "1.8"
2727
parking_lot = "0.12.1"
2828
rand = "0.7.2"
2929
threadpool = "1.7"
30-
tracing = "0.1.29"
30+
tracing = "0.1.36"
3131
sc-client-api = { version = "4.0.0-dev", path = "../api" }
3232
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
3333
sc-peerset = { version = "4.0.0-dev", path = "../peerset" }

client/service/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../..
7878
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
7979
sp-tracing = { version = "5.0.0", path = "../../primitives/tracing" }
8080
sc-sysinfo = { version = "6.0.0-dev", path = "../sysinfo" }
81-
tracing = "0.1.29"
81+
tracing = "0.1.36"
8282
tracing-futures = { version = "0.2.4" }
8383
parity-util-mem = { version = "0.11.0", default-features = false, features = [
8484
"primitive-types",

client/tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ regex = "1.5.5"
2525
rustc-hash = "1.1.0"
2626
serde = "1.0.136"
2727
thiserror = "1.0.30"
28-
tracing = "0.1.29"
28+
tracing = "0.1.36"
2929
tracing-log = "0.1.3"
3030
tracing-subscriber = { version = "0.2.25", features = ["parking_lot"] }
3131
sc-client-api = { version = "4.0.0-dev", path = "../api" }

primitives/io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ log = { version = "0.4.17", optional = true }
3232
futures = { version = "0.3.21", features = ["thread-pool"], optional = true }
3333
parking_lot = { version = "0.12.1", optional = true }
3434
secp256k1 = { version = "0.24.0", features = ["recovery", "global-context"], optional = true }
35-
tracing = { version = "0.1.29", default-features = false }
35+
tracing = { version = "0.1.36", default-features = false }
3636
tracing-core = { version = "0.1.28", default-features = false}
3737

3838
[features]

primitives/runtime-interface/test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/substrate/"
1212
targets = ["x86_64-unknown-linux-gnu"]
1313

1414
[dependencies]
15-
tracing = "0.1.29"
15+
tracing = "0.1.36"
1616
tracing-core = "0.1.28"
1717
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
1818
sc-executor-common = { version = "0.10.0-dev", path = "../../../client/executor/common" }

primitives/state-machine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ parking_lot = { version = "0.12.1", optional = true }
2222
rand = { version = "0.7.2", optional = true }
2323
smallvec = "1.8.0"
2424
thiserror = { version = "1.0.30", optional = true }
25-
tracing = { version = "0.1.29", optional = true }
25+
tracing = { version = "0.1.36", optional = true }
2626
trie-root = { version = "0.17.0", default-features = false }
2727
sp-core = { version = "6.0.0", default-features = false, path = "../core" }
2828
sp-externalities = { version = "0.12.0", default-features = false, path = "../externalities" }

primitives/tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sp-std = { version = "4.0.0", path = "../std", default-features = false }
2222
codec = { version = "3.0.0", package = "parity-scale-codec", default-features = false, features = [
2323
"derive",
2424
] }
25-
tracing = { version = "0.1.29", default-features = false }
25+
tracing = { version = "0.1.36", default-features = false }
2626
tracing-core = { version = "0.1.28", default-features = false }
2727
tracing-subscriber = { version = "0.2.25", optional = true, features = [
2828
"tracing-log",

0 commit comments

Comments
 (0)