diff --git a/Cargo.lock b/Cargo.lock index 5469b6a..251a332 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -669,7 +669,7 @@ dependencies = [ "tokio-util", "toml 0.8.23", "tower", - "tower-http", + "tower-http 0.6.11", "tracing", "uuid", ] @@ -1328,7 +1328,7 @@ dependencies = [ "toml 0.8.23", "toml_edit", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -3400,7 +3400,7 @@ dependencies = [ "tokio-rustls 0.26.4", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -3441,7 +3441,7 @@ dependencies = [ "tokio", "tokio-rustls 0.26.4", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -4529,6 +4529,24 @@ name = "tower-http" version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags 2.11.1", + "bytes", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "async-compression", "bitflags 2.11.1", @@ -4546,11 +4564,9 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", "tracing", - "url", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 8b63707..7d99505 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ multer = "3.1" # HTTP server axum = { version = "0.8", features = ["macros", "json", "multipart"] } tower = { version = "0.5", features = ["util", "timeout", "limit"] } -tower-http = { version = "0.6", features = ["cors", "trace", "compression-gzip", "fs"] } +tower-http = { version = "0.7", features = ["cors", "trace", "compression-gzip", "fs"] } # CLI framework for versioned API server hosting cli-framework = { git = "https://github.com/aroff/cli-framework", rev = "76a83e0d57e88b55e5f8c44fd3dffe1444443924", default-features = false, features = ["api-server"] }