From dac48d8985bbac4680537edcef97b488d203e18b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 15:40:24 +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 | 45 ++++++++++++++++-------------------- Cargo.toml | 4 ++-- lib/vector-stream/Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 28 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ff9e1d6436ef6..adcf304d1627a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1492,7 +1492,7 @@ dependencies = [ "serde", "sync_wrapper 0.1.2", "tokio", - "tower", + "tower 0.4.13", "tower-layer", "tower-service", ] @@ -1519,7 +1519,7 @@ dependencies = [ "rustversion", "serde", "sync_wrapper 1.0.1", - "tower", + "tower 0.4.13", "tower-layer", "tower-service", ] @@ -4241,7 +4241,7 @@ dependencies = [ "tokio-stream", "tonic 0.11.0", "tonic-build 0.9.2", - "tower", + "tower 0.4.13", ] [[package]] @@ -4693,12 +4693,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "http-range-header" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f" - [[package]] name = "http-serde" version = "1.1.3" @@ -5611,8 +5605,8 @@ dependencies = [ "thiserror 1.0.68", "tokio", "tokio-util", - "tower", - "tower-http 0.5.2", + "tower 0.4.13", + "tower-http", "tracing 0.1.41", ] @@ -10563,7 +10557,7 @@ dependencies = [ "tokio", "tokio-rustls 0.25.0", "tokio-stream", - "tower", + "tower 0.4.13", "tower-layer", "tower-service", "tracing 0.1.41", @@ -10594,7 +10588,7 @@ dependencies = [ "socket2 0.5.8", "tokio", "tokio-stream", - "tower", + "tower 0.4.13", "tower-layer", "tower-service", "tracing 0.1.41", @@ -10647,20 +10641,17 @@ dependencies = [ ] [[package]] -name = "tower-http" -version = "0.4.4" +name = "tower" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" +checksum = "36b837f86b25d7c0d7988f00a54e74739be6477f2aac6201b8f429a7569991b7" dependencies = [ - "async-compression", - "bitflags 2.8.0", - "bytes 1.10.1", "futures-core", "futures-util", - "http 0.2.9", - "http-body 0.4.5", - "http-range-header", + "indexmap 2.8.0", "pin-project-lite", + "slab", + "sync_wrapper 0.1.2", "tokio", "tokio-util", "tower-layer", @@ -10674,14 +10665,18 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ + "async-compression", "base64 0.21.7", "bitflags 2.8.0", "bytes 1.10.1", + "futures-core", "http 1.1.0", "http-body 1.0.0", "http-body-util", "mime", "pin-project-lite", + "tokio", + "tokio-util", "tower-layer", "tower-service", "tracing 0.1.41", @@ -11468,8 +11463,8 @@ dependencies = [ "toml", "tonic 0.11.0", "tonic-build 0.11.0", - "tower", - "tower-http 0.4.4", + "tower 0.5.0", + "tower-http", "tower-test", "tracing 0.1.41", "tracing-core 0.1.33", @@ -11755,7 +11750,7 @@ dependencies = [ "rand_distr", "tokio", "tokio-util", - "tower", + "tower 0.5.0", "tracing 0.1.41", "twox-hash", "vector-common", diff --git a/Cargo.toml b/Cargo.toml index 5c319a6e6d993..8346fa9b3cb13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -256,8 +256,8 @@ azure_storage_blobs = { version = "0.21", 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 bfdf7de0c87d2..87f95af5e9973 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.44.1", 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 = "2.1.0", default-features = false, features = ["xxhash64"] } vector-common = { path = "../vector-common" }