Skip to content

Commit

Permalink
Merge pull request #34 from JohnTitor/upd-deps
Browse files Browse the repository at this point in the history
Upgrade `hmac` and `sha2` dependencies
  • Loading branch information
yoshuawuyts committed Jun 16, 2022
2 parents 5f7f472 + d8183f4 commit f97b7c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/session.rs
Expand Up @@ -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.
Expand Down

0 comments on commit f97b7c1

Please sign in to comment.