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
|
@ -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"] }
|
||||
|
|
|
@ -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<'_> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue