diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 54facad0c1..974fd7ca67 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1783,16 +1783,6 @@ version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147be55d677052dabc6b22252d5dd0fd4c29c8c27aa4f2fbef0f94aa003b406f" -[[package]] -name = "cookie" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24" -dependencies = [ - "time", - "version_check", -] - [[package]] name = "cookie" version = "0.18.1" @@ -9500,7 +9490,7 @@ checksum = "4fd0118512cf0b3768f7fcccf0bef1ae41d68f2b45edc1e77432b36c97c56c6d" dependencies = [ "async-trait", "axum-core", - "cookie 0.18.1", + "cookie", "futures-util", "http 1.2.0", "parking_lot", @@ -10506,7 +10496,7 @@ dependencies = [ "chrono", "chrono-tz 0.10.0", "const_format", - "cookie 0.17.0", + "cookie", "cron", "datafusion", "futures", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index be954faac2..b3da35b120 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -152,7 +152,7 @@ tracing = "^0" tracing-subscriber = { version = "^0", features = ["env-filter", "json"] } tracing-appender = "^0" prometheus = { version = "^0", default-features = false } -cookie = { version = "0.17.0" } +cookie = { version = "0.18.1" } phf = { version = "0.11", features = ["macros"] } rust-embed = { version = "^6", features = ["interpolate-folder-path"] } mime_guess = "^2"