diff --git a/rust-backend/Cargo.lock b/rust-backend/Cargo.lock index 11a6085..e442e89 100644 --- a/rust-backend/Cargo.lock +++ b/rust-backend/Cargo.lock @@ -168,7 +168,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90" dependencies = [ "axum-core", - "base64 0.22.1", + "base64", "bytes", "form_urlencoded", "futures-util", @@ -216,12 +216,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - [[package]] name = "base64" version = "0.22.1" @@ -829,7 +823,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb" dependencies = [ - "base64 0.22.1", + "base64", "bytes", "headers-core", "http", @@ -963,7 +957,7 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ - "base64 0.22.1", + "base64", "bytes", "futures-channel", "futures-util", @@ -1570,7 +1564,7 @@ version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51e219e79014df21a225b1860a479e2dcd7cbd9130f4defd4bd0e191ea31d67d" dependencies = [ - "base64 0.21.7", + "base64", "chrono", "getrandom 0.2.17", "http", @@ -1604,7 +1598,7 @@ dependencies = [ "approx", "arrow-array", "axum", - "base64 0.22.1", + "base64", "chrono", "chrono-tz", "dashmap", @@ -1621,7 +1615,7 @@ dependencies = [ "thiserror 2.0.19", "time", "tokio", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", ] @@ -1662,7 +1656,7 @@ dependencies = [ "arrow-ipc", "arrow-schema", "arrow-select", - "base64 0.22.1", + "base64", "bytes", "chrono", "half", @@ -2150,7 +2144,7 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64 0.22.1", + "base64", "bytes", "futures-core", "http", @@ -2173,7 +2167,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -2927,6 +2921,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", + "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", @@ -2943,11 +2955,9 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", "tracing", - "url", ] [[package]] diff --git a/rust-backend/Cargo.toml b/rust-backend/Cargo.toml index 210dffc..4e49f28 100644 --- a/rust-backend/Cargo.toml +++ b/rust-backend/Cargo.toml @@ -28,7 +28,7 @@ statrs = "0.18" thiserror = "2.0" time = { version = "0.3", features = ["serde", "formatting", "parsing"] } tokio = { version = "1.47", features = ["macros", "rt-multi-thread", "signal", "sync", "time"] } -tower-http = { version = "0.6", features = ["cors", "fs", "trace"] } +tower-http = { version = "0.7", features = ["cors", "fs", "trace"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] }