diff --git a/Cargo.lock b/Cargo.lock index 06ef32b5a6..9084006c22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2481,9 +2481,9 @@ dependencies = [ [[package]] name = "tower" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a89fd63ad6adf737582df5db40d286574513c69a11dac5214dc3b5603d6713e" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" dependencies = [ "futures-core", "futures-util", diff --git a/hyper-balance/Cargo.toml b/hyper-balance/Cargo.toml index 54238fb283..7434964ee2 100644 --- a/hyper-balance/Cargo.toml +++ b/hyper-balance/Cargo.toml @@ -11,7 +11,7 @@ futures = { version = "0.3", default-features = false } http = "0.2" hyper = "0.14" pin-project = "1" -tower = { version = "0.4", default-features = false, features = ["load"] } +tower = { version = "0.4.13", default-features = false, features = ["load"] } tokio = { version = "1", features = ["macros"] } [dev-dependencies] diff --git a/linkerd/app/Cargo.toml b/linkerd/app/Cargo.toml index 12acfe6e4d..7aedf71879 100644 --- a/linkerd/app/Cargo.toml +++ b/linkerd/app/Cargo.toml @@ -29,5 +29,5 @@ thiserror = "1" tokio = { version = "1", features = ["rt"] } tokio-stream = { version = "0.1", features = ["time", "sync"] } tonic = { version = "0.7", default-features = false, features = ["prost"] } -tower = "0.4" +tower = "0.4.13" tracing = "0.1" diff --git a/linkerd/app/gateway/Cargo.toml b/linkerd/app/gateway/Cargo.toml index 259e42fc48..393d6aedb9 100644 --- a/linkerd/app/gateway/Cargo.toml +++ b/linkerd/app/gateway/Cargo.toml @@ -14,12 +14,12 @@ linkerd-app-inbound = { path = "../inbound" } linkerd-app-outbound = { path = "../outbound" } thiserror = "1" tokio = { version = "1", features = ["sync"] } -tower = { version = "0.4", default-features = false } +tower = { version = "0.4.13", default-features = false } tracing = "0.1" [dev-dependencies] tokio = { version = "1", features = ["rt", "macros"] } tokio-test = "0.4" -tower = { version = "0.4", default-features = false, features = ["util"] } +tower = { version = "0.4.13", default-features = false, features = ["util"] } tower-test = "0.4" linkerd-app-test = { path = "../test" } diff --git a/linkerd/app/inbound/Cargo.toml b/linkerd/app/inbound/Cargo.toml index 5f3cc7f0e0..a495400422 100644 --- a/linkerd/app/inbound/Cargo.toml +++ b/linkerd/app/inbound/Cargo.toml @@ -23,7 +23,7 @@ parking_lot = "0.12" thiserror = "1" tokio = { version = "1", features = ["sync"] } tonic = { version = "0.7", default-features = false } -tower = { version = "0.4", features = ["util"] } +tower = { version = "0.4.13", features = ["util"] } tracing = "0.1" [target.'cfg(fuzzing)'.dependencies] diff --git a/linkerd/app/integration/Cargo.toml b/linkerd/app/integration/Cargo.toml index c735f62b1f..ff9f1a12fb 100644 --- a/linkerd/app/integration/Cargo.toml +++ b/linkerd/app/integration/Cargo.toml @@ -46,7 +46,7 @@ tokio = { version = "1", features = ["io-util", "net", "rt", "macros"] } tokio-stream = { version = "0.1", features = ["sync"] } tokio-rustls = "0.23" rustls-pemfile = "1.0" -tower = { version = "0.4", default-features = false } +tower = { version = "0.4.13", default-features = false } tonic = { version = "0.7", default-features = false } tracing = "0.1" tracing-subscriber = { version = "0.3", default-features = false, features = [ diff --git a/linkerd/app/outbound/Cargo.toml b/linkerd/app/outbound/Cargo.toml index 8ed979980b..2c05f98787 100644 --- a/linkerd/app/outbound/Cargo.toml +++ b/linkerd/app/outbound/Cargo.toml @@ -26,7 +26,7 @@ linkerd-retry = { path = "../../retry" } parking_lot = "0.12" thiserror = "1" tokio = { version = "1", features = ["sync"] } -tower = { version = "0.4", features = ["util"] } +tower = { version = "0.4.13", features = ["util"] } tracing = "0.1" pin-project = "1" diff --git a/linkerd/app/test/Cargo.toml b/linkerd/app/test/Cargo.toml index 894ae32726..7b58da3315 100644 --- a/linkerd/app/test/Cargo.toml +++ b/linkerd/app/test/Cargo.toml @@ -23,7 +23,7 @@ regex = "1" tokio = { version = "1", features = ["io-util", "net", "rt", "sync"] } tokio-test = "0.4" tokio-stream = { version = "0.1", features = ["sync"] } -tower = { version = "0.4", default-features = false } +tower = { version = "0.4.13", default-features = false } tracing = "0.1" thiserror = "1" diff --git a/linkerd/cache/Cargo.toml b/linkerd/cache/Cargo.toml index edf7ece3f8..f8d6aa36c7 100644 --- a/linkerd/cache/Cargo.toml +++ b/linkerd/cache/Cargo.toml @@ -15,7 +15,7 @@ linkerd-error = { path = "../error" } linkerd-stack = { path = "../stack" } parking_lot = "0.12" tokio = { version = "1", default-features = false, features = ["macros", "rt", "sync", "time"] } -tower = { version = "0.4", default-features = false, features = ["util"] } +tower = { version = "0.4.13", default-features = false, features = ["util"] } tracing = "0.1" [dev-dependencies] diff --git a/linkerd/detect/Cargo.toml b/linkerd/detect/Cargo.toml index 18392fd10c..f95080b522 100644 --- a/linkerd/detect/Cargo.toml +++ b/linkerd/detect/Cargo.toml @@ -14,5 +14,5 @@ linkerd-io = { path = "../io" } linkerd-stack = { path = "../stack" } tokio = { version = "1", features = ["time"] } thiserror = "1" -tower = "0.4" +tower = "0.4.13" tracing = "0.1" diff --git a/linkerd/http-classify/Cargo.toml b/linkerd/http-classify/Cargo.toml index f2bff95438..74ec9a603c 100644 --- a/linkerd/http-classify/Cargo.toml +++ b/linkerd/http-classify/Cargo.toml @@ -10,4 +10,4 @@ publish = false http = "0.2" linkerd-error = { path = "../error" } linkerd-stack = { path = "../stack" } -tower = { version = "0.4", default-features = false } +tower = { version = "0.4.13", default-features = false } diff --git a/linkerd/http-metrics/Cargo.toml b/linkerd/http-metrics/Cargo.toml index 61c7eeda72..1996dd7b91 100644 --- a/linkerd/http-metrics/Cargo.toml +++ b/linkerd/http-metrics/Cargo.toml @@ -19,5 +19,5 @@ linkerd-stack = { path = "../stack" } parking_lot = "0.12" pin-project = "1" tokio = { version = "1", features = ["time"] } -tower = "0.4" +tower = "0.4.13" tracing = "0.1" diff --git a/linkerd/proxy/api-resolve/Cargo.toml b/linkerd/proxy/api-resolve/Cargo.toml index 3ec57bb98e..4c94c712f5 100644 --- a/linkerd/proxy/api-resolve/Cargo.toml +++ b/linkerd/proxy/api-resolve/Cargo.toml @@ -23,5 +23,5 @@ http-body = "0.4" pin-project = "1" prost = "0.10" tonic = { version = "0.7", default-features = false } -tower = { version = "0.4", default-features = false } +tower = { version = "0.4.13", default-features = false } tracing = "0.1" diff --git a/linkerd/proxy/core/Cargo.toml b/linkerd/proxy/core/Cargo.toml index 4e1b434e8c..3f8e888d4a 100644 --- a/linkerd/proxy/core/Cargo.toml +++ b/linkerd/proxy/core/Cargo.toml @@ -12,4 +12,4 @@ Core interfaces needed to implement proxy components [dependencies] futures = { version = "0.3", default-features = false } linkerd-error = { path = "../../error" } -tower = { version = "0.4", default-features = false } +tower = { version = "0.4.13", default-features = false } diff --git a/linkerd/proxy/discover/Cargo.toml b/linkerd/proxy/discover/Cargo.toml index c1819bf32b..6b7087b8a8 100644 --- a/linkerd/proxy/discover/Cargo.toml +++ b/linkerd/proxy/discover/Cargo.toml @@ -17,11 +17,11 @@ linkerd-proxy-core = { path = "../core" } linkerd-stack = { path = "../../stack" } tokio = { version = "1", features = ["rt", "sync", "time"] } tokio-util = "0.7" -tower = { version = "0.4", features = ["discover"] } +tower = { version = "0.4.13", features = ["discover"] } tracing = "0.1" pin-project = "1" [dev-dependencies] async-stream = "0.3" tokio = { version = "1", features = ["macros"] } -tower = { version = "0.4", default-features = false, features = ["discover", "util"] } +tower = { version = "0.4.13", default-features = false, features = ["discover", "util"] } diff --git a/linkerd/proxy/dns-resolve/Cargo.toml b/linkerd/proxy/dns-resolve/Cargo.toml index 180361ef2d..fe9d82d73f 100644 --- a/linkerd/proxy/dns-resolve/Cargo.toml +++ b/linkerd/proxy/dns-resolve/Cargo.toml @@ -18,5 +18,5 @@ linkerd-proxy-core = { path = "../core" } linkerd-stack = { path = "../../stack" } tokio = { version = "1", features = ["sync"] } tokio-stream = { version = "0.1", features = ["sync"] } -tower = "0.4" +tower = "0.4.13" tracing = "0.1" diff --git a/linkerd/proxy/http/Cargo.toml b/linkerd/proxy/http/Cargo.toml index 6f26f75a50..2a1e8094de 100644 --- a/linkerd/proxy/http/Cargo.toml +++ b/linkerd/proxy/http/Cargo.toml @@ -31,7 +31,7 @@ linkerd-stack = { path = "../../stack" } rand = "0.8" thiserror = "1" tokio = { version = "1", features = ["time", "rt"] } -tower = { version = "0.4", default-features = false, features = ["balance", "load", "discover"] } +tower = { version = "0.4.13", default-features = false, features = ["balance", "load", "discover"] } tracing = "0.1" try-lock = "0.2" pin-project = "1" diff --git a/linkerd/proxy/resolve/Cargo.toml b/linkerd/proxy/resolve/Cargo.toml index b997674cd8..f9fd8d3f7c 100644 --- a/linkerd/proxy/resolve/Cargo.toml +++ b/linkerd/proxy/resolve/Cargo.toml @@ -14,6 +14,6 @@ futures = { version = "0.3", default-features = false } linkerd-error = { path = "../../error" } linkerd-proxy-core = { path = "../core" } thiserror = "1" -tower = "0.4" +tower = "0.4.13" tracing = "0.1" pin-project = "1" diff --git a/linkerd/proxy/tap/Cargo.toml b/linkerd/proxy/tap/Cargo.toml index 8354a9db62..35b57744f7 100644 --- a/linkerd/proxy/tap/Cargo.toml +++ b/linkerd/proxy/tap/Cargo.toml @@ -23,7 +23,7 @@ parking_lot = "0.12" rand = { version = "0.8" } thiserror = "1" tokio = { version = "1", features = ["time"] } -tower = { version = "0.4", default-features = false } +tower = { version = "0.4.13", default-features = false } tonic = { version = "0.7", default-features = false } tracing = "0.1" pin-project = "1" diff --git a/linkerd/proxy/tcp/Cargo.toml b/linkerd/proxy/tcp/Cargo.toml index 95daf0206a..8ace638442 100644 --- a/linkerd/proxy/tcp/Cargo.toml +++ b/linkerd/proxy/tcp/Cargo.toml @@ -14,5 +14,5 @@ linkerd-error = { path = "../../error" } linkerd-stack = { path = "../../stack" } rand = "0.8" tokio = { version = "1" } -tower = { version = "0.4", default-features = false, features = ["balance", "load", "discover"] } +tower = { version = "0.4.13", default-features = false, features = ["balance", "load", "discover"] } pin-project = "1" diff --git a/linkerd/reconnect/Cargo.toml b/linkerd/reconnect/Cargo.toml index 6b280cfc15..2cd8d42499 100644 --- a/linkerd/reconnect/Cargo.toml +++ b/linkerd/reconnect/Cargo.toml @@ -10,7 +10,7 @@ publish = false linkerd-error = { path = "../error" } linkerd-stack = { path = "../stack" } futures = { version = "0.3", default-features = false } -tower = { version = "0.4", default-features = false } +tower = { version = "0.4.13", default-features = false } tracing = "0.1" pin-project = "1" diff --git a/linkerd/retry/Cargo.toml b/linkerd/retry/Cargo.toml index 9f20307191..ad7076ac41 100644 --- a/linkerd/retry/Cargo.toml +++ b/linkerd/retry/Cargo.toml @@ -10,5 +10,5 @@ publish = false futures = { version = "0.3", default-features = false } linkerd-error = { path = "../error" } linkerd-stack = { path = "../stack" } -tower = { version = "0.4", default-features = false, features = ["retry"] } +tower = { version = "0.4.13", default-features = false, features = ["retry"] } tracing = "0.1" diff --git a/linkerd/service-profiles/Cargo.toml b/linkerd/service-profiles/Cargo.toml index 613fddf6e1..7564ffec1d 100644 --- a/linkerd/service-profiles/Cargo.toml +++ b/linkerd/service-profiles/Cargo.toml @@ -28,7 +28,7 @@ regex = "1" tokio = { version = "1", features = ["macros", "rt", "sync", "time"] } tokio-stream = { version = "0.1", features = ["sync"] } tonic = { version = "0.7", default-features = false } -tower = { version = "0.4", features = ["ready-cache", "retry", "util"] } +tower = { version = "0.4.13", features = ["ready-cache", "retry", "util"] } thiserror = "1" tracing = "0.1" pin-project = "1" diff --git a/linkerd/stack/Cargo.toml b/linkerd/stack/Cargo.toml index b9eb0e8287..7d24be60b8 100644 --- a/linkerd/stack/Cargo.toml +++ b/linkerd/stack/Cargo.toml @@ -16,7 +16,7 @@ parking_lot = "0.12" pin-project = "1" thiserror = "1" tokio = { version = "1", features = ["time"] } -tower = { version = "0.4", features = ["filter", "util"] } +tower = { version = "0.4.13", features = ["filter", "util"] } tracing = "0.1" [dev-dependencies] diff --git a/linkerd/stack/metrics/Cargo.toml b/linkerd/stack/metrics/Cargo.toml index c0b83e89ce..650db030f5 100644 --- a/linkerd/stack/metrics/Cargo.toml +++ b/linkerd/stack/metrics/Cargo.toml @@ -9,5 +9,5 @@ publish = false [dependencies] linkerd-metrics = { path = "../../metrics" } parking_lot = "0.12" -tower = { version = "0.4", default-features = false } +tower = { version = "0.4.13", default-features = false } tokio = { version = "1", features = ["time"] } diff --git a/linkerd/stack/tracing/Cargo.toml b/linkerd/stack/tracing/Cargo.toml index 1e9b4f5cb4..41d6f6adac 100644 --- a/linkerd/stack/tracing/Cargo.toml +++ b/linkerd/stack/tracing/Cargo.toml @@ -10,5 +10,5 @@ publish = false futures = { version = "0.3", default-features = false } linkerd-error = { path = "../../error" } linkerd-stack = { path = ".." } -tower = "0.4" +tower = "0.4.13" tracing = "0.1" diff --git a/linkerd/tls/Cargo.toml b/linkerd/tls/Cargo.toml index 7fdd9eaef1..2fff2259a5 100644 --- a/linkerd/tls/Cargo.toml +++ b/linkerd/tls/Cargo.toml @@ -19,7 +19,7 @@ linkerd-stack = { path = "../stack" } pin-project = "1" thiserror = "1" tokio = { version = "1", features = ["macros", "time"] } -tower = "0.4" +tower = "0.4.13" tracing = "0.1" untrusted = "0.7" diff --git a/linkerd/trace-context/Cargo.toml b/linkerd/trace-context/Cargo.toml index 0c4f284d3e..0b2148658b 100644 --- a/linkerd/trace-context/Cargo.toml +++ b/linkerd/trace-context/Cargo.toml @@ -16,5 +16,5 @@ linkerd-error = { path = "../error" } linkerd-stack = { path = "../stack" } rand = "0.8" thiserror = "1" -tower = { version = "0.4", default-features = false, features = ["util"] } +tower = { version = "0.4.13", default-features = false, features = ["util"] } tracing = "0.1"