mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47: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
|
@ -18,7 +18,7 @@ path = "src/lib.rs"
|
|||
[dependencies]
|
||||
ntex-codec = "0.6"
|
||||
ntex-bytes = "0.1"
|
||||
ntex-util = "2.3"
|
||||
ntex-util = "2.5"
|
||||
ntex-service = "3"
|
||||
|
||||
bitflags = "2"
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
//! Framed transport dispatcher
|
||||
#![allow(clippy::let_underscore_future)]
|
||||
use std::{cell::Cell, future::Future, pin::Pin, rc::Rc, task::Context, task::Poll};
|
||||
use std::task::{ready, Context, Poll};
|
||||
use std::{cell::Cell, future::Future, pin::Pin, rc::Rc};
|
||||
|
||||
use ntex_codec::{Decoder, Encoder};
|
||||
use ntex_service::{IntoService, Pipeline, PipelineBinding, PipelineCall, Service};
|
||||
use ntex_util::{future::Either, ready, spawn, time::Seconds};
|
||||
use ntex_util::{future::Either, spawn, time::Seconds};
|
||||
|
||||
use crate::{Decoded, DispatchItem, IoBoxed, IoStatusUpdate, RecvError};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue