1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 06:46:59 -05:00

chore(ext/net): bump rustls-tokio-stream to fix panic (#21763)

Pull in https://github.com/denoland/rustls-tokio-stream/pull/22 to fix
https://github.com/denoland/deno/issues/21762
This commit is contained in:
Matt Mastracci 2024-01-02 14:17:16 -07:00 committed by Bartek Iwańczuk
parent 63ae014dcc
commit c1c7bd8cfe
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750
2 changed files with 4 additions and 3 deletions

5
Cargo.lock generated
View file

@ -4954,12 +4954,13 @@ dependencies = [
[[package]] [[package]]
name = "rustls-tokio-stream" name = "rustls-tokio-stream"
version = "0.2.16" version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "897937c68ff975d028e8cc07bc887f2d5a9ec2bc952549f40db9a91dc557974c" checksum = "ded7a36e8ac05b8ada77a84c5ceec95361942ee9dedb60a82f93f788a791aae8"
dependencies = [ dependencies = [
"futures", "futures",
"rustls", "rustls",
"socket2 0.5.5",
"tokio", "tokio",
] ]

View file

@ -136,7 +136,7 @@ ring = "^0.17.0"
rusqlite = { version = "=0.29.0", features = ["unlock_notify", "bundled"] } rusqlite = { version = "=0.29.0", features = ["unlock_notify", "bundled"] }
rustls = "0.21.8" rustls = "0.21.8"
rustls-pemfile = "1.0.0" rustls-pemfile = "1.0.0"
rustls-tokio-stream = "=0.2.16" rustls-tokio-stream = "=0.2.17"
rustls-webpki = "0.101.4" rustls-webpki = "0.101.4"
webpki-roots = "0.25.2" webpki-roots = "0.25.2"
scopeguard = "1.2.0" scopeguard = "1.2.0"