From ad5b6dc83331de24ecade2c96d3ec512b50de992 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:54:06 +0000 Subject: [PATCH] build(deps): bump cookie_store from 0.21.0 to 0.21.1 Bumps [cookie_store](https://github.com/pfernie/cookie_store) from 0.21.0 to 0.21.1. - [Changelog](https://github.com/pfernie/cookie_store/blob/master/CHANGELOG.md) - [Commits](https://github.com/pfernie/cookie_store/compare/v0.21.0...v0.21.1) --- updated-dependencies: - dependency-name: cookie_store dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 +++++++++++++++++++--- crates/handlers/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f7fbf1b79..63cbd4f79 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1165,12 +1165,13 @@ dependencies = [ [[package]] name = "cookie_store" -version = "0.21.0" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4934e6b7e8419148b6ef56950d277af8561060b56afd59e2aadf98b59fce6baa" +checksum = "2eac901828f88a5241ee0600950ab981148a18f2f756900ffba1b125ca6a3ef9" dependencies = [ "cookie", - "idna 0.5.0", + "document-features", + "idna 1.0.2", "log", "publicsuffix", "serde", @@ -1639,6 +1640,15 @@ dependencies = [ "syn", ] +[[package]] +name = "document-features" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb6969eaabd2421f8a2775cfd2471a2b634372b4a25d41e3bd647b79912850a0" +dependencies = [ + "litrs", +] + [[package]] name = "dotenvy" version = "0.15.7" @@ -3123,6 +3133,12 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" +[[package]] +name = "litrs" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" + [[package]] name = "lock_api" version = "0.4.12" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 95a1339da..750bdecf5 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -107,6 +107,6 @@ zxcvbn = "3.1.0" [dev-dependencies] insta.workspace = true tracing-subscriber.workspace = true -cookie_store = "0.21.0" +cookie_store = "0.21.1" sqlx.workspace = true wiremock.workspace = true