From c2414db1f68d27db8ca6f192f0ff877f1394164c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 27 Dec 2023 17:59:57 +0100 Subject: 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 --- ext/websocket/stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/websocket/stream.rs') diff --git a/ext/websocket/stream.rs b/ext/websocket/stream.rs index 88c053dc5..e82d7d1fc 100644 --- a/ext/websocket/stream.rs +++ b/ext/websocket/stream.rs @@ -4,7 +4,7 @@ use bytes::Bytes; use deno_net::raw::NetworkStream; use h2::RecvStream; use h2::SendStream; -use hyper1::upgrade::Upgraded; +use hyper::upgrade::Upgraded; use hyper_util::rt::TokioIo; use std::io::ErrorKind; use std::pin::Pin; -- cgit v1.2.3