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 /ext/http/response_body.rs | |
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 'ext/http/response_body.rs')
-rw-r--r-- | ext/http/response_body.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/http/response_body.rs b/ext/http/response_body.rs index 7201855cc..09365681b 100644 --- a/ext/http/response_body.rs +++ b/ext/http/response_body.rs @@ -14,9 +14,9 @@ use deno_core::AsyncResult; use deno_core::BufView; use deno_core::Resource; use flate2::write::GzEncoder; -use http::HeaderMap; use hyper1::body::Frame; use hyper1::body::SizeHint; +use hyper1::header::HeaderMap; use pin_project::pin_project; /// Simplification for nested types we use for our streams. We provide a way to convert from |