merge actix-rt

This commit is contained in:
Nikolay Kim 2020-03-29 13:59:17 +06:00
parent 4ec01db40a
commit 7df3cc59a1
86 changed files with 582 additions and 587 deletions

22
ntex-rt/Cargo.toml Normal file
View file

@ -0,0 +1,22 @@
[package]
name = "ntex-rt"
version = "1.0.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix 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-macros = "0.1.0"
actix-threadpool = "0.3"
futures = "0.3.1"
tokio = { version = "0.2.6", default-features=false, features = ["rt-core", "rt-util", "io-driver", "tcp", "uds", "udp", "time", "signal", "stream"] }