Skip to content

Commit 5adc2aa

Browse files
committed
chore(deps): tower is a workspace dependency
pr #3715 missed a small handful of cargo dependencies. this commit marks these so that they use the workspace-level tower version. Signed-off-by: katelyn martin <[email protected]>
1 parent 33cbb0b commit 5adc2aa

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -476,11 +476,10 @@ dependencies = [
476476
[[package]]
477477
name = "drain"
478478
version = "0.1.2"
479-
source = "registry+https://github.com/rust-lang/crates.io-index"
480-
checksum = "9d105028bd2b5dfcb33318fd79a445001ead36004dd8dffef1bdd7e493d8bc1e"
479+
source = "git+https://github.com/linkerd/drain-rs.git?rev=7678cbbf822c922fefa5c8c62070f52bea385fc9#7678cbbf822c922fefa5c8c62070f52bea385fc9"
481480
dependencies = [
482481
"tokio",
483-
"tower 0.4.13",
482+
"tower 0.5.2",
484483
]
485484

486485
[[package]]
@@ -1388,7 +1387,7 @@ dependencies = [
13881387
"serde_json",
13891388
"thiserror 2.0.12",
13901389
"tokio",
1391-
"tower 0.4.13",
1390+
"tower 0.5.2",
13921391
"tracing",
13931392
]
13941393

@@ -1460,7 +1459,7 @@ dependencies = [
14601459
"tokio",
14611460
"tokio-stream",
14621461
"tonic",
1463-
"tower 0.4.13",
1462+
"tower 0.5.2",
14641463
"tracing",
14651464
]
14661465

@@ -2197,7 +2196,7 @@ dependencies = [
21972196
"rand 0.9.0",
21982197
"tokio",
21992198
"tokio-test",
2200-
"tower 0.4.13",
2199+
"tower 0.5.2",
22012200
"tower-test",
22022201
"tracing",
22032202
]
@@ -2239,7 +2238,7 @@ dependencies = [
22392238
"linkerd-stack",
22402239
"rand 0.9.0",
22412240
"tokio",
2242-
"tower 0.4.13",
2241+
"tower 0.5.2",
22432242
"tracing",
22442243
]
22452244

@@ -2304,7 +2303,7 @@ version = "0.1.0"
23042303
dependencies = [
23052304
"futures",
23062305
"linkerd-error",
2307-
"tower 0.4.13",
2306+
"tower 0.5.2",
23082307
]
23092308

23102309
[[package]]
@@ -4193,6 +4192,7 @@ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
41934192
dependencies = [
41944193
"futures-core",
41954194
"futures-util",
4195+
"indexmap 2.7.1",
41964196
"pin-project-lite",
41974197
"sync_wrapper",
41984198
"tokio",

linkerd/app/admin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ linkerd-app-inbound = { path = "../inbound" }
3434
linkerd-tracing = { path = "../../tracing" }
3535

3636
[dependencies.tower]
37-
version = "0.4"
37+
workspace = true
3838
default-features = false
3939
features = [
4040
"buffer",

linkerd/app/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ linkerd-tls = { path = "../../tls" }
7676
linkerd-trace-context = { path = "../../trace-context" }
7777

7878
[dependencies.tower]
79-
version = "0.4"
79+
workspace = true
8080
default-features = false
8181
features = ["make", "spawn-ready", "timeout", "util", "limit"]
8282

linkerd/pool/p2c/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ linkerd-pool = { path = ".." }
2121
linkerd-stack = { path = "../../stack" }
2222

2323
[dependencies.tower]
24-
version = "0.4.13"
24+
workspace = true
2525
default-features = false
2626
features = ["load", "ready-cache"]
2727

linkerd/proxy/balance/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ linkerd-proxy-balance-queue = { path = "queue" }
2020
linkerd-stack = { path = "../../stack" }
2121

2222
[dependencies.tower]
23-
version = "0.4.13"
23+
workspace = true
2424
default-features = false
2525
features = ["load"]

linkerd/proxy/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ futures = { version = "0.3", default-features = false }
1414
linkerd-error = { path = "../../error" }
1515

1616
[dependencies.tower]
17-
version = "0.4"
17+
workspace = true
1818
default-features = false
1919
features = ["util"]

0 commit comments

Comments
 (0)