mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Deprecated std::task::ready re-export (#451)
This commit is contained in:
parent
8288fc0364
commit
a30147120d
6 changed files with 13 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
|||
use std::task::{Context, Poll};
|
||||
use std::task::{ready, Context, Poll};
|
||||
use std::{any, cell::RefCell, cmp, future::poll_fn, io, mem, pin::Pin, rc::Rc, rc::Weak};
|
||||
|
||||
use ntex_bytes::{Buf, BufMut, BytesVec};
|
||||
|
@ -6,7 +6,7 @@ use ntex_io::{
|
|||
types, Filter, Handle, Io, IoBoxed, IoStream, ReadContext, WriteContext,
|
||||
WriteContextBuf,
|
||||
};
|
||||
use ntex_util::{ready, time::Millis};
|
||||
use ntex_util::time::Millis;
|
||||
use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};
|
||||
use tokio::net::TcpStream;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue