diff --git a/Cargo.lock b/Cargo.lock index 4c1fdfc..7626453 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1103,7 +1103,7 @@ dependencies = [ "tachys", "tokio", "tower", - "tower-http", + "tower-http 0.6.11", ] [[package]] @@ -1873,7 +1873,7 @@ dependencies = [ "tonic", "tonic-web-wasm-client", "tower", - "tower-http", + "tower-http 0.7.0", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -2459,9 +2459,34 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.10" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "http-range-header", + "httpdate", + "mime", + "mime_guess", + "percent-encoding", + "pin-project-lite", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "bitflags", "bytes", diff --git a/Cargo.toml b/Cargo.toml index e1c6d6d..8fa7f7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ leptos_axum = { version = "0.8", optional = true } axum = { version = "0.8", optional = true } tokio = { version = "1", features = ["rt-multi-thread", "time"], optional = true } tower = { version = "0.5", optional = true } -tower-http = { version = "0.6", features = ["fs"], optional = true } +tower-http = { version = "0.7", features = ["fs"], optional = true } # gRPC-Web client (browser-side). Proto types come from the standalone # `sentrix-proto` crate that the chain repo publishes — single source of