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

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

View file

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