Skip to content

Commit 09ecbd7

Browse files
authored
chore(deps): drain is a workspace dependency (#3717)
see linkerd/linkerd2#8733 and #3504 for more information. see also linkerd/drain-rs#36 for a related pull request that updated `drain`'s `tower` dependency. see #3715 (2f97549) for a related pull request that made `tower` a workspace dependency. see #3456 (c740b6d), #3466 (ca50d6b), #3473 (b87455a), and #3701 (cf4ef39), for some other previous pr's that moved dependencies to be managed at the workspace level. Signed-off-by: katelyn martin <[email protected]>
1 parent 4589be4 commit 09ecbd7

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ lto = true
100100

101101
[workspace.dependencies]
102102
bytes = { version = "1" }
103+
drain = { version = "0.1", default-features = false }
103104
h2 = { version = "0.3" }
104105
http = { version = "0.2" }
105106
http-body = { version = "0.4" }

linkerd/app/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ independently of the inbound and outbound proxy logic.
1414

1515
[dependencies]
1616
bytes = { workspace = true }
17-
drain = { version = "0.1", features = ["retain"] }
17+
drain = { workspace = true, features = ["retain"] }
1818
http = { workspace = true }
1919
http-body = { workspace = true }
2020
hyper = { workspace = true, features = ["deprecated", "http1", "http2"] }

linkerd/http/upgrade/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Facilities for HTTP/1 upgrades.
1111

1212
[dependencies]
1313
bytes = { workspace = true }
14-
drain = "0.1"
14+
drain = { workspace = true }
1515
futures = { version = "0.3", default-features = false }
1616
http = { workspace = true }
1717
http-body = { workspace = true }

linkerd/proxy/http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This should probably be decomposed into smaller, decoupled crates.
1414
[dependencies]
1515
async-trait = "0.1"
1616
bytes = { workspace = true }
17-
drain = "0.1"
17+
drain = { workspace = true }
1818
futures = { version = "0.3", default-features = false }
1919
h2 = { workspace = true }
2020
http = { workspace = true }

0 commit comments

Comments
 (0)