update deps

This commit is contained in:
Nikolay Kim 2022-12-28 13:43:07 +01:00
parent 440c0073d0
commit 38cf72793c
10 changed files with 16 additions and 27 deletions

View file

@ -16,9 +16,9 @@ name = "ntex_cors"
path = "src/lib.rs"
[dependencies]
ntex = "0.6.0-alpha.0"
ntex = "0.6.0-beta.0"
derive_more = "0.99"
futures = "0.3"
[dev-dependencies]
ntex = { version = "0.6.0-alpha.0", features=["tokio"] }
ntex = { version = "0.6.0-beta.0", features=["tokio"] }

View file

@ -760,8 +760,8 @@ where
self.service.poll_ready(cx)
}
fn poll_shutdown(&self, cx: &mut Context<'_>, is_error: bool) -> Poll<()> {
self.service.poll_shutdown(cx, is_error)
fn poll_shutdown(&self, cx: &mut Context<'_>) -> Poll<()> {
self.service.poll_shutdown(cx)
}
fn call(&self, req: WebRequest<Err>) -> Self::Future<'_> {