From efce6dc5afda9aef6632cf860d36790e450d60c3 Mon Sep 17 00:00:00 2001 From: Cameron Bytheway Date: Wed, 16 Oct 2024 12:43:40 -0600 Subject: [PATCH] bindings: pin openssl crate to 0.10.66 --- bindings/rust/s2n-tls/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bindings/rust/s2n-tls/Cargo.toml b/bindings/rust/s2n-tls/Cargo.toml index a64429a4a80..3decfc07995 100644 --- a/bindings/rust/s2n-tls/Cargo.toml +++ b/bindings/rust/s2n-tls/Cargo.toml @@ -27,7 +27,9 @@ hex = "0.4" [dev-dependencies] futures-test = "0.3" -openssl = "0.10" +# The openssl crate broke MSRV with 0.10.67 +# TODO unpin this once fixed - https://github.com/sfackler/rust-openssl/issues/2317 +openssl = "<0.10.67" openssl-sys = "0.9" foreign-types = "0.3" temp-env = "0.3"