diff --git a/server/Cargo.lock b/server/Cargo.lock index 3afa847..b06f3de 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -2262,7 +2262,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -2508,7 +2508,7 @@ dependencies = [ "tokio", "tokio-stream", "tokio-util", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -3180,10 +3180,27 @@ 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", + "bytes", + "http 1.4.2", + "http-body", + "http-body-util", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/server/Cargo.toml b/server/Cargo.toml index 948ac1c..1757a51 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" axum = { version = "0.8", features = ["ws", "macros", "multipart"] } axum-extra = { version = "0.12", features = ["typed-header"] } tokio = { version = "1", features = ["full"] } -tower-http = { version = "0.6", features = ["cors", "trace", "limit"] } +tower-http = { version = "0.7", features = ["cors", "trace", "limit"] } serde = { version = "1", features = ["derive"] } serde_json = "1" # default-features = false drops the MySQL/Postgres backends (and the transitive `rsa`