diff --git a/Cargo.lock b/Cargo.lock index 68fc2fc..123af4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -291,7 +291,7 @@ dependencies = [ "tokio-stream", "tonic", "tonic-reflection", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", ] @@ -316,7 +316,7 @@ dependencies = [ "tokio-stream", "tonic", "tonic-reflection", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", ] @@ -1331,7 +1331,7 @@ dependencies = [ "tonic-reflection", "tonic-web", "tower 0.4.13", - "tower-http", + "tower-http 0.7.0", "tracing", ] @@ -1374,7 +1374,7 @@ dependencies = [ "serde_json", "thiserror", "tokio", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "walkdir", @@ -2038,7 +2038,7 @@ dependencies = [ "sync_wrapper", "tokio", "tower 0.5.3", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -2729,6 +2729,24 @@ name = "tower-http" version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower 0.5.3", + "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 = [ "bitflags", "bytes", @@ -2745,11 +2763,9 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower 0.5.3", "tower-layer", "tower-service", "tracing", - "url", ] [[package]] diff --git a/backend/bins/bin_console/Cargo.toml b/backend/bins/bin_console/Cargo.toml index f626e41..ff6b9a7 100644 --- a/backend/bins/bin_console/Cargo.toml +++ b/backend/bins/bin_console/Cargo.toml @@ -26,7 +26,7 @@ tracing = { workspace = true } ## --- Library Dependencies axum = { version = "0.7", features = ["macros"] } -tower-http = { version = "0.6", features = ["fs", "trace"] } # fs for static files +tower-http = { version = "0.7", features = ["fs", "trace"] } # fs for static files tracing-subscriber = { version = "0.3", features = ["env-filter"] } [dev-dependencies] diff --git a/backend/bins/bin_frontend/Cargo.toml b/backend/bins/bin_frontend/Cargo.toml index f8aeb1b..54e7ab4 100644 --- a/backend/bins/bin_frontend/Cargo.toml +++ b/backend/bins/bin_frontend/Cargo.toml @@ -28,7 +28,7 @@ tracing = { workspace = true } ## --- Library Dependencies axum = { version = "0.7", features = ["macros"] } -tower-http = { version = "0.6", features = ["fs", "trace"] } # fs for static files +tower-http = { version = "0.7", features = ["fs", "trace"] } # fs for static files tracing-subscriber = { version = "0.3", features = ["env-filter"] } [dev-dependencies] diff --git a/backend/libs/lib_rpc/Cargo.toml b/backend/libs/lib_rpc/Cargo.toml index c39e4ef..30ce559 100644 --- a/backend/libs/lib_rpc/Cargo.toml +++ b/backend/libs/lib_rpc/Cargo.toml @@ -35,7 +35,7 @@ tracing = { workspace = true } http = "1" ipnet = { version = "2" } tower = { version = "0.4" } -tower-http = { version = "0.6", features = ["cors"] } +tower-http = { version = "0.7", features = ["cors"] } [build-dependencies] tonic-build = { workspace = true } diff --git a/backend/libs/lib_web/Cargo.toml b/backend/libs/lib_web/Cargo.toml index a48f4d6..a863ff2 100644 --- a/backend/libs/lib_web/Cargo.toml +++ b/backend/libs/lib_web/Cargo.toml @@ -24,7 +24,7 @@ tracing = { workspace = true } ## --- Library Dependencies axum = { version = "0.7", features = ["macros"] } -tower-http = { version = "0.6", features = ["fs", "trace"] } # fs for static files +tower-http = { version = "0.7", features = ["fs", "trace"] } # fs for static files tracing-subscriber = { version = "0.3", features = ["env-filter"] } [build-dependencies]