mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Use async fn for Service::ready() and Service::shutdown() (#363)
This commit is contained in:
parent
dec6ab083a
commit
b04bdf41f6
33 changed files with 285 additions and 299 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-net"
|
||||
version = "1.0.2"
|
||||
version = "2.0.0"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "ntexwork utils for ntex framework"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -28,16 +28,16 @@ glommio = ["ntex-rt/glommio", "ntex-glommio"]
|
|||
async-std = ["ntex-rt/async-std", "ntex-async-std"]
|
||||
|
||||
[dependencies]
|
||||
ntex-service = "2.0"
|
||||
ntex-bytes = "0.1.24"
|
||||
ntex-service = "3.0"
|
||||
ntex-bytes = "0.1"
|
||||
ntex-http = "0.1"
|
||||
ntex-io = "1.0"
|
||||
ntex-io = "2.0"
|
||||
ntex-rt = "0.4.11"
|
||||
ntex-util = "1.0"
|
||||
ntex-util = "2.0"
|
||||
|
||||
ntex-tokio = { version = "0.4.0", optional = true }
|
||||
ntex-glommio = { version = "0.4.0", optional = true }
|
||||
ntex-async-std = { version = "0.4.0", optional = true }
|
||||
ntex-tokio = { version = "0.5.0", optional = true }
|
||||
ntex-glommio = { version = "0.5.0", optional = true }
|
||||
ntex-async-std = { version = "0.5.0", optional = true }
|
||||
|
||||
log = "0.4"
|
||||
thiserror = "1.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue