mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
add ntex-io changes
This commit is contained in:
parent
8166fde2e0
commit
d7083c15d8
5 changed files with 14 additions and 10 deletions
|
@ -19,22 +19,22 @@ path = "src/lib.rs"
|
||||||
default = ["tokio"]
|
default = ["tokio"]
|
||||||
|
|
||||||
# tokio traits support
|
# tokio traits support
|
||||||
tokio-traits = ["tok-io/net"]
|
tokio-traits = ["tok-io/net", "tok-io/rt"]
|
||||||
|
|
||||||
# tokio runtime support
|
# tokio runtime support
|
||||||
tokio = ["tok-io/net"]
|
tokio = ["tok-io/net", "tok-io/rt"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "1.3"
|
bitflags = "1.3"
|
||||||
fxhash = "0.2.1"
|
|
||||||
ntex-codec = "0.6.0"
|
ntex-codec = "0.6.0"
|
||||||
ntex-bytes = "0.1.8"
|
ntex-bytes = "0.1.8"
|
||||||
ntex-util = "0.1.3"
|
ntex-util = "0.1.3"
|
||||||
ntex-service = "0.2.1"
|
ntex-service = "0.2.1"
|
||||||
|
fxhash = "0.2.1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
pin-project-lite = "0.2"
|
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]
|
[dev-dependencies]
|
||||||
ntex = "0.5.0-b.0"
|
ntex = "0.5.0-b.0"
|
||||||
|
|
|
@ -22,9 +22,9 @@ default = ["tokio"]
|
||||||
tokio = ["tok-io", "ntex-io/tokio"]
|
tokio = ["tok-io", "ntex-io/tokio"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ntex-bytes = "0.1.7"
|
ntex-bytes = "0.1.8"
|
||||||
ntex-io = "0.1.0"
|
ntex-io = "0.1.0-b.0"
|
||||||
ntex-util = "0.1.2"
|
ntex-util = "0.1.3"
|
||||||
async-oneshot = "0.5.0"
|
async-oneshot = "0.5.0"
|
||||||
async-channel = "1.6.1"
|
async-channel = "1.6.1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
|
@ -25,9 +25,9 @@ openssl = ["tls_openssl"]
|
||||||
rustls = ["tls_rust", "webpki-roots"]
|
rustls = ["tls_rust", "webpki-roots"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ntex-bytes = "0.1.7"
|
ntex-bytes = "0.1.8"
|
||||||
ntex-io = "0.1.0"
|
ntex-io = "0.1.0-b.0"
|
||||||
ntex-util = "0.1.2"
|
ntex-util = "0.1.3"
|
||||||
ntex-service = "0.2.1"
|
ntex-service = "0.2.1"
|
||||||
pin-project-lite = "0.2"
|
pin-project-lite = "0.2"
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,7 @@ path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "1.2"
|
bitflags = "1.2"
|
||||||
|
fxhash = "0.2.1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
slab = "0.4"
|
slab = "0.4"
|
||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
|
|
|
@ -9,6 +9,9 @@ pub mod time;
|
||||||
pub use futures_core::{ready, Stream};
|
pub use futures_core::{ready, Stream};
|
||||||
pub use futures_sink::Sink;
|
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! {
|
thread_local! {
|
||||||
#[allow(clippy::type_complexity)]
|
#[allow(clippy::type_complexity)]
|
||||||
static SPAWNER: RefCell<Box<dyn Fn(Pin<Box<dyn Future<Output = ()>>>)>> = RefCell::new(Box::new(|_| {
|
static SPAWNER: RefCell<Box<dyn Fn(Pin<Box<dyn Future<Output = ()>>>)>> = RefCell::new(Box::new(|_| {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue