diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index da14c079..88ae715b 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -661,7 +661,7 @@ dependencies = [ "tokio", "tokio-stream", "tokio-tungstenite", - "tower-http", + "tower-http 0.7.0", "url", "uuid", "webkit2gtk", @@ -4184,7 +4184,7 @@ dependencies = [ "tokio", "tokio-native-tls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -4222,7 +4222,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -5948,6 +5948,24 @@ name = "tower-http" 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 = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "bitflags 2.11.0", "bytes", @@ -5964,10 +5982,8 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", - "url", ] [[package]] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index db7f9e01..b3994511 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -71,7 +71,7 @@ ort = { version = "2.0.0-rc.12", default-features = false, features = ["std", "n csv = { version = "1", optional = true } axum = { version = "0.8", features = ["tokio"] } axum-server = { version = "0.7", features = ["tls-rustls"] } -tower-http = { version = "0.6", features = ["fs", "cors"] } +tower-http = { version = "0.7", features = ["fs", "cors"] } subtle = "2" mime_guess = "2" tokio-stream = { version = "0.1", features = ["sync"] }