From c86b1b273203988598bc91ecff303d12537df7f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 23:30:15 +0000 Subject: [PATCH] Bump openssl-sys from 0.9.100 to 0.9.101 in /src/rust (#10452) Bumps [openssl-sys](https://github.com/sfackler/rust-openssl) from 0.9.100 to 0.9.101. - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.100...openssl-sys-v0.9.101) --- updated-dependencies: - dependency-name: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src/rust/Cargo.lock | 4 ++-- src/rust/Cargo.toml | 2 +- src/rust/cryptography-cffi/Cargo.toml | 2 +- src/rust/cryptography-key-parsing/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) 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" }