From c0429871fdf05b6971aabd5ece58e5c5b5bcae16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Mar 2023 14:19:03 +0000 Subject: [PATCH] Update cookie requirement from 0.15 to 0.17 Updates the requirements on [cookie](https://github.com/SergioBenitez/cookie-rs) to permit the latest version. - [Release notes](https://github.com/SergioBenitez/cookie-rs/releases) - [Changelog](https://github.com/SergioBenitez/cookie-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/SergioBenitez/cookie-rs/compare/0.15.0...0.17.0) --- updated-dependencies: - dependency-name: cookie dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/cookies/introduction/Cargo.toml | 2 +- examples/sessions/custom_data_type/Cargo.toml | 2 +- examples/sessions/introduction/Cargo.toml | 2 +- gotham/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/cookies/introduction/Cargo.toml b/examples/cookies/introduction/Cargo.toml index 97724d08..4eb43022 100644 --- a/examples/cookies/introduction/Cargo.toml +++ b/examples/cookies/introduction/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" [dependencies] gotham = { path = "../../../gotham" } -cookie = "0.15" +cookie = "0.17" diff --git a/examples/sessions/custom_data_type/Cargo.toml b/examples/sessions/custom_data_type/Cargo.toml index d4d689a2..c7fb36bb 100644 --- a/examples/sessions/custom_data_type/Cargo.toml +++ b/examples/sessions/custom_data_type/Cargo.toml @@ -9,6 +9,6 @@ edition = "2018" [dependencies] gotham = { path = "../../../gotham" } -cookie = "0.15" +cookie = "0.17" serde = { version = "1.0", features = ["derive"] } time = { version = "0.3.0", features = ["formatting", "local-offset"] } diff --git a/examples/sessions/introduction/Cargo.toml b/examples/sessions/introduction/Cargo.toml index acc56c02..f2ede3b0 100644 --- a/examples/sessions/introduction/Cargo.toml +++ b/examples/sessions/introduction/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" [dependencies] gotham = { path = "../../../gotham" } -cookie = "0.15" +cookie = "0.17" diff --git a/gotham/Cargo.toml b/gotham/Cargo.toml index eb97aa17..a9aa6123 100644 --- a/gotham/Cargo.toml +++ b/gotham/Cargo.toml @@ -33,7 +33,7 @@ anyhow = "1.0" base64 = "0.21" bincode = { version = "1.0", optional = true } bytes = "1.0" -cookie = "0.15" +cookie = "0.17" futures-util = "0.3.14" httpdate = "1.0" hyper = { version = "0.14.12", features = ["http1", "runtime", "server", "stream"] }