mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Refactor async runtimes support (#88)
* refactor async runtimes support
This commit is contained in:
parent
713e02d6a3
commit
847f2738dd
45 changed files with 801 additions and 1033 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-rt"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "ntex runtime"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -19,20 +19,18 @@ path = "src/lib.rs"
|
|||
default = []
|
||||
|
||||
# tokio support
|
||||
tokio = ["ntex-io/tokio", "tok-io"]
|
||||
tokio = ["tok-io"]
|
||||
|
||||
# async-std support
|
||||
async-std = ["ntex-io/async-std", "async_std/unstable"]
|
||||
async-std = ["async_std/unstable"]
|
||||
|
||||
[dependencies]
|
||||
ntex-bytes = "0.1.8"
|
||||
ntex-io = "0.1.0"
|
||||
ntex-util = "0.1.4"
|
||||
async-oneshot = "0.5.0"
|
||||
async-channel = "1.6.1"
|
||||
derive_more = "0.99.14"
|
||||
futures-core = "0.3"
|
||||
log = "0.4"
|
||||
pin-project-lite = "0.2"
|
||||
|
||||
tok-io = { version = "1", package = "tokio", default-features = false, features = ["rt", "net", "signal"], optional = true }
|
||||
tok-io = { version = "1", package = "tokio", default-features = false, features = ["rt", "net"], optional = true }
|
||||
async_std = { version = "1", package = "async-std", optional = true }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue