Skip to content

Commit f97b7c1

Browse files
authored
Merge pull request #34 from JohnTitor/upd-deps
Upgrade `hmac` and `sha2` dependencies
2 parents 5f7f472 + d8183f4 commit f97b7c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ authors = [
1818
async-trait = "0.1.50"
1919
rand = "0.8.3"
2020
base64 = "0.13.0"
21-
sha2 = "0.9.5"
22-
hmac = "0.11.0"
21+
sha2 = "0.10.2"
22+
hmac = "0.12.1"
2323
serde_json = "1.0.64"
2424
bincode = "1.3.3"
2525
anyhow = "1.0.40"

src/session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use std::{
1919
/// and read exactly once in order to set the cookie value.
2020
///
2121
/// ## Change tracking session tracks whether any of its inner data
22-
/// was changed since it was last serialized. Any sessoin store that
22+
/// was changed since it was last serialized. Any session store that
2323
/// does not undergo a serialization-deserialization cycle must call
2424
/// [`Session::reset_data_changed`] in order to reset the change tracker on
2525
/// an individual record.

0 commit comments

Comments
 (0)