Skip to content

Commit 0564130

Browse files
authored
Fix compilation with specified minimal versions (#503)
Verified with `cargo +nightly test -Zminimal-versions`.
1 parent 70ade95 commit 0564130

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ socket2 = "0.5.0"
2323

2424
# Unix platforms use OpenSSL for now to provide SSL functionality
2525
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
26-
openssl-sys = { version = "0.9.43", optional = true }
26+
openssl-sys = { version = "0.9.64", optional = true }
2727
openssl-probe = { version = "0.1.2", optional = true }
2828

2929
[target.'cfg(target_env = "msvc")'.dependencies]

curl-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ optional = true
3030
features = ["no_log_capture"]
3131

3232
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
33-
openssl-sys = { version = "0.9", optional = true }
33+
openssl-sys = { version = "0.9.64", optional = true }
3434

3535
[target.'cfg(windows)'.dependencies]
3636
winapi = { version = "0.3", features = ["winsock2", "ws2def"] }

0 commit comments

Comments
 (0)