From e2bd4eedca0df61a67cefe4f6ce1febfd358134b Mon Sep 17 00:00:00 2001 From: Sam Clark <3758302+goatgoose@users.noreply.github.com> Date: Wed, 24 Apr 2024 19:02:09 -0400 Subject: [PATCH] chore(bindings): Pin `zeroize` to avoid MSRV increase (#4519) --- bindings/rust/s2n-tls-sys/templates/Cargo.template | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/rust/s2n-tls-sys/templates/Cargo.template b/bindings/rust/s2n-tls-sys/templates/Cargo.template index 3b992645f48..23c00d68315 100644 --- a/bindings/rust/s2n-tls-sys/templates/Cargo.template +++ b/bindings/rust/s2n-tls-sys/templates/Cargo.template @@ -45,3 +45,4 @@ cc = { version = "1.0", features = ["parallel"] } jobserver = "=0.1.26" # newer versions require rust 1.66, see https://github.com/aws/s2n-tls/issues/4241 home = "=0.5.5" # newer versions require rust 1.70, see https://github.com/aws/s2n-tls/issues/4395 regex = "=1.9.6" # newer versions require rust 1.65, see https://github.com/aws/s2n-tls/issues/4242 +zeroize = "=1.7.0" # newer versions require rust 1.72, see https://github.com/aws/s2n-tls/issues/4518