diff --git a/Cargo.lock b/Cargo.lock index e666eec24..b960681a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2307,9 +2307,9 @@ dependencies = [ [[package]] name = "tower" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf0aa6dfc29148c3826708dabbfa83c121eeb84df4d1468220825e3a33651687" +checksum = "f60422bc7fefa2f3ec70359b8ff1caff59d785877eb70595904605bcc412470f" dependencies = [ "futures-core", "futures-util", diff --git a/hyper-balance/Cargo.toml b/hyper-balance/Cargo.toml index 26da20668..d7426238c 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.7", default-features = false, features = ["load"] } +tower = { version = "0.4.8", 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 fb7c24280..24a735de9 100644 --- a/linkerd/app/Cargo.toml +++ b/linkerd/app/Cargo.toml @@ -30,5 +30,5 @@ thiserror = "1.0" tokio = { version = "1", features = ["rt"] } tokio-stream = { version = "0.1.6", features = ["time", "sync"] } tonic = { version = "0.4", default-features = false, features = ["prost"] } -tower = "0.4.7" +tower = "0.4.8" tracing = "0.1.26" diff --git a/linkerd/app/core/Cargo.toml b/linkerd/app/core/Cargo.toml index 883acaa2d..bacd370a1 100644 --- a/linkerd/app/core/Cargo.toml +++ b/linkerd/app/core/Cargo.toml @@ -71,7 +71,7 @@ tracing = "0.1.26" pin-project = "1" [dependencies.tower] -version = "0.4.7" +version = "0.4.8" default-features = false features = [ "buffer", diff --git a/linkerd/app/gateway/Cargo.toml b/linkerd/app/gateway/Cargo.toml index 9ef21fc80..8c80bc6f5 100644 --- a/linkerd/app/gateway/Cargo.toml +++ b/linkerd/app/gateway/Cargo.toml @@ -15,12 +15,12 @@ linkerd-app-inbound = { path = "../inbound" } linkerd-app-outbound = { path = "../outbound" } thiserror = "1.0" tokio = { version = "1", features = ["sync"] } -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } tracing = "0.1.26" [dev-dependencies] tokio = { version = "1", features = ["rt", "macros"] } tokio-test = "0.4" -tower = { version = "0.4.7", default-features = false, features = ["util"] } +tower = { version = "0.4.8", 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 75c9821eb..eb3c32ad2 100644 --- a/linkerd/app/inbound/Cargo.toml +++ b/linkerd/app/inbound/Cargo.toml @@ -17,7 +17,7 @@ indexmap = "1.6" linkerd-app-core = { path = "../core" } thiserror = "1.0" tokio = { version = "1", features = ["sync"] } -tower = { version = "0.4.7", features = ["util"] } +tower = { version = "0.4.8", features = ["util"] } tracing = "0.1.26" [target.'cfg(fuzzing)'.dependencies] diff --git a/linkerd/app/integration/Cargo.toml b/linkerd/app/integration/Cargo.toml index ec2ed7227..659d2ceef 100644 --- a/linkerd/app/integration/Cargo.toml +++ b/linkerd/app/integration/Cargo.toml @@ -35,7 +35,7 @@ rustls = "0.19" tokio = { version = "1", features = ["io-util", "net", "rt", "macros"] } tokio-stream = { version = "0.1.6", features = ["sync"] } tokio-rustls = "0.22" -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } tonic = { version = "0.4", default-features = false } tracing = "0.1.26" webpki = "0.21" diff --git a/linkerd/app/outbound/Cargo.toml b/linkerd/app/outbound/Cargo.toml index cb77f2946..faaf5ce6e 100644 --- a/linkerd/app/outbound/Cargo.toml +++ b/linkerd/app/outbound/Cargo.toml @@ -24,7 +24,7 @@ linkerd-http-retry = { path = "../../http-retry" } linkerd-identity = { path = "../../identity" } thiserror = "1.0" tokio = { version = "1", features = ["sync"] } -tower = { version = "0.4.7", features = ["util"] } +tower = { version = "0.4.8", features = ["util"] } tracing = "0.1.26" pin-project = "1" diff --git a/linkerd/app/test/Cargo.toml b/linkerd/app/test/Cargo.toml index 2d09c2b8f..07646b476 100644 --- a/linkerd/app/test/Cargo.toml +++ b/linkerd/app/test/Cargo.toml @@ -29,7 +29,7 @@ regex = "1" tokio = { version = "1", features = ["io-util", "net", "rt", "sync"]} tokio-test = "0.4" tokio-stream = { version = "0.1.6", features = ["sync"] } -tower = { version = "0.4.7", default-features = false} +tower = { version = "0.4.8", default-features = false} tracing = "0.1.26" tracing-subscriber = { version = "0.2.18", features = ["env-filter", "fmt"], default-features = false } thiserror = "1" diff --git a/linkerd/cache/Cargo.toml b/linkerd/cache/Cargo.toml index 34cb83ba4..febba73ba 100644 --- a/linkerd/cache/Cargo.toml +++ b/linkerd/cache/Cargo.toml @@ -12,7 +12,7 @@ linkerd-error = { path = "../error" } linkerd-stack = { path = "../stack" } parking_lot = "0.11" tokio = { version = "1", default-features = false, features = ["rt", "sync", "time"] } -tower = { version = "0.4.7", default-features = false, features = ["util"] } +tower = { version = "0.4.8", default-features = false, features = ["util"] } tracing = "0.1.26" [dev-dependencies] diff --git a/linkerd/concurrency-limit/Cargo.toml b/linkerd/concurrency-limit/Cargo.toml index c961d3d46..910e5e665 100644 --- a/linkerd/concurrency-limit/Cargo.toml +++ b/linkerd/concurrency-limit/Cargo.toml @@ -12,6 +12,6 @@ futures = { version = "0.3", default-features = false } linkerd-stack = { path = "../stack" } tokio = { version = "1", features = ["sync"] } tokio-util = "0.6.7" -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } tracing = "0.1.26" pin-project = "1" diff --git a/linkerd/detect/Cargo.toml b/linkerd/detect/Cargo.toml index 0b55ea065..a83bd6305 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.0" -tower = "0.4.7" +tower = "0.4.8" tracing = "0.1.26" diff --git a/linkerd/error-metrics/Cargo.toml b/linkerd/error-metrics/Cargo.toml index 5a5a1f6c8..8adb41382 100644 --- a/linkerd/error-metrics/Cargo.toml +++ b/linkerd/error-metrics/Cargo.toml @@ -11,5 +11,5 @@ publish = false futures = { version = "0.3", default-features = false } indexmap = "1.6" linkerd-metrics = { path = "../metrics" } -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } pin-project = "1" diff --git a/linkerd/error-respond/Cargo.toml b/linkerd/error-respond/Cargo.toml index b795af7fc..ce67bb013 100644 --- a/linkerd/error-respond/Cargo.toml +++ b/linkerd/error-respond/Cargo.toml @@ -10,5 +10,5 @@ publish = false [dependencies] futures = { version = "0.3", default-features = false } linkerd-error = { path = "../error" } -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } pin-project = "1" diff --git a/linkerd/http-classify/Cargo.toml b/linkerd/http-classify/Cargo.toml index 82814043b..988dbf342 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.7", default-features = false } +tower = { version = "0.4.8", default-features = false } diff --git a/linkerd/http-metrics/Cargo.toml b/linkerd/http-metrics/Cargo.toml index f049dc31d..0ca933265 100644 --- a/linkerd/http-metrics/Cargo.toml +++ b/linkerd/http-metrics/Cargo.toml @@ -17,6 +17,6 @@ linkerd-error = { path = "../error" } linkerd-http-classify = { path = "../http-classify" } linkerd-metrics = { path = "../metrics" } linkerd-stack = { path = "../stack" } -tower = "0.4.7" +tower = "0.4.8" tracing = "0.1.26" pin-project = "1" diff --git a/linkerd/opencensus/Cargo.toml b/linkerd/opencensus/Cargo.toml index 24fef6e51..64e9a9e75 100644 --- a/linkerd/opencensus/Cargo.toml +++ b/linkerd/opencensus/Cargo.toml @@ -14,7 +14,7 @@ linkerd-error = { path = "../error" } linkerd-metrics = { path = "../metrics" } opencensus-proto = { path = "../../opencensus-proto" } tonic = { version = "0.4", default-features = false, features = ["prost", "codegen"] } -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } tokio = { version = "1", features = ["macros", "sync", "time"] } tokio-stream = { version = "0.1.6", features = ["sync"] } tracing = "0.1.26" diff --git a/linkerd/proxy/api-resolve/Cargo.toml b/linkerd/proxy/api-resolve/Cargo.toml index 768aaf20a..d66b4522b 100644 --- a/linkerd/proxy/api-resolve/Cargo.toml +++ b/linkerd/proxy/api-resolve/Cargo.toml @@ -27,5 +27,5 @@ indexmap = "1.6" pin-project = "1" prost = "0.7" tonic = { version = "0.4", default-features = false } -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } tracing = "0.1.26" diff --git a/linkerd/proxy/core/Cargo.toml b/linkerd/proxy/core/Cargo.toml index ee656fb06..adef4e65e 100644 --- a/linkerd/proxy/core/Cargo.toml +++ b/linkerd/proxy/core/Cargo.toml @@ -12,5 +12,5 @@ Core interfaces needed to implement proxy components [dependencies] futures = { version = "0.3", default-features = false } linkerd-error = { path = "../../error" } -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } pin-project = "1" diff --git a/linkerd/proxy/discover/Cargo.toml b/linkerd/proxy/discover/Cargo.toml index 4a2257373..271515e6a 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 = ["sync", "time"] } tokio-util = "0.6.7" -tower = { version = "0.4.7", features = ["discover"] } +tower = { version = "0.4.8", features = ["discover"] } tracing = "0.1.26" pin-project = "1" [dev-dependencies] async-stream = "0.3" tokio = { version = "1", features = ["macros", "rt"] } -tower = { version = "0.4.7", default-features = false, features = ["discover", "util"]} +tower = { version = "0.4.8", default-features = false, features = ["discover", "util"]} diff --git a/linkerd/proxy/dns-resolve/Cargo.toml b/linkerd/proxy/dns-resolve/Cargo.toml index e9d8a6536..08e0197e9 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.6", features = ["sync"]} -tower = "0.4.7" +tower = "0.4.8" tracing = "0.1.26" diff --git a/linkerd/proxy/http/Cargo.toml b/linkerd/proxy/http/Cargo.toml index 30b7ade3e..f87233745 100644 --- a/linkerd/proxy/http/Cargo.toml +++ b/linkerd/proxy/http/Cargo.toml @@ -34,7 +34,7 @@ linkerd-timeout = { path = "../../timeout" } rand = "0.8" thiserror = "1.0" tokio = { version = "1", features = ["time", "rt"] } -tower = { version = "0.4.7", default-features = false, features = ["balance", "load", "discover"] } +tower = { version = "0.4.8", default-features = false, features = ["balance", "load", "discover"] } tracing = "0.1.26" try-lock = "0.2" pin-project = "1" diff --git a/linkerd/proxy/resolve/Cargo.toml b/linkerd/proxy/resolve/Cargo.toml index 2989935b3..26fe1084a 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.0" -tower = "0.4.7" +tower = "0.4.8" tracing = "0.1" pin-project = "1" diff --git a/linkerd/proxy/tap/Cargo.toml b/linkerd/proxy/tap/Cargo.toml index 7b42cd76d..efffb1d24 100644 --- a/linkerd/proxy/tap/Cargo.toml +++ b/linkerd/proxy/tap/Cargo.toml @@ -27,7 +27,7 @@ linkerd-tls = { path = "../../tls" } rand = { version = "0.8" } thiserror = "1.0" tokio = { version = "1", features = ["time"]} -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } tonic = { version = "0.4", default-features = false } tracing = "0.1.26" pin-project = "1" diff --git a/linkerd/proxy/tcp/Cargo.toml b/linkerd/proxy/tcp/Cargo.toml index ffd84ea86..e5ad18675 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.7", default-features = false, features = ["balance", "load", "discover"] } +tower = { version = "0.4.8", default-features = false, features = ["balance", "load", "discover"] } pin-project = "1" diff --git a/linkerd/reconnect/Cargo.toml b/linkerd/reconnect/Cargo.toml index 9c7e75b4b..1786d8fce 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.7", default-features = false } +tower = { version = "0.4.8", default-features = false } tracing = "0.1.26" pin-project = "1" diff --git a/linkerd/retry/Cargo.toml b/linkerd/retry/Cargo.toml index 6f390e3c3..eca0b7a74 100644 --- a/linkerd/retry/Cargo.toml +++ b/linkerd/retry/Cargo.toml @@ -10,5 +10,5 @@ publish = false linkerd-error = { path = "../error" } linkerd-stack = { path = "../stack" } pin-project = "1" -tower = { version = "0.4.7", default-features = false, features = ["retry"] } +tower = { version = "0.4.8", default-features = false, features = ["retry"] } tracing = "0.1.26" diff --git a/linkerd/service-profiles/Cargo.toml b/linkerd/service-profiles/Cargo.toml index b51f93f6a..ffa6e6fd2 100644 --- a/linkerd/service-profiles/Cargo.toml +++ b/linkerd/service-profiles/Cargo.toml @@ -30,7 +30,7 @@ regex = "1.5.4" tokio = { version = "1", features = ["macros", "rt", "sync", "time"] } tokio-stream = { version = "0.1", features = ["sync"] } tonic = { version = "0.4", default-features = false } -tower = { version = "0.4.7", features = [ "ready-cache", "retry", "util"] } +tower = { version = "0.4.8", features = [ "ready-cache", "retry", "util"] } thiserror = "1" tracing = "0.1.26" pin-project = "1" diff --git a/linkerd/stack/Cargo.toml b/linkerd/stack/Cargo.toml index 56a701e97..eea004516 100644 --- a/linkerd/stack/Cargo.toml +++ b/linkerd/stack/Cargo.toml @@ -15,7 +15,7 @@ futures = { version = "0.3", default-features = false } linkerd-error = { path = "../error" } pin-project = "1" tokio = { version = "1", features = ["time"] } -tower = { version = "0.4.3", features = ["filter", "util"] } +tower = { version = "0.4.8", features = ["filter", "util"] } tracing = "0.1" [dev-dependencies] diff --git a/linkerd/stack/metrics/Cargo.toml b/linkerd/stack/metrics/Cargo.toml index 4451e4f8d..09627fbf0 100644 --- a/linkerd/stack/metrics/Cargo.toml +++ b/linkerd/stack/metrics/Cargo.toml @@ -9,5 +9,5 @@ publish = false [dependencies] indexmap = "1.6" linkerd-metrics = { path = "../../metrics" } -tower = { version = "0.4.7", default-features = false } +tower = { version = "0.4.8", default-features = false } tokio = { version = "1", features = ["time"] } diff --git a/linkerd/stack/tracing/Cargo.toml b/linkerd/stack/tracing/Cargo.toml index f96db2af5..5b17f1a47 100644 --- a/linkerd/stack/tracing/Cargo.toml +++ b/linkerd/stack/tracing/Cargo.toml @@ -10,6 +10,6 @@ publish = false futures = { version = "0.3", default-features = false } linkerd-error = { path = "../../error" } linkerd-stack = { path = ".." } -tower = "0.4.7" +tower = "0.4.8" tracing = "0.1.26" pin-project = "1" diff --git a/linkerd/timeout/Cargo.toml b/linkerd/timeout/Cargo.toml index 6e84f9456..017d61b8a 100644 --- a/linkerd/timeout/Cargo.toml +++ b/linkerd/timeout/Cargo.toml @@ -14,7 +14,7 @@ thiserror = "1" tracing = "0.1.26" pin-project = "1" tokio = { version = "1", features = ["time"] } -tower = { version = "0.4.7", features = ["util", "make"] } +tower = { version = "0.4.8", features = ["util", "make"] } [dev-dependencies] tower-test = "0.4" diff --git a/linkerd/tls/Cargo.toml b/linkerd/tls/Cargo.toml index 2e1bd9163..2d063bfd6 100644 --- a/linkerd/tls/Cargo.toml +++ b/linkerd/tls/Cargo.toml @@ -20,7 +20,7 @@ rustls = "0.19" thiserror = "1.0" tokio = { version = "1", features = ["macros", "time"] } tokio-rustls = "0.22" -tower = "0.4.7" +tower = "0.4.8" tracing = "0.1.26" webpki = "0.21" untrusted = "0.7" @@ -30,4 +30,4 @@ linkerd-identity = { path = "../identity", features = ["test-util"] } linkerd-proxy-transport = { path = "../proxy/transport" } linkerd-tracing = { path = "../tracing", features = ["ansi"] } tokio = { version = "1", features = ["rt-multi-thread"] } -tower = { version = "0.4.7", default-features = false, features = ["util"] } +tower = { version = "0.4.8", default-features = false, features = ["util"] }