From 436df7355f7a5e987c48c8ff5a39046d278fc2a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 05:43:18 +0000 Subject: [PATCH] build(deps): bump tower-http from 0.5.2 to 0.6.0 Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.5.2 to 0.6.0. - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.5.2...tower-http-0.6.0) --- updated-dependencies: - dependency-name: tower-http dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 ++--- handlers/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) 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"