2018-12-10 04:55:40 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-rt"
|
2019-12-02 06:30:27 +01:00
|
|
|
version = "1.0.0-alpha.2"
|
2018-12-10 04:55:40 +01: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"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
edition = "2018"
|
2019-03-28 11:56:52 +01:00
|
|
|
workspace = ".."
|
2018-12-10 04:55:40 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_rt"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-25 16:49:11 +01:00
|
|
|
actix-macros = "0.1.0-alpha.1"
|
2019-12-02 17:49:02 +01:00
|
|
|
actix-threadpool = "0.3"
|
2019-11-14 13:38:24 +01:00
|
|
|
futures = "0.3.1"
|
2019-12-02 06:30:27 +01:00
|
|
|
copyless = "0.1.4"
|
2019-11-14 13:38:24 +01:00
|
|
|
|
2019-12-02 06:30:27 +01:00
|
|
|
tokio = { version = "=0.2.0-alpha.6", features=["rt-current-thread","tcp","uds","udp","timer","signal"] }
|
2019-11-14 13:38:24 +01:00
|
|
|
tokio-executor = "=0.2.0-alpha.6"
|
|
|
|
tokio-net = "=0.2.0-alpha.6"
|
2019-12-02 06:30:27 +01:00
|
|
|
tokio-timer = "=0.3.0-alpha.6"
|