mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
36 lines
879 B
TOML
36 lines
879 B
TOML
[package]
|
|
name = "ntex-rt"
|
|
version = "0.4.2"
|
|
authors = ["ntex contributors <team@ntex.rs>"]
|
|
description = "ntex runtime"
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
homepage = "https://ntex.rs"
|
|
repository = "https://github.com/ntex-rs/ntex.git"
|
|
documentation = "https://docs.rs/ntex-rt/"
|
|
categories = ["network-programming", "asynchronous"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "ntex_rt"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# tokio support
|
|
tokio = ["tok-io"]
|
|
|
|
# async-std support
|
|
async-std = ["async_std/unstable"]
|
|
|
|
[dependencies]
|
|
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"], optional = true }
|
|
async_std = { version = "1", package = "async-std", optional = true }
|