2018-12-10 04:55:40 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-rt"
|
2020-04-29 20:07:12 +02:00
|
|
|
version = "1.1.1"
|
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"]
|
2020-07-14 12:11:30 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2018-12-10 04:55:40 +01:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_rt"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-12-11 05:34:50 +01:00
|
|
|
actix-macros = "0.1.0"
|
2020-12-27 00:26:02 +01:00
|
|
|
|
|
|
|
futures-channel = "0.3.7"
|
2020-02-26 17:15:21 +01:00
|
|
|
tokio = { version = "0.2.6", default-features = false, features = ["rt-core", "rt-util", "io-driver", "tcp", "uds", "udp", "time", "signal", "stream"] }
|
2020-09-06 12:01:24 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-12-27 00:26:02 +01:00
|
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
2020-09-06 12:01:24 +02:00
|
|
|
tokio = { version = "0.2.6", features = ["full"] }
|