From a8ecb876fd4945fc720af016345ee9f0364a0cc1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Oct 2024 04:29:09 +0000 Subject: [PATCH] chore(deps): Bump the tower group with 2 updates Bumps the tower group with 2 updates: [tower](https://github.com/tower-rs/tower) and [tower-http](https://github.com/tower-rs/tower-http). Updates `tower` from 0.4.13 to 0.5.0 - [Release notes](https://github.com/tower-rs/tower/releases) - [Commits](https://github.com/tower-rs/tower/compare/tower-0.4.13...tower-0.5.0) Updates `tower-http` from 0.4.4 to 0.5.2 - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.4.4...tower-http-0.5.2) --- updated-dependencies: - dependency-name: tower dependency-type: direct:production update-type: version-update:semver-minor dependency-group: tower - dependency-name: tower-http dependency-type: direct:production update-type: version-update:semver-minor dependency-group: tower ... Signed-off-by: dependabot[bot] --- Cargo.lock | 61 +++++++++++++++++++++++++++++------- Cargo.toml | 4 +-- lib/vector-stream/Cargo.toml | 2 +- 3 files changed, 52 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b32da1f290a22..c45ef83931128 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1328,7 +1328,7 @@ dependencies = [ "serde", "sync_wrapper", "tokio", - "tower", + "tower 0.4.13", "tower-layer", "tower-service", ] @@ -3394,8 +3394,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2" dependencies = [ "bit-set", - "regex-automata 0.4.4", - "regex-syntax 0.8.2", + "regex-automata 0.4.8", + "regex-syntax 0.8.5", ] [[package]] @@ -3886,7 +3886,7 @@ dependencies = [ "tokio-stream", "tonic", "tonic-build 0.9.2", - "tower", + "tower 0.4.13", ] [[package]] @@ -4527,7 +4527,7 @@ dependencies = [ "pin-project-lite", "socket2 0.5.7", "tokio", - "tower", + "tower 0.4.13", "tower-service", "tracing 0.1.40", ] @@ -5040,8 +5040,8 @@ dependencies = [ "thiserror", "tokio", "tokio-util", - "tower", - "tower-http", + "tower 0.4.13", + "tower-http 0.4.4", "tracing 0.1.40", ] @@ -9696,7 +9696,7 @@ dependencies = [ "tokio", "tokio-rustls 0.25.0", "tokio-stream", - "tower", + "tower 0.4.13", "tower-layer", "tower-service", "tracing 0.1.40", @@ -9749,13 +9749,31 @@ dependencies = [ "tracing 0.1.40", ] +[[package]] +name = "tower" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36b837f86b25d7c0d7988f00a54e74739be6477f2aac6201b8f429a7569991b7" +dependencies = [ + "futures-core", + "futures-util", + "indexmap 2.5.0", + "pin-project-lite", + "slab", + "sync_wrapper", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", + "tracing 0.1.40", +] + [[package]] name = "tower-http" version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ - "async-compression", "base64 0.21.7", "bitflags 2.4.1", "bytes 1.7.1", @@ -9766,6 +9784,25 @@ dependencies = [ "http-range-header", "mime", "pin-project-lite", + "tower-layer", + "tower-service", + "tracing 0.1.40", +] + +[[package]] +name = "tower-http" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" +dependencies = [ + "async-compression", + "bitflags 2.4.1", + "bytes 1.7.1", + "futures-core", + "http 1.1.0", + "http-body 1.0.0", + "http-body-util", + "pin-project-lite", "tokio", "tokio-util", "tower-layer", @@ -10525,8 +10562,8 @@ dependencies = [ "toml", "tonic", "tonic-build 0.11.0", - "tower", - "tower-http", + "tower 0.5.0", + "tower-http 0.5.2", "tower-test", "tracing 0.1.40", "tracing-core 0.1.32", @@ -10828,7 +10865,7 @@ dependencies = [ "rand_distr", "tokio", "tokio-util", - "tower", + "tower 0.5.0", "tracing 0.1.40", "twox-hash", "vector-common", diff --git a/Cargo.toml b/Cargo.toml index 70c8c6ed2d846..9258aa8ce5fff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -223,8 +223,8 @@ azure_storage_blobs = { version = "0.17", default-features = false, optional = t opendal = {version = "0.45", default-features = false, features = ["native-tls", "services-webhdfs"], optional = true} # Tower -tower = { version = "0.4.13", default-features = false, features = ["buffer", "limit", "retry", "timeout", "util", "balance", "discover"] } -tower-http = { version = "0.4.4", default-features = false, features = ["compression-full", "decompression-gzip", "trace"]} +tower = { version = "0.5.0", default-features = false, features = ["buffer", "limit", "retry", "timeout", "util", "balance", "discover"] } +tower-http = { version = "0.5.2", default-features = false, features = ["compression-full", "decompression-gzip", "trace"]} # Serde serde.workspace = true serde-toml-merge = { version = "0.3.8", default-features = false } diff --git a/lib/vector-stream/Cargo.toml b/lib/vector-stream/Cargo.toml index c709a4cd226e9..b93cd12bb2a42 100644 --- a/lib/vector-stream/Cargo.toml +++ b/lib/vector-stream/Cargo.toml @@ -12,7 +12,7 @@ futures-util = { version = "0.3.29", default-features = false, features = ["std" pin-project.workspace = true tokio = { version = "1.40.0", default-features = false, features = ["net"] } tokio-util = { version = "0.7.0", default-features = false, features = ["time"] } -tower = { version = "0.4", default-features = false, features = ["util"] } +tower = { version = "0.5", default-features = false, features = ["util"] } tracing = { version = "0.1.34", default-features = false } twox-hash = { version = "1.6.3", default-features = false } vector-common = { path = "../vector-common" }