Merge pull request #1155 from yubiuser/update/hyper-rustls

Update hyper-rustls
This commit is contained in:
Roderick van Domburg 2023-04-14 21:43:58 +02:00 committed by GitHub
commit fea1a819fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 6 deletions

42
Cargo.lock generated
View file

@ -1034,17 +1034,17 @@ dependencies = [
[[package]]
name = "hyper-rustls"
version = "0.23.2"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
dependencies = [
"http",
"hyper",
"log",
"rustls 0.20.8",
"rustls 0.21.0",
"rustls-native-certs 0.6.2",
"tokio",
"tokio-rustls 0.23.4",
"tokio-rustls 0.24.0",
]
[[package]]
@ -1389,7 +1389,7 @@ dependencies = [
"httparse",
"hyper",
"hyper-proxy",
"hyper-rustls 0.23.2",
"hyper-rustls 0.24.0",
"librespot-protocol",
"log",
"nonzero_ext",
@ -2333,6 +2333,18 @@ dependencies = [
"webpki 0.22.0",
]
[[package]]
name = "rustls"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07180898a28ed6a7f7ba2311594308f595e3dd2e3c3812fa0a80a47b45f17e5d"
dependencies = [
"log",
"ring",
"rustls-webpki",
"sct 0.7.0",
]
[[package]]
name = "rustls-native-certs"
version = "0.5.0"
@ -2366,6 +2378,16 @@ dependencies = [
"base64 0.21.0",
]
[[package]]
name = "rustls-webpki"
version = "0.100.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "rustversion"
version = "1.0.12"
@ -2887,6 +2909,16 @@ dependencies = [
"webpki 0.22.0",
]
[[package]]
name = "tokio-rustls"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5"
dependencies = [
"rustls 0.21.0",
"tokio",
]
[[package]]
name = "tokio-stream"
version = "0.1.12"

View file

@ -29,7 +29,7 @@ httparse = "1.7"
http = "0.2"
hyper = { version = "0.14", features = ["client", "http1", "http2", "tcp"] }
hyper-proxy = { version = "0.9", default-features = false, features = ["rustls"] }
hyper-rustls = { version = "0.23", features = ["http2"] }
hyper-rustls = { version = "0.24", features = ["http2"] }
log = "0.4"
nonzero_ext = "0.3"
num-bigint = { version = "0.4", features = ["rand"] }