From fe668ee2842f9dfac70f28850a4e48aad11b58c1 Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Fri, 7 Mar 2025 00:00:00 +0000 Subject: [PATCH] chore(deps): update `tower` dependency to v0.5.2 this commit updates the tower dependency from `0.4.7` to `0.5.2`. see also: * https://github.com/linkerd/linkerd2/issues/8733 * https://github.com/linkerd/linkerd2-proxy/pull/3504 this allows us to rely upon newer versions of e.g. `axum`, `tonic` without violating `cargo deny`'s duplicate dependency checks. Signed-off-by: katelyn martin --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 73d1379..ec393eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ retain = ["tower"] [dependencies] tokio = { version = "1", features = ["macros", "sync"] } -tower = { version = "0.4.7", default-features = false, optional = true } +tower = { version = "0.5.2", default-features = false, optional = true } [dev-dependencies] futures = { version = "0.3.15", default-features = false }