actually use hyper-util-wasm

This commit is contained in:
Toshit Chawda 2024-02-07 19:32:26 -08:00
parent 13d512a7b4
commit 8e75faeafd
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
4 changed files with 8 additions and 27 deletions

View file

@ -168,8 +168,8 @@ where
}
}
impl<T> hyper_util::client::legacy::connect::Connection for TokioIo<T> {
fn connected(&self) -> hyper_util::client::legacy::connect::Connected {
hyper_util::client::legacy::connect::Connected::new()
impl<T> hyper_util_wasm::client::legacy::connect::Connection for TokioIo<T> {
fn connected(&self) -> hyper_util_wasm::client::legacy::connect::Connected {
hyper_util_wasm::client::legacy::connect::Connected::new()
}
}