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`.
This commit is contained in:
Bailey Hayes 2026-02-24 21:20:16 -05:00 committed by GitHub
parent f5cdf3316d
commit d9b3340d2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,7 +37,7 @@ console = "0.15.0"
dialoguer = { version = "0.11", default-features = false }
serde_json = "1.0.73"
glob = "0.3.0"
openssl = { version = "0.10.38", optional = true }
openssl = { version = "0.10.46", optional = true }
cargo_metadata = "0.18.1"
filetime = "0.2"