1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 04:52:58 +01:00
actix-net/actix-rt/Cargo.toml

34 lines
985 B
TOML
Raw Normal View History

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