diff --git a/bots/rhodibot/Cargo.lock b/bots/rhodibot/Cargo.lock index ecfac8ba..f28ac8bc 100644 --- a/bots/rhodibot/Cargo.lock +++ b/bots/rhodibot/Cargo.lock @@ -2513,7 +2513,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -2545,7 +2545,7 @@ dependencies = [ "tokio-test", "toml", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "wiremock", @@ -3077,10 +3077,26 @@ dependencies = [ "tower", "tower-layer", "tower-service", - "tracing", "url", ] +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" +dependencies = [ + "bitflags 2.11.1", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/bots/rhodibot/Cargo.toml b/bots/rhodibot/Cargo.toml index 384f42c0..f8e70d7e 100644 --- a/bots/rhodibot/Cargo.toml +++ b/bots/rhodibot/Cargo.toml @@ -20,7 +20,7 @@ tokio = { version = "1.52.3", features = ["full"] } # Web framework axum = "0.8.9" tower = "0.5.3" -tower-http = { version = "0.6.11", features = ["trace", "cors"] } +tower-http = { version = "0.7.0", features = ["trace", "cors"] } # HTTP client reqwest = { version = "0.12.28", features = ["json", "rustls-tls"], default-features = false }