Skip to content

Commit 732964b

Browse files
committed
trace: roll tracing and tracing-subscriber dependencies
This picks up upstream changes tokio-rs/tracing#853, tokio-rs/tracing#868, and tokio-rs/tracing#869 which improve performance in some use cases. The overhead removed by these changes may already be amortized enough in the proxy that it's not a problem, but it seems worth picking up regardless.
1 parent c234a92 commit 732964b

File tree

30 files changed

+39
-39
lines changed

30 files changed

+39
-39
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2706,9 +2706,9 @@ dependencies = [
27062706

27072707
[[package]]
27082708
name = "tracing"
2709-
version = "0.1.15"
2709+
version = "0.1.18"
27102710
source = "registry+https://github.com/rust-lang/crates.io-index"
2711-
checksum = "a41f40ed0e162c911ac6fcb53ecdc8134c46905fdbbae8c50add462a538b495f"
2711+
checksum = "f0aae59226cf195d8e74d4b34beae1859257efb4e5fed3f147d2dc2c7d372178"
27122712
dependencies = [
27132713
"cfg-if",
27142714
"log",
@@ -2718,9 +2718,9 @@ dependencies = [
27182718

27192719
[[package]]
27202720
name = "tracing-attributes"
2721-
version = "0.1.8"
2721+
version = "0.1.9"
27222722
source = "registry+https://github.com/rust-lang/crates.io-index"
2723-
checksum = "99bbad0de3fd923c9c3232ead88510b783e5a4d16a6154adffa3d53308de984c"
2723+
checksum = "f0693bf8d6f2bf22c690fc61a9d21ac69efdbb894a17ed596b9af0f01e64b84b"
27242724
dependencies = [
27252725
"proc-macro2 1.0.10",
27262726
"quote 1.0.2",
@@ -2729,9 +2729,9 @@ dependencies = [
27292729

27302730
[[package]]
27312731
name = "tracing-core"
2732-
version = "0.1.10"
2732+
version = "0.1.12"
27332733
source = "registry+https://github.com/rust-lang/crates.io-index"
2734-
checksum = "0aa83a9a47081cd522c09c81b31aec2c9273424976f922ad61c053b58350b715"
2734+
checksum = "b2734b5a028fa697686f16c6d18c2c6a3c7e41513f9a213abb6754c4acb3c8d7"
27352735
dependencies = [
27362736
"lazy_static",
27372737
]
@@ -2769,9 +2769,9 @@ dependencies = [
27692769

27702770
[[package]]
27712771
name = "tracing-subscriber"
2772-
version = "0.2.8"
2772+
version = "0.2.10"
27732773
source = "registry+https://github.com/rust-lang/crates.io-index"
2774-
checksum = "cafe899b943f5433c6cab468d75a17ea92948fe9fe60b00f41e13d5e0d4fd054"
2774+
checksum = "f7b33f8b2ef2ab0c3778c12646d9c42a24f7772bee4cdafc72199644a9f58fdc"
27752775
dependencies = [
27762776
"ansi_term",
27772777
"chrono",

linkerd/admit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ publish = false
99
futures = "0.3"
1010
linkerd2-error = { path = "../error" }
1111
tower = { version = "0.3", default-features = false, features = ["util"] }
12-
tracing = "0.1"
12+
tracing = "0.1.18"

linkerd/app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ regex = "1.0.0"
2828
tokio = { version = "0.2", features = ["rt-util"] }
2929
tonic = { version = "0.2", default-features = false, features = ["prost"] }
3030
tower = "0.3"
31-
tracing = "0.1.9"
31+
tracing = "0.1.18"
3232
tracing-futures = { version = "0.2", features = ["std-future"]}
3333

3434
[dev-dependencies]

linkerd/app/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ tokio = { version = "0.2", features = ["macros", "sync", "parking_lot"]}
6767
tokio-timer = "0.2"
6868
tower-request-modifier = { git = "https://github.com/tower-rs/tower-http" }
6969
tonic = { version = "0.2", default-features = false, features = ["prost"] }
70-
tracing = "0.1.9"
70+
tracing = "0.1.18"
7171
tracing-futures = { version = "0.2", features = ["std-future"] }
7272
tracing-log = "0.1"
7373
pin-project = "0.4"

linkerd/app/gateway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ linkerd2-app-core = { path = "../core" }
1313
linkerd2-app-inbound = { path = "../inbound" }
1414
linkerd2-app-outbound = { path = "../outbound" }
1515
tower = { version = "0.3", default-features = false }
16-
tracing = "0.1"
16+
tracing = "0.1.18"
1717

1818
[dev-dependencies]
1919
tokio = { version = "0.2", features = ["rt-core", "macros"] }

linkerd/app/inbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ futures = { version = "0.3" }
1515
indexmap = "1.0"
1616
linkerd2-app-core = { path = "../core" }
1717
tokio = { version = "0.2", features = ["sync"] }
18-
tracing = "0.1.9"
18+
tracing = "0.1.18"
1919

2020
[dependencies.tower]
2121
version = "0.3"

linkerd/app/integration/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ tokio = { version = "0.2", features = ["io-util", "net", "rt-core"]}
3737
tokio-rustls = "0.13"
3838
tower = { version = "0.3", default-features = false}
3939
tonic = { version = "0.2", default-features = false }
40-
tracing = "0.1.9"
40+
tracing = "0.1.18"
4141
tracing-futures = { version = "0.2", features = ["std-future"] }
42-
tracing-subscriber = "0.2.7"
42+
tracing-subscriber = "0.2.10"
4343
webpki = "0.21.0"
4444

4545
[dev-dependencies]

linkerd/app/outbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ linkerd2-app-core = { path = "../core" }
1717
linkerd2-identity = { path = "../../identity" }
1818
linkerd2-retry = { path = "../../retry" }
1919
tokio = { version = "0.2", features = ["sync"]}
20-
tracing = "0.1.9"
20+
tracing = "0.1.18"
2121
pin-project = "0.4"
2222

2323
[dependencies.tower]

linkerd/buffer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ futures = "0.3"
1010
linkerd2-error = { path = "../error" }
1111
tokio = { version = "0.2", features = ["sync", "stream", "time", "macros"] }
1212
tower = { version = "0.3", default_features = false, features = ["util"] }
13-
tracing = "0.1"
13+
tracing = "0.1.18"
1414
tracing-futures = { version = "0.2", features = ["std-future"] }
1515
pin-project = "0.4"
1616

linkerd/cache/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ linkerd2-error = { path = "../error" }
1111
linkerd2-stack = { path = "../stack" }
1212
tokio = "0.2"
1313
tower = { version = "0.3", default-features = false, features = ["util"] }
14-
tracing = "0.1"
14+
tracing = "0.1.18"

0 commit comments

Comments
 (0)