From c454e37a1c23f38dc339ba8f5f2536b9f0e8f6d9 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Sun, 12 Feb 2023 08:26:37 +0100 Subject: [PATCH] Update to cookie 0.17 (#1747) --- axum-extra/CHANGELOG.md | 2 ++ axum-extra/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index 6a800af1..a545d34b 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -10,9 +10,11 @@ and this project adheres to [Semantic Versioning]. - **added:** Add `option_layer` for converting an `Option` into a `Layer` ([#1696]) - **added:** Implement `Layer` and `Service` for `Either` ([#1696]) - **added:** Add `TypedPath::with_query_params` ([#1744]) +- **breaking:** Update to [`cookie`] 0.17 [#1696]: https://github.com/tokio-rs/axum/pull/1696 [#1744]: https://github.com/tokio-rs/axum/pull/1744 +[`cookie`]: https://crates.io/crates/cookie # 0.4.2 (02. December, 2022) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 8758b8fc..9206690f 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -49,7 +49,7 @@ tower-service = "0.3" # optional dependencies axum-macros = { path = "../axum-macros", version = "0.3.1", optional = true } -cookie = { package = "cookie", version = "0.16", features = ["percent-encode"], optional = true } +cookie = { package = "cookie", version = "0.17", features = ["percent-encode"], optional = true } form_urlencoded = { version = "1.1.0", optional = true } percent-encoding = { version = "2.1", optional = true } prost = { version = "0.11", optional = true }