diff --git a/Cargo.toml b/Cargo.toml index 1108416..93636eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,8 +18,8 @@ authors = [ async-trait = "0.1.50" rand = "0.8.3" base64 = "0.13.0" -sha2 = "0.9.5" -hmac = "0.11.0" +sha2 = "0.10.2" +hmac = "0.12.1" serde_json = "1.0.64" bincode = "1.3.3" anyhow = "1.0.40" 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.