diff --git a/Cargo.toml b/Cargo.toml index 84a619af37..ad1c1e3081 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -100,6 +100,7 @@ lto = true [workspace.dependencies] bytes = { version = "1" } +drain = { version = "0.1", default-features = false } h2 = { version = "0.3" } http = { version = "0.2" } http-body = { version = "0.4" } diff --git a/linkerd/app/core/Cargo.toml b/linkerd/app/core/Cargo.toml index 7c4dda476b..6549b0c64a 100644 --- a/linkerd/app/core/Cargo.toml +++ b/linkerd/app/core/Cargo.toml @@ -14,7 +14,7 @@ independently of the inbound and outbound proxy logic. [dependencies] bytes = { workspace = true } -drain = { version = "0.1", features = ["retain"] } +drain = { workspace = true, features = ["retain"] } http = { workspace = true } http-body = { workspace = true } hyper = { workspace = true, features = ["deprecated", "http1", "http2"] } diff --git a/linkerd/http/upgrade/Cargo.toml b/linkerd/http/upgrade/Cargo.toml index 8d500e9099..d32f89ad9f 100644 --- a/linkerd/http/upgrade/Cargo.toml +++ b/linkerd/http/upgrade/Cargo.toml @@ -11,7 +11,7 @@ Facilities for HTTP/1 upgrades. [dependencies] bytes = { workspace = true } -drain = "0.1" +drain = { workspace = true } futures = { version = "0.3", default-features = false } http = { workspace = true } http-body = { workspace = true } diff --git a/linkerd/proxy/http/Cargo.toml b/linkerd/proxy/http/Cargo.toml index 2d66c30d0f..c70f34a5f4 100644 --- a/linkerd/proxy/http/Cargo.toml +++ b/linkerd/proxy/http/Cargo.toml @@ -14,7 +14,7 @@ This should probably be decomposed into smaller, decoupled crates. [dependencies] async-trait = "0.1" bytes = { workspace = true } -drain = "0.1" +drain = { workspace = true } futures = { version = "0.3", default-features = false } h2 = { workspace = true } http = { workspace = true }