mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 21:07:40 +03:00
update deps
This commit is contained in:
parent
440c0073d0
commit
38cf72793c
10 changed files with 16 additions and 27 deletions
|
@ -22,7 +22,7 @@ default = ["cookie-session"]
|
|||
cookie-session = ["cookie/secure", "ntex/cookie"]
|
||||
|
||||
[dependencies]
|
||||
ntex = "0.6.0-alpha.0"
|
||||
ntex = "0.6.0-beta.0"
|
||||
cookie = "0.16"
|
||||
derive_more = "0.99"
|
||||
futures = "0.3"
|
||||
|
@ -31,4 +31,4 @@ serde_json = "1.0"
|
|||
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"] }
|
||||
|
|
|
@ -307,8 +307,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)
|
||||
}
|
||||
|
||||
/// On first request, a new session cookie is returned in response, regardless
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue