2018-12-09 19:55:40 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-rt"
|
2019-12-11 10:34:50 +06:00
|
|
|
version = "1.0.0"
|
2018-12-09 19:55:40 -08:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Actix runtime"
|
|
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
|
|
documentation = "https://docs.rs/actix-rt/"
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_rt"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-12-11 10:34:50 +06:00
|
|
|
actix-macros = "0.1.0"
|
2019-12-02 22:49:02 +06:00
|
|
|
actix-threadpool = "0.3"
|
2020-03-12 05:00:41 +09:00
|
|
|
futures-channel = { version = "0.3.4", default-features = false }
|
|
|
|
futures-util = { version = "0.3.4", default-features = false, features = ["alloc"] }
|
2019-12-02 11:30:27 +06:00
|
|
|
copyless = "0.1.4"
|
2020-02-26 09:15:21 -07:00
|
|
|
tokio = { version = "0.2.6", default-features = false, features = ["rt-core", "rt-util", "io-driver", "tcp", "uds", "udp", "time", "signal", "stream"] }
|