Skip to content

Commit 7b7ffbc

Browse files
authored
chore(deps): define tracing workspace dependency (#3834)
this commit hoists `tracing`, used liberally throughout our project, such that it is managed as a single workspace dependency. this will be helpful someday when a 0.2 release happens. Signed-off-by: katelyn martin <[email protected]>
1 parent 00b5de1 commit 7b7ffbc

File tree

62 files changed

+62
-61
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+62
-61
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ tonic-build = { version = "0.12", default-features = false }
123123
tower = { version = "0.5", default-features = false }
124124
tower-service = { version = "0.3" }
125125
tower-test = { version = "0.4" }
126+
tracing = { version = "0.1" }
126127

127128
[workspace.dependencies.http-body-util]
128129
version = "0.1.3"

linkerd/addr/fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cargo-fuzz = true
1313
libfuzzer-sys = "0.4"
1414
linkerd-addr = { path = ".." }
1515
linkerd-tracing = { path = "../../tracing", features = ["ansi"] }
16-
tracing = "0.1"
16+
tracing = { workspace = true }
1717

1818
# Prevent this from interfering with workspaces
1919
[workspace]

linkerd/app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ tokio = { version = "1", features = ["rt"] }
3636
tokio-stream = { version = "0.1", features = ["time", "sync"] }
3737
tonic = { workspace = true, default-features = false, features = ["prost"] }
3838
tower = { workspace = true }
39-
tracing = "0.1"
39+
tracing = { workspace = true }

linkerd/app/admin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ serde = "1"
2727
serde_json = "1"
2828
thiserror = "2"
2929
tokio = { version = "1", features = ["macros", "sync", "parking_lot"] }
30-
tracing = "0.1"
30+
tracing = { workspace = true }
3131

3232
linkerd-app-core = { path = "../core" }
3333
linkerd-app-inbound = { path = "../inbound" }

linkerd/app/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ thiserror = "2"
2929
tokio = { version = "1", features = ["macros", "sync", "parking_lot"] }
3030
tokio-stream = { version = "0.1", features = ["time"] }
3131
tonic = { workspace = true, default-features = false, features = ["prost"] }
32-
tracing = "0.1"
32+
tracing = { workspace = true }
3333
parking_lot = "0.12"
3434
pin-project = "1"
3535

linkerd/app/gateway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ thiserror = "2"
1818
tokio = { version = "1", features = ["sync"] }
1919
tonic = { workspace = true, default-features = false }
2020
tower = { workspace = true, default-features = false }
21-
tracing = "0.1"
21+
tracing = { workspace = true }
2222

2323
[dev-dependencies]
2424
linkerd-app-inbound = { path = "../inbound", features = ["test-util"] }

linkerd/app/inbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ thiserror = "2"
3838
tokio = { version = "1", features = ["sync"] }
3939
tonic = { workspace = true, default-features = false }
4040
tower = { workspace = true, features = ["util"] }
41-
tracing = "0.1"
41+
tracing = { workspace = true }
4242

4343
[dependencies.linkerd-proxy-server-policy]
4444
path = "../../proxy/server-policy"

linkerd/app/inbound/fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ linkerd-meshtls-rustls = { path = "../../../meshtls/rustls", features = [
2424
] }
2525
linkerd-tracing = { path = "../../../tracing", features = ["ansi"] }
2626
tokio = { version = "1", features = ["full"] }
27-
tracing = "0.1"
27+
tracing = { workspace = true }
2828

2929
# Prevent this from interfering with workspaces
3030
[workspace]

linkerd/app/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tokio-rustls = { workspace = true }
4040
tokio-stream = { version = "0.1", features = ["sync"] }
4141
tonic = { workspace = true, features = ["transport"], default-features = false }
4242
tower = { workspace = true, default-features = false }
43-
tracing = "0.1"
43+
tracing = { workspace = true }
4444

4545
[dependencies.hyper]
4646
workspace = true

linkerd/app/outbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ thiserror = "2"
3232
tokio = { version = "1", features = ["sync"] }
3333
tonic = { workspace = true, default-features = false }
3434
tower = { workspace = true, features = ["util"] }
35-
tracing = "0.1"
35+
tracing = { workspace = true }
3636

3737
linkerd-app-core = { path = "../core" }
3838
linkerd-app-test = { path = "../test", optional = true }

0 commit comments

Comments
 (0)