From e4e76bae42de113cc70fbe0a3ddf9fa2defaadff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 05:44:56 +0000 Subject: [PATCH] Bump tower from 0.4.13 to 0.5.0 Bumps [tower](https://github.com/tower-rs/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) --- updated-dependencies: - dependency-name: tower dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 +++++++++++++++--- crates/utiles/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4cbbf449..724d06db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -248,7 +248,7 @@ dependencies = [ "serde_urlencoded", "sync_wrapper 1.0.1", "tokio", - "tower", + "tower 0.4.13", "tower-layer", "tower-service", "tracing", @@ -2811,6 +2811,18 @@ dependencies = [ "tracing", ] +[[package]] +name = "tower" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36b837f86b25d7c0d7988f00a54e74739be6477f2aac6201b8f429a7569991b7" +dependencies = [ + "pin-project-lite", + "tokio", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-http" version = "0.5.2" @@ -2827,7 +2839,7 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower", + "tower 0.4.13", "tower-layer", "tower-service", "tracing", @@ -2991,7 +3003,7 @@ dependencies = [ "time", "tokio", "tokio-stream", - "tower", + "tower 0.5.0", "tower-http", "tracing", "tracing-subscriber", diff --git a/crates/utiles/Cargo.toml b/crates/utiles/Cargo.toml index bc5249b1..f8601a57 100644 --- a/crates/utiles/Cargo.toml +++ b/crates/utiles/Cargo.toml @@ -59,7 +59,7 @@ tilejson.workspace = true time = "0.3.36" tokio = { workspace = true, features = ["fs"] } tokio-stream.workspace = true -tower = { version = "0.4.13", features = ["timeout"] } +tower = { version = "0.5.0", features = ["timeout"] } tower-http = { version = "0.5.1", features = ["trace", "timeout", "add-extension", "util", "request-id", "compression-gzip", "compression-zstd", "async-compression"] } tracing.workspace = true tracing-subscriber = { workspace = true, features = ["fmt", "json", "env-filter", "chrono"] }