2018-12-09 19:55:40 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-rt"
|
2021-02-06 22:52:53 +00:00
|
|
|
version = "2.0.2"
|
2021-01-31 05:19:30 +00:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
|
|
]
|
2021-02-02 02:07:58 +00:00
|
|
|
description = "Tokio-based single-threaded async runtime for the Actix ecosystem"
|
2021-02-03 10:25:31 +00:00
|
|
|
keywords = ["async", "futures", "io", "runtime"]
|
2018-12-09 19:55:40 -08:00
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
2021-02-02 02:07:58 +00:00
|
|
|
documentation = "https://docs.rs/actix-rt"
|
2018-12-09 19:55:40 -08:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
2020-07-14 19:11:30 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2018-12-09 19:55:40 -08:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_rt"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2021-01-09 15:12:59 +00:00
|
|
|
[features]
|
|
|
|
default = ["macros"]
|
|
|
|
macros = ["actix-macros"]
|
|
|
|
|
2018-12-09 19:55:40 -08:00
|
|
|
[dependencies]
|
2021-02-02 02:07:58 +00:00
|
|
|
actix-macros = { version = "0.2.0", optional = true }
|
2020-12-27 07:26:02 +08:00
|
|
|
|
2021-01-29 02:21:06 +00:00
|
|
|
futures-core = { version = "0.3", default-features = false }
|
2021-02-05 19:38:11 -08:00
|
|
|
tokio = { version = "1.2", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
|
2021-01-26 09:46:14 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-02-05 19:38:11 -08:00
|
|
|
tokio = { version = "1.2", features = ["full"] }
|
2021-02-03 10:25:31 +00:00
|
|
|
hyper = { version = "0.14", default-features = false, features = ["server", "tcp", "http1"] }
|