From 56b9922b553fcab24bf40c2a019f0fd04c7126c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 13:13:25 +0000 Subject: [PATCH] chore(deps): bump cookie from 0.17.0 to 0.18.1 in /backend Bumps [cookie](https://github.com/SergioBenitez/cookie-rs) from 0.17.0 to 0.18.1. - [Changelog](https://github.com/rwf2/cookie-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/SergioBenitez/cookie-rs/compare/0.17.0...0.18.1) --- updated-dependencies: - dependency-name: cookie dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- backend/Cargo.lock | 14 ++------------ backend/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 13 deletions(-) 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"