From acf541cfb73a384a420ae1eab355cd811ad11a3b Mon Sep 17 00:00:00 2001 From: Adrian Ratiu Date: Tue, 25 Oct 2022 12:42:36 +0300 Subject: [PATCH] Cargo:toml: bump cookie_store/cookie deps CookieStore added a new save_incl_expired_and_nonpersistent{,_json} API starting with v0.18.0 and if one wants to use the new API to save/load cookies which are passed to reqwest_cookie_store, the dep versions needs bumping. While at it also bump cookies to the latest minor version. Signed-off-by: Adrian Ratiu --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 88b4bac..17b57ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,8 +18,8 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] bytes = "1.0.1" -cookie = "0.16.0" -cookie_store = "0.16.0" +cookie = "0.16.1" +cookie_store = "0.18.0" reqwest = { version = "0.11.3", default-features = false, features = ["cookies"] } url = "2.2.2"