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

@ -21,7 +21,7 @@ default = ["cookie-policy"]
cookie-policy = ["cookie/secure", "ntex/cookie"]
[dependencies]
ntex = "0.6.0-alpha.0"
ntex = "0.6.0-beta.0"
futures = "0.3"
serde = "1.0"
serde_json = "1.0"
@ -30,4 +30,4 @@ cookie = { version = "0.16", features = ["private"] }
time = { version = "0.3", default-features = false, features = ["std"] }
[dev-dependencies]
ntex = { version = "0.6.0-alpha.0", features=["tokio"] }
ntex = { version = "0.6.0-beta.0", features=["tokio"] }

View file

@ -256,8 +256,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, mut req: WebRequest<Err>) -> Self::Future<'_> {