diff --git a/Cargo.lock b/Cargo.lock index 25ae0054..f086a21f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1587,16 +1587,6 @@ version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" -[[package]] -name = "iri-string" -version = "0.7.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" -dependencies = [ - "memchr", - "serde", -] - [[package]] name = "is_terminal_polyfill" version = "1.70.2" @@ -1877,7 +1867,7 @@ dependencies = [ "tokio-stream", "tokio-test", "tower", - "tower-http", + "tower-http 0.7.0", "tree-sitter", "tree-sitter-rust", "windows-sys 0.61.2", @@ -2650,7 +2640,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -3474,9 +3464,27 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.8" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags 2.11.0", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-http" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "async-compression", "bitflags 2.11.0", @@ -3488,17 +3496,14 @@ dependencies = [ "http-body-util", "http-range-header", "httpdate", - "iri-string", "mime", "mime_guess", "percent-encoding", "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", - "tracing", ] [[package]] diff --git a/m1nd-mcp/Cargo.toml b/m1nd-mcp/Cargo.toml index 2b4dcaf4..d5452d35 100644 --- a/m1nd-mcp/Cargo.toml +++ b/m1nd-mcp/Cargo.toml @@ -56,7 +56,7 @@ tree-sitter-rust = "0.24" # HTTP server (behind "serve" feature) axum = { version = "0.8", optional = true } -tower-http = { version = "0.6", features = ["cors", "fs", "compression-gzip"], optional = true } +tower-http = { version = "0.7", features = ["cors", "fs", "compression-gzip"], optional = true } rust-embed = { version = "8", optional = true } mime_guess = { version = "2", optional = true } tokio-stream = { version = "0.1", features = ["sync"], optional = true }