mirror of
https://github.com/actix/actix-web.git
synced 2024-11-18 07:35:36 +00:00
replace actix_utils::oneshot with futures_channle::oneshot (#1844)
This commit is contained in:
parent
6cbf27508a
commit
95ccf1c9bc
1 changed files with 2 additions and 1 deletions
|
@ -9,8 +9,9 @@ use std::time::{Duration, Instant};
|
|||
use actix_codec::{AsyncRead, AsyncWrite};
|
||||
use actix_rt::time::{delay_for, Delay};
|
||||
use actix_service::Service;
|
||||
use actix_utils::{oneshot, task::LocalWaker};
|
||||
use actix_utils::task::LocalWaker;
|
||||
use bytes::Bytes;
|
||||
use futures_channel::oneshot;
|
||||
use futures_util::future::{poll_fn, FutureExt, LocalBoxFuture};
|
||||
use fxhash::FxHashMap;
|
||||
use h2::client::{Connection, SendRequest};
|
||||
|
|
Loading…
Reference in a new issue