Deprecated std::task::ready re-export (#451)

This commit is contained in:
Nikolay Kim 2024-11-02 18:12:21 +05:00 committed by GitHub
parent 8288fc0364
commit a30147120d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 13 additions and 11 deletions

View file

@ -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;