diff --git a/Cargo.lock b/Cargo.lock index 9bdad6f..74eea35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2105,15 +2105,14 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.5.2" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" +checksum = "41515cc9e193536d93fd0dbbea0c73819c08eca76e0b30909a325c3ec90985bb" dependencies = [ "bitflags", "bytes", "http", "http-body", - "http-body-util", "pin-project-lite", "tower-layer", "tower-service", diff --git a/handlers/Cargo.toml b/handlers/Cargo.toml index 1c32d85..f0d8695 100644 --- a/handlers/Cargo.toml +++ b/handlers/Cargo.toml @@ -9,5 +9,5 @@ databases = { path = "../databases" } parsing = { path = "../parsing" } axum = "0.7.4" serde = { version = "1.0.210", features = ["derive"] } -tower-http = { version = "0.5.1", features = ["cors"] } +tower-http = { version = "0.6.0", features = ["cors"] } tracing = "0.1.40" diff --git a/server/Cargo.toml b/server/Cargo.toml index 42a51b2..f0c7572 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -13,7 +13,7 @@ axum = { version = "0.7.4", features = ["http2", "tracing"] } chrono = "0.4.32" clap = { version = "4.5", features = ["derive"] } tokio = { version = "1.40.0", features = ["full"] } -tower-http = { version = "0.5.1", features = ["cors", "trace"] } +tower-http = { version = "0.6.0", features = ["cors", "trace"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["json"] } opentelemetry-appender-tracing = "0.5.0"