add ntex-io changes

This commit is contained in:
Nikolay Kim 2021-12-18 20:40:33 +06:00
parent 8166fde2e0
commit d7083c15d8
5 changed files with 14 additions and 10 deletions

View file

@ -19,22 +19,22 @@ path = "src/lib.rs"
default = ["tokio"]
# tokio traits support
tokio-traits = ["tok-io/net"]
tokio-traits = ["tok-io/net", "tok-io/rt"]
# tokio runtime support
tokio = ["tok-io/net"]
tokio = ["tok-io/net", "tok-io/rt"]
[dependencies]
bitflags = "1.3"
fxhash = "0.2.1"
ntex-codec = "0.6.0"
ntex-bytes = "0.1.8"
ntex-util = "0.1.3"
ntex-service = "0.2.1"
fxhash = "0.2.1"
log = "0.4"
pin-project-lite = "0.2"
tok-io = { version = "1", package = "tokio", default-features = false, features = ["net", "rt"], optional = true }
tok-io = { version = "1", package = "tokio", default-features = false, optional = true }
[dev-dependencies]
ntex = "0.5.0-b.0"

View file

@ -22,9 +22,9 @@ default = ["tokio"]
tokio = ["tok-io", "ntex-io/tokio"]
[dependencies]
ntex-bytes = "0.1.7"
ntex-io = "0.1.0"
ntex-util = "0.1.2"
ntex-bytes = "0.1.8"
ntex-io = "0.1.0-b.0"
ntex-util = "0.1.3"
async-oneshot = "0.5.0"
async-channel = "1.6.1"
log = "0.4"

View file

@ -25,9 +25,9 @@ openssl = ["tls_openssl"]
rustls = ["tls_rust", "webpki-roots"]
[dependencies]
ntex-bytes = "0.1.7"
ntex-io = "0.1.0"
ntex-util = "0.1.2"
ntex-bytes = "0.1.8"
ntex-io = "0.1.0-b.0"
ntex-util = "0.1.3"
ntex-service = "0.2.1"
pin-project-lite = "0.2"

View file

@ -17,6 +17,7 @@ path = "src/lib.rs"
[dependencies]
bitflags = "1.2"
fxhash = "0.2.1"
log = "0.4"
slab = "0.4"
futures-timer = "3.0.2"

View file

@ -9,6 +9,9 @@ pub mod time;
pub use futures_core::{ready, Stream};
pub use futures_sink::Sink;
pub type HashMap<K, V> = std::collections::HashMap<K, V, fxhash::FxBuildHasher>;
pub type HashSet<V> = std::collections::HashSet<V, fxhash::FxBuildHasher>;
thread_local! {
#[allow(clippy::type_complexity)]
static SPAWNER: RefCell<Box<dyn Fn(Pin<Box<dyn Future<Output = ()>>>)>> = RefCell::new(Box::new(|_| {