mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 21:07:40 +03:00
chore: upgrade to ntex 2.0 (#14)
* chore: upgrade to ntex 2.0 * bump version to 2.0
This commit is contained in:
parent
7034dcc851
commit
b89f611c12
9 changed files with 27 additions and 32 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-cors"
|
||||
version = "1.0.0"
|
||||
version = "2.0.0"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Cross-origin resource sharing (CORS) for ntex applications."
|
||||
readme = "README.md"
|
||||
|
@ -16,9 +16,9 @@ name = "ntex_cors"
|
|||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
ntex = "1.1"
|
||||
ntex = "2"
|
||||
derive_more = "0.99"
|
||||
futures = "0.3"
|
||||
|
||||
[dev-dependencies]
|
||||
ntex = { version = "1.1", features=["tokio"] }
|
||||
ntex = { version = "2", features=["tokio"] }
|
||||
|
|
|
@ -742,8 +742,8 @@ where
|
|||
type Response = WebResponse;
|
||||
type Error = S::Error;
|
||||
|
||||
ntex::forward_poll_ready!(service);
|
||||
ntex::forward_poll_shutdown!(service);
|
||||
ntex::forward_ready!(service);
|
||||
ntex::forward_shutdown!(service);
|
||||
|
||||
async fn call(
|
||||
&self,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue