Skip to content

Commit

Permalink
chacha20: lock to zeroize <1.5 (#269)
Browse files Browse the repository at this point in the history
Now that MSRV is 1.51+, this allows use of `zeroize` 1.4.
  • Loading branch information
tarcieri authored Aug 29, 2021
1 parent 7c86911 commit 335f0d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chacha20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ edition = "2018"
cfg-if = "1"
cipher = { version = "0.3", optional = true }
rand_core = { version = "0.6", optional = true, default-features = false }
zeroize = { version = ">=1, <1.4", optional = true, default-features = false }
zeroize = { version = ">=1, <1.5", optional = true, default-features = false }

[target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dependencies]
cpufeatures = "0.2"
Expand Down

0 comments on commit 335f0d9

Please sign in to comment.