diff --git a/bots/echidnabot/Cargo.lock b/bots/echidnabot/Cargo.lock index 011080a3..82d851b6 100644 --- a/bots/echidnabot/Cargo.lock +++ b/bots/echidnabot/Cargo.lock @@ -1150,7 +1150,7 @@ dependencies = [ "tokio-test", "toml", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "urlencoding", @@ -2589,7 +2589,7 @@ dependencies = [ "snafu", "tokio", "tower", - "tower-http", + "tower-http 0.6.11", "tracing", "url", "web-time", @@ -3212,7 +3212,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -4292,6 +4292,23 @@ dependencies = [ "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.0", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", "uuid", ] diff --git a/bots/echidnabot/Cargo.toml b/bots/echidnabot/Cargo.toml index 1bfddc29..853df282 100644 --- a/bots/echidnabot/Cargo.toml +++ b/bots/echidnabot/Cargo.toml @@ -28,7 +28,7 @@ tokio = { version = "1.52.3", features = ["full"] } # HTTP framework axum = { version = "0.8.9", features = ["macros"] } tower = "0.5.3" -tower-http = { version = "0.6.11", features = ["cors", "trace", "request-id"] } +tower-http = { version = "0.7.0", features = ["cors", "trace", "request-id"] } # GraphQL async-graphql = { version = "7.2.1", features = ["uuid", "chrono"] }