diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-22 01:54:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-22 01:54:28 +0100 |
| commit | f86456fc26d1c02f6c511125037efed576f87458 (patch) | |
| tree | be9615e8cec34cc21691132fa26d57ff47fde110 /Cargo.lock | |
| parent | 3fb4f3fe5a18916aa95f8b035ca994c290c173dc (diff) | |
chore: update ext/http to hyper 1.0.1 and http 1.0 (#21588)
Closes https://github.com/denoland/deno/issues/21583.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 109 |
1 files changed, 79 insertions, 30 deletions
diff --git a/Cargo.lock b/Cargo.lock index 9e46c6020..a172e0c1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -966,7 +966,7 @@ dependencies = [ "glibc_version", "glob", "hex", - "http", + "http 0.2.11", "hyper 0.14.27", "import_map", "indexmap 2.1.0", @@ -1254,7 +1254,7 @@ dependencies = [ "deno_core", "deno_tls", "dyn-clone", - "http", + "http 0.2.11", "pin-project", "reqwest", "serde", @@ -1336,11 +1336,13 @@ dependencies = [ "deno_net", "deno_websocket", "flate2", - "http", + "http 0.2.11", + "http 1.0.0", "http-body-util", "httparse", "hyper 0.14.27", - "hyper 1.0.0-rc.4", + "hyper 1.1.0", + "hyper-util", "itertools", "memmem", "mime", @@ -1503,10 +1505,10 @@ dependencies = [ "ecb", "elliptic-curve", "errno 0.2.8", - "h2", + "h2 0.3.22", "hex", "hkdf", - "http", + "http 0.2.11", "idna 0.3.0", "indexmap 2.1.0", "k256", @@ -1615,7 +1617,7 @@ dependencies = [ "flate2", "fs3", "fwdansi", - "http", + "http 0.2.11", "hyper 0.14.27", "libc", "log", @@ -1764,8 +1766,8 @@ dependencies = [ "deno_net", "deno_tls", "fastwebsockets", - "h2", - "http", + "h2 0.3.22", + "http 0.2.11", "hyper 0.14.27", "once_cell", "rustls-tokio-stream", @@ -2772,7 +2774,26 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.11", + "indexmap 2.1.0", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "h2" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1d308f63daf4181410c242d34c11f928dcb3aa105852019e043c9d1f4e4368a" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http 1.0.0", "indexmap 2.1.0", "slab", "tokio", @@ -2920,36 +2941,47 @@ dependencies = [ ] [[package]] +name = "http" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] name = "http-body" version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.11", "pin-project-lite", ] [[package]] name = "http-body" -version = "1.0.0-rc.2" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "951dfc2e32ac02d67c90c0d65bd27009a635dc9b381a2cc7d284ab01e3a0150d" +checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" dependencies = [ "bytes", - "http", + "http 1.0.0", ] [[package]] name = "http-body-util" -version = "0.1.0-rc.3" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08ef12f041acdd397010e5fb6433270c147d3b8b2d0a840cd7fff8e531dca5c8" +checksum = "41cb79eb393015dadd30fc252023adb0b2400a0caee0fa2a077e6e21a551e840" dependencies = [ "bytes", "futures-util", - "http", - "http-body 1.0.0-rc.2", + "http 1.0.0", + "http-body 1.0.0", "pin-project-lite", ] @@ -2981,8 +3013,8 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "h2", - "http", + "h2 0.3.22", + "http 0.2.11", "http-body 0.4.5", "httparse", "httpdate", @@ -2997,22 +3029,21 @@ dependencies = [ [[package]] name = "hyper" -version = "1.0.0-rc.4" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d280a71f348bcc670fc55b02b63c53a04ac0bf2daff2980795aeaf53edae10e6" +checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2", - "http", - "http-body 1.0.0-rc.2", + "h2 0.4.0", + "http 1.0.0", + "http-body 1.0.0", "httparse", "httpdate", "itoa", "pin-project-lite", "tokio", - "tracing", "want", ] @@ -3023,7 +3054,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http", + "http 0.2.11", "hyper 0.14.27", "rustls", "tokio", @@ -3031,6 +3062,24 @@ dependencies = [ ] [[package]] +name = "hyper-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdea9aac0dbe5a9240d68cfd9501e2db94222c6dc06843e06640b9e07f0fdc67" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.0.0", + "http-body 1.0.0", + "hyper 1.1.0", + "pin-project-lite", + "socket2 0.5.5", + "tokio", + "tracing", +] + +[[package]] name = "ident_case" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4600,8 +4649,8 @@ dependencies = [ "encoding_rs", "futures-core", "futures-util", - "h2", - "http", + "h2 0.3.22", + "http 0.2.11", "http-body 0.4.5", "hyper 0.14.27", "hyper-rustls", @@ -5913,7 +5962,7 @@ dependencies = [ "flate2", "futures", "glob", - "h2", + "h2 0.3.22", "hyper 0.14.27", "lazy-regex", "libc", |
