diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock index 21930a302524..6a68aa4b54cf 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -213,9 +213,9 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.100" +version = "0.9.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae94056a791d0e1217d18b6cbdccb02c61e3054fc69893607f4067e3bb0b1fd1" +checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" dependencies = [ "cc", "libc", diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index 83c6605ad453..aa533bf210c3 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -19,7 +19,7 @@ cryptography-x509-verification = { path = "cryptography-x509-verification" } cryptography-openssl = { path = "cryptography-openssl" } pem = { version = "3", default-features = false } openssl = "0.10.64" -openssl-sys = "0.9.100" +openssl-sys = "0.9.101" foreign-types-shared = "0.1" self_cell = "1" diff --git a/src/rust/cryptography-cffi/Cargo.toml b/src/rust/cryptography-cffi/Cargo.toml index 956728c7beba..44afed76d219 100644 --- a/src/rust/cryptography-cffi/Cargo.toml +++ b/src/rust/cryptography-cffi/Cargo.toml @@ -9,7 +9,7 @@ rust-version = "1.63.0" [dependencies] pyo3 = { version = "0.20", features = ["abi3"] } -openssl-sys = "0.9.100" +openssl-sys = "0.9.101" [build-dependencies] cc = "1.0.86" diff --git a/src/rust/cryptography-key-parsing/Cargo.toml b/src/rust/cryptography-key-parsing/Cargo.toml index 2922568d15ef..fdde0053df4c 100644 --- a/src/rust/cryptography-key-parsing/Cargo.toml +++ b/src/rust/cryptography-key-parsing/Cargo.toml @@ -11,5 +11,5 @@ rust-version = "1.63.0" asn1 = { version = "0.16.0", default-features = false } cfg-if = "1" openssl = "0.10.64" -openssl-sys = "0.9.100" +openssl-sys = "0.9.101" cryptography-x509 = { path = "../cryptography-x509" }