2018-12-10 04:55:40 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-rt"
|
2019-03-28 11:56:52 +01:00
|
|
|
version = "0.2.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-03-28 11:56:52 +01:00
|
|
|
actix-threadpool = { path="../actix-threadpool" }
|
2019-03-06 19:24:58 +01:00
|
|
|
futures = "0.1.25"
|
2018-12-10 04:55:40 +01:00
|
|
|
tokio-current-thread = "0.1"
|
|
|
|
tokio-executor = "0.1.5"
|
|
|
|
tokio-reactor = "0.1.7"
|
|
|
|
tokio-timer = "0.2.8"
|