1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00

update h2 to 0.4.6

to get https://github.com/hyperium/h2/pull/792

which fixes promises not being resolved when the server sends large
headers
https://github.com/denoland/deno/issues/26490
This commit is contained in:
Cre3per 2025-01-02 20:06:52 +01:00
parent 0457c38d4f
commit f3bf9ccef1
2 changed files with 17 additions and 11 deletions

26
Cargo.lock generated
View file

@ -341,6 +341,12 @@ dependencies = [
"pin-project-lite",
]
[[package]]
name = "atomic-waker"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
[[package]]
name = "auto_impl"
version = "1.2.0"
@ -1683,7 +1689,7 @@ dependencies = [
"dyn-clone",
"error_reporter",
"fast-socks5",
"h2 0.4.4",
"h2 0.4.7",
"hickory-resolver",
"http 1.1.0",
"http-body-util",
@ -1994,7 +2000,7 @@ dependencies = [
"elliptic-curve",
"errno 0.2.8",
"faster-hex",
"h2 0.4.4",
"h2 0.4.7",
"hkdf",
"http 1.1.0",
"http-body-util",
@ -2463,7 +2469,7 @@ dependencies = [
"deno_permissions",
"deno_tls",
"fastwebsockets",
"h2 0.4.4",
"h2 0.4.7",
"http 1.1.0",
"http-body-util",
"hyper 1.4.1",
@ -3692,15 +3698,15 @@ dependencies = [
[[package]]
name = "h2"
version = "0.4.4"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069"
checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
dependencies = [
"atomic-waker",
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http 1.1.0",
"indexmap 2.3.0",
"slab",
@ -4072,7 +4078,7 @@ dependencies = [
"bytes",
"futures-channel",
"futures-util",
"h2 0.4.4",
"h2 0.4.7",
"http 1.1.0",
"http-body 1.0.0",
"httparse",
@ -6247,7 +6253,7 @@ dependencies = [
"bytes",
"futures-core",
"futures-util",
"h2 0.4.4",
"h2 0.4.7",
"http 1.1.0",
"http-body 1.0.0",
"http-body-util",
@ -7778,7 +7784,7 @@ dependencies = [
"flate2",
"futures",
"glob",
"h2 0.4.4",
"h2 0.4.7",
"http 1.1.0",
"http-body-util",
"hyper 1.4.1",
@ -8072,7 +8078,7 @@ dependencies = [
"axum",
"base64 0.22.1",
"bytes",
"h2 0.4.4",
"h2 0.4.7",
"http 1.1.0",
"http-body 1.0.0",
"http-body-util",

View file

@ -134,7 +134,7 @@ flate2 = { version = "1.0.30", default-features = false }
fs3 = "0.5.0"
futures = "0.3.21"
glob = "0.3.1"
h2 = "0.4.4"
h2 = "0.4.6"
hickory-resolver = { version = "0.25.0-alpha.4", features = ["tokio-runtime", "serde"] }
http = "1.0"
http-body = "1.0"