Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jasoncolburne committed Mar 4, 2024
1 parent 7cd5453 commit 940bcd2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cesride"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
description = "Cryptographic primitives for use with Composable Event Streaming Representation (CESR)"
license = "Apache-2.0"
Expand All @@ -11,7 +11,7 @@ keywords = ["cesr", "keri", "acdc"]
[dependencies]
anyhow = "~1"
argon2 = "~0.5"
base64 = "~0.21"
base64 = "~0.22"
blake2 = "~0.10"
blake3 = "~1"
chrono = { version = "~0.4", default-features = false, features = ["clock"] }
Expand Down
2 changes: 1 addition & 1 deletion src/core/prefixer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ mod test {
let prefixer = Prefixer::new(Some(&ked), None, Some(code), None, None, None, None).unwrap();

let mut map = ked.to_map().unwrap();
map.remove("k");
map.shift_remove("k");
ked = dat!(&map);

assert!(!prefixer.verify(&ked, None).unwrap());
Expand Down
2 changes: 1 addition & 1 deletion src/core/saider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fn derive(
let mut map = sad.to_map()?;
for key in ignore.unwrap_or(&[]) {
if map.contains_key(*key) {
map.remove(*key);
map.shift_remove(*key);
}
}
let ser = dat!(&map);
Expand Down

0 comments on commit 940bcd2

Please sign in to comment.