diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-27 17:59:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-27 11:59:57 -0500 |
commit | c2414db1f68d27db8ca6f192f0ff877f1394164c (patch) | |
tree | 528da9796f400557204bfdb8e4d44d64173036ce /ext/http/response_body.rs | |
parent | 33acd437f52b418a8413a302dd8902abad2eabec (diff) |
refactor: simplify hyper, http, h2 deps (#21715)
Main change is that:
- "hyper" has been renamed to "hyper_v014" to signal that it's legacy
- "hyper1" has been renamed to "hyper" and should be the default
Diffstat (limited to 'ext/http/response_body.rs')
-rw-r--r-- | ext/http/response_body.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/http/response_body.rs b/ext/http/response_body.rs index 09365681b..8219c80ba 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 hyper1::body::Frame; -use hyper1::body::SizeHint; -use hyper1::header::HeaderMap; +use hyper::body::Frame; +use hyper::body::SizeHint; +use hyper::header::HeaderMap; use pin_project::pin_project; /// Simplification for nested types we use for our streams. We provide a way to convert from |