Skip to content

Commit 335f0d9

Browse files
authored
chacha20: lock to zeroize <1.5 (#269)
Now that MSRV is 1.51+, this allows use of `zeroize` 1.4.
1 parent 7c86911 commit 335f0d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chacha20/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ edition = "2018"
2020
cfg-if = "1"
2121
cipher = { version = "0.3", optional = true }
2222
rand_core = { version = "0.6", optional = true, default-features = false }
23-
zeroize = { version = ">=1, <1.4", optional = true, default-features = false }
23+
zeroize = { version = ">=1, <1.5", optional = true, default-features = false }
2424

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

0 commit comments

Comments
 (0)