mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Merge pull request #5126 from RustPython/dependabot/cargo/openssl-0.10.60
Bump openssl from 0.10.55 to 0.10.60
This commit is contained in:
14
Cargo.lock
generated
14
Cargo.lock
generated
@@ -1480,11 +1480,11 @@ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
|
||||
|
||||
[[package]]
|
||||
name = "openssl"
|
||||
version = "0.10.55"
|
||||
version = "0.10.62"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
|
||||
checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671"
|
||||
dependencies = [
|
||||
"bitflags 1.3.2",
|
||||
"bitflags 2.4.0",
|
||||
"cfg-if",
|
||||
"foreign-types",
|
||||
"libc",
|
||||
@@ -1512,18 +1512,18 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
||||
|
||||
[[package]]
|
||||
name = "openssl-src"
|
||||
version = "111.25.0+1.1.1t"
|
||||
version = "300.2.1+3.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6"
|
||||
checksum = "3fe476c29791a5ca0d1273c697e96085bbabbbea2ef7afd5617e78a4b40332d3"
|
||||
dependencies = [
|
||||
"cc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "openssl-sys"
|
||||
version = "0.9.90"
|
||||
version = "0.9.98"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
|
||||
checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7"
|
||||
dependencies = [
|
||||
"cc",
|
||||
"libc",
|
||||
|
||||
@@ -96,7 +96,7 @@ termios = "0.3.3"
|
||||
gethostname = "0.2.3"
|
||||
socket2 = { version = "0.4.4", features = ["all"] }
|
||||
dns-lookup = "1.0.8"
|
||||
openssl = { version = "0.10.55", optional = true }
|
||||
openssl = { version = "0.10.62", optional = true }
|
||||
openssl-sys = { version = "0.9.80", optional = true }
|
||||
openssl-probe = { version = "0.1.5", optional = true }
|
||||
foreign-types-shared = { version = "0.1.1", optional = true }
|
||||
|
||||
@@ -703,9 +703,8 @@ mod _ssl {
|
||||
let certs = self
|
||||
.ctx()
|
||||
.cert_store()
|
||||
.objects()
|
||||
.all_certificates()
|
||||
.iter()
|
||||
.filter_map(|obj| obj.x509())
|
||||
.map(|cert| cert_to_py(vm, cert, binary_form))
|
||||
.collect::<Result<Vec<_>, _>>()?;
|
||||
Ok(certs)
|
||||
|
||||
Reference in New Issue
Block a user