mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
22 lines
665 B
TOML
22 lines
665 B
TOML
[package]
|
|
name = "ntex-rt"
|
|
version = "0.1.1"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
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"
|
|
|
|
[dependencies]
|
|
ntex-rt-macros = "0.1.0"
|
|
actix-threadpool = "0.3"
|
|
futures = "0.3.4"
|
|
tokio = { version = "0.2.6", default-features=false, features = ["rt-core", "rt-util", "io-driver", "tcp", "uds", "udp", "time", "signal", "stream"] }
|