Skip to content

Commit c9ac096

Browse files
authored
Rollup merge of #86529 - cuviper:ssl3, r=Mark-Simulacrum
Add support for OpenSSL 3.0.0 This updates the `openssl` and `openssl-sys` crates to support building the toolchain with system libraries up to OpenSSL 3.0.0. This does not affect the static version used via `openssl-src` in CI builds. ref: sfackler/rust-openssl#1264
2 parents b5d4343 + 92eedb2 commit c9ac096

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -2440,9 +2440,9 @@ dependencies = [
24402440

24412441
[[package]]
24422442
name = "openssl"
2443-
version = "0.10.33"
2443+
version = "0.10.35"
24442444
source = "registry+https://github.com/rust-lang/crates.io-index"
2445-
checksum = "a61075b62a23fef5a29815de7536d940aa35ce96d18ce0cc5076272db678a577"
2445+
checksum = "549430950c79ae24e6d02e0b7404534ecf311d94cc9f861e9e4020187d13d885"
24462446
dependencies = [
24472447
"bitflags",
24482448
"cfg-if 1.0.0",
@@ -2469,9 +2469,9 @@ dependencies = [
24692469

24702470
[[package]]
24712471
name = "openssl-sys"
2472-
version = "0.9.61"
2472+
version = "0.9.65"
24732473
source = "registry+https://github.com/rust-lang/crates.io-index"
2474-
checksum = "313752393519e876837e09e1fa183ddef0be7735868dced3196f4472d536277f"
2474+
checksum = "7a7907e3bfa08bb85105209cdfcb6c63d109f8f6c1ed6ca318fff5c1853fbc1d"
24752475
dependencies = [
24762476
"autocfg",
24772477
"cc",

src/tools/rustc-workspace-hack/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ syn = { version = "1", features = ['fold', 'full', 'extra-traits', 'visit', 'vis
7878
url = { version = "2.0", features = ['serde'] }
7979

8080
[target.'cfg(not(windows))'.dependencies]
81-
openssl = { version = "0.10.12", optional = true }
81+
openssl = { version = "0.10.35", optional = true }
8282

8383
[features]
8484
all-static = ['openssl/vendored', 'curl-sys/static-curl', 'curl-sys/force-system-lib-on-osx']

0 commit comments

Comments
 (0)