From d780c0e26bc581f89f86a7ef65dfcb377a38f60e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 22:38:40 +0000 Subject: [PATCH] chore(deps): bump tower from 0.4.13 to 0.5.3 Bumps [tower](https://github.com/tower-rs/tower) from 0.4.13 to 0.5.3. - [Release notes](https://github.com/tower-rs/tower/releases) - [Commits](https://github.com/tower-rs/tower/compare/tower-0.4.13...tower-0.5.3) --- updated-dependencies: - dependency-name: tower dependency-version: 0.5.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 45 ++++-------------------------------- crates/cas-server/Cargo.toml | 2 +- crates/hub-api/Cargo.toml | 2 +- crates/web-ui/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 43 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d878ddf..c43f0cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -428,7 +428,7 @@ dependencies = [ "rustls-pki-types", "tokio", "tokio-rustls 0.26.4", - "tower 0.5.3", + "tower", "tracing", ] @@ -587,7 +587,7 @@ dependencies = [ "serde_urlencoded", "sync_wrapper", "tokio", - "tower 0.5.3", + "tower", "tower-layer", "tower-service", "tracing", @@ -745,7 +745,7 @@ dependencies = [ "shard-parser", "sqlx", "tokio", - "tower 0.4.13", + "tower", "tower-http", "tracing", "tracing-subscriber", @@ -1736,7 +1736,7 @@ dependencies = [ "serde_yaml", "sha2", "tokio", - "tower 0.4.13", + "tower", "tower-http", "tracing", "uuid", @@ -2538,26 +2538,6 @@ dependencies = [ "siphasher", ] -[[package]] -name = "pin-project" -version = "1.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517" -dependencies = [ - "pin-project-internal", -] - -[[package]] -name = "pin-project-internal" -version = "1.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "pin-project-lite" version = "0.2.17" @@ -3822,21 +3802,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "tower" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" -dependencies = [ - "futures-core", - "futures-util", - "pin-project", - "pin-project-lite", - "tower-layer", - "tower-service", - "tracing", -] - [[package]] name = "tower" version = "0.5.3" @@ -4256,7 +4221,7 @@ dependencies = [ "serde_json", "tera", "tokio", - "tower 0.4.13", + "tower", "tower-http", "tracing", "uuid", diff --git a/crates/cas-server/Cargo.toml b/crates/cas-server/Cargo.toml index 1554df6..d9b3930 100644 --- a/crates/cas-server/Cargo.toml +++ b/crates/cas-server/Cargo.toml @@ -25,7 +25,7 @@ bytes = { workspace = true } anyhow = { workspace = true } axum = { version = "0.8", features = ["json"] } -tower = { version = "0.4", features = ["util"] } +tower = { version = "0.5", features = ["util"] } tower-http = { version = "0.6", features = ["trace", "cors"] } tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "fmt"] } jsonwebtoken = { version = "10", features = ["rust_crypto"] } diff --git a/crates/hub-api/Cargo.toml b/crates/hub-api/Cargo.toml index 8a5fd4d..70c2ade 100644 --- a/crates/hub-api/Cargo.toml +++ b/crates/hub-api/Cargo.toml @@ -24,7 +24,7 @@ argon2 = "0.5" rand = "0.9" sha2 = "0.10" base64 = "0.22" -tower = "0.4" +tower = "0.5" tower-http = { version = "0.6", features = ["trace", "cors"] } http = "1" jsonwebtoken = { version = "10", features = ["rust_crypto"] } diff --git a/crates/web-ui/Cargo.toml b/crates/web-ui/Cargo.toml index 080f1dd..7f0d980 100644 --- a/crates/web-ui/Cargo.toml +++ b/crates/web-ui/Cargo.toml @@ -19,5 +19,5 @@ axum = { workspace = true } tera = "1" pulldown-cmark = "0.10" ammonia = "4" -tower = "0.4" +tower = "0.5" tower-http = { version = "0.6", features = ["fs"] }