Skip to content

Commit d9b3340

Browse files
authored
fix(sqlx-cli): bump openssl minimum to 0.10.46 (#4172)
native-tls 0.2.12 calls `Pkcs12::parse2()` which was added in openssl 0.10.46, but declares its minimum as 0.10.29. The minimal-versions resolver picked openssl 0.10.38 (our previous lower bound), which lacks `parse2`.
1 parent f5cdf33 commit d9b3340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlx-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ console = "0.15.0"
3737
dialoguer = { version = "0.11", default-features = false }
3838
serde_json = "1.0.73"
3939
glob = "0.3.0"
40-
openssl = { version = "0.10.38", optional = true }
40+
openssl = { version = "0.10.46", optional = true }
4141
cargo_metadata = "0.18.1"
4242
filetime = "0.2"
4343

0 commit comments

Comments
 (0)