From 992e4ca6015ad10daf7fbd64bd730e86f6101291 Mon Sep 17 00:00:00 2001 From: trevyn <230691+trevyn@users.noreply.github.com> Date: Wed, 16 Mar 2022 20:16:11 +0200 Subject: [PATCH] crypto_box: Unpin `zeroize` version (#41) Per https://github.com/RustCrypto/utils/issues/723#issuecomment-1068081155 --- crypto_box/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto_box/Cargo.toml b/crypto_box/Cargo.toml index 89ad186..dd2551d 100644 --- a/crypto_box/Cargo.toml +++ b/crypto_box/Cargo.toml @@ -23,7 +23,7 @@ rand_core = "0.6" salsa20 = { version = "0.9", features = ["hsalsa20"] } x25519-dalek = { version = "1", default-features = false } xsalsa20poly1305 = { version = "0.8", default-features = false, features = ["rand_core"] } -zeroize = { version = ">=1, <1.5", default-features = false } +zeroize = { version = "1", default-features = false } [dependencies.serde_crate] package = "serde"