diff --git a/Cargo.toml b/Cargo.toml index 871d9de2..1224f10f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,6 +45,8 @@ ntex-util = { path = "ntex-util" } ntex-compio = { path = "ntex-compio" } ntex-tokio = { path = "ntex-tokio" } +ntex-neon = { git = "https://github.com/ntex-rs/neon.git" } + [workspace.dependencies] async-task = "4.5.0" bitflags = "2" 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();