diff --git a/ntex-io/Cargo.toml b/ntex-io/Cargo.toml index 6a1e881d..f55aa5d0 100644 --- a/ntex-io/Cargo.toml +++ b/ntex-io/Cargo.toml @@ -28,4 +28,3 @@ pin-project-lite = "0.2" [dev-dependencies] ntex = "2" rand = "0.8" -env_logger = "0.11" diff --git a/ntex-macros/Cargo.toml b/ntex-macros/Cargo.toml index f6cad0e2..a5bcf67d 100644 --- a/ntex-macros/Cargo.toml +++ b/ntex-macros/Cargo.toml @@ -18,4 +18,3 @@ proc-macro2 = "^1" [dev-dependencies] ntex = "2" futures = "0.3" -env_logger = "0.11" diff --git a/ntex-net/Cargo.toml b/ntex-net/Cargo.toml index 8e7335c6..c800c00b 100644 --- a/ntex-net/Cargo.toml +++ b/ntex-net/Cargo.toml @@ -40,7 +40,7 @@ ntex-util = "2.5" ntex-tokio = { version = "0.5.3", optional = true } ntex-compio = { version = "0.2.4", optional = true } -ntex-neon = { version = "0.1.11", optional = true } +ntex-neon = { version = "0.1.13", optional = true } bitflags = { workspace = true } cfg-if = { workspace = true } @@ -57,4 +57,3 @@ polling = { workspace = true, optional = true } [dev-dependencies] ntex = "2" -env_logger = "0.11" diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index e133ceb4..2b5aa5d0 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -43,6 +43,3 @@ tok-io = { version = "1", package = "tokio", default-features = false, features ], optional = true } ntex-neon = { version = "0.1.11", optional = true } - -[dev-dependencies] -env_logger = "0.11" diff --git a/ntex/src/http/test.rs b/ntex/src/http/test.rs index c9ecdb0b..0e4a6559 100644 --- a/ntex/src/http/test.rs +++ b/ntex/src/http/test.rs @@ -252,6 +252,7 @@ where Ok(()) }) }); + thread::sleep(std::time::Duration::from_millis(150)); let (system, server, addr) = rx.recv().unwrap();