From 1a2bb8e0855f8c761382a75cab91c043de2fc726 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 16 Jun 2022 21:37:37 +0900 Subject: [PATCH 1/3] Upgrade `hmac` to 0.12.1 Signed-off-by: Yuki Okushi --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1108416..6cc2566 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ async-trait = "0.1.50" rand = "0.8.3" base64 = "0.13.0" sha2 = "0.9.5" -hmac = "0.11.0" +hmac = "0.12.1" serde_json = "1.0.64" bincode = "1.3.3" anyhow = "1.0.40" From 008a0ae7269ddf2cac03e5dc4017a5c689402072 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 16 Jun 2022 21:39:17 +0900 Subject: [PATCH 2/3] Upgrade `sha2` to 0.10.2 Signed-off-by: Yuki Okushi --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6cc2566..93636eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ authors = [ async-trait = "0.1.50" rand = "0.8.3" base64 = "0.13.0" -sha2 = "0.9.5" +sha2 = "0.10.2" hmac = "0.12.1" serde_json = "1.0.64" bincode = "1.3.3" From d8183f432f5d691f4c31a95228e287ef68701154 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 16 Jun 2022 21:48:28 +0900 Subject: [PATCH 3/3] Fix a typo Signed-off-by: Yuki Okushi --- src/session.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session.rs b/src/session.rs index d0c31b2..16b4162 100644 --- a/src/session.rs +++ b/src/session.rs @@ -19,7 +19,7 @@ use std::{ /// and read exactly once in order to set the cookie value. /// /// ## Change tracking session tracks whether any of its inner data -/// was changed since it was last serialized. Any sessoin store that +/// was changed since it was last serialized. Any session store that /// does not undergo a serialization-deserialization cycle must call /// [`Session::reset_data_changed`] in order to reset the change tracker on /// an individual record.