From 4e74588101e3f9487c99b451b4f0b771ef64f36d Mon Sep 17 00:00:00 2001 From: Gowtham Suresh Kumar Date: Tue, 30 Aug 2022 12:57:32 +0100 Subject: [PATCH] Bump zeroize version Updated to 1.4.3 not 1.5.* as the rsa crate has dependencies issue Signed-off-by: Gowtham Suresh Kumar --- psa-crypto/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/psa-crypto/Cargo.toml b/psa-crypto/Cargo.toml index 9c42a71..1b161f8 100644 --- a/psa-crypto/Cargo.toml +++ b/psa-crypto/Cargo.toml @@ -14,8 +14,7 @@ repository = "https://github.com/parallaxsecond/rust-psa-crypto" psa-crypto-sys = { path = "../psa-crypto-sys", version = "0.9.0", default-features = false } log = "0.4.11" serde = { version = "1.0.115", features = ["derive"] } -# Versions 1.4.x no longer compiles with Rust version 1.46.0 -zeroize = { version = "<=1.3.0", features = ["zeroize_derive"] } +zeroize = { version = "1.4.3", features = ["zeroize_derive"] } [dev-dependencies] rsa = { version = "0.5.0", features = ["alloc"] }