From a945b1ff34fd7abda5803cc548e493d3eb6e7a51 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 5 Aug 2023 13:01:36 -0400 Subject: [PATCH] Use rust-openssl master temporarily --- src/rust/Cargo.lock | 9 +++------ src/rust/Cargo.toml | 4 ++++ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock index 6cadf2b184383..5e08c2fc2a21c 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -162,8 +162,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "openssl" version = "0.10.55" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d" +source = "git+https://github.com/sfackler/rust-openssl#0008d1296f628df379769505dc1ea9b33044a716" dependencies = [ "bitflags", "cfg-if", @@ -177,8 +176,7 @@ dependencies = [ [[package]] name = "openssl-macros" version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +source = "git+https://github.com/sfackler/rust-openssl#0008d1296f628df379769505dc1ea9b33044a716" dependencies = [ "proc-macro2", "quote", @@ -188,8 +186,7 @@ dependencies = [ [[package]] name = "openssl-sys" version = "0.9.90" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6" +source = "git+https://github.com/sfackler/rust-openssl#0008d1296f628df379769505dc1ea9b33044a716" dependencies = [ "cc", "libc", diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index e17a4a3d304a0..36bbd3c44a17c 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -41,3 +41,7 @@ members = [ "cryptography-x509", "cryptography-x509-validation", ] + +[patch.crates-io] +openssl = { git = "https://github.com/sfackler/rust-openssl" } +openssl-sys = { git = "https://github.com/sfackler/rust-openssl" }