1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 22:51:07 +01:00
actix-net/actix-rt/Cargo.toml

33 lines
911 B
TOML
Raw Normal View History

2018-12-10 04:55:40 +01:00
[package]
name = "actix-rt"
2021-01-31 06:19:30 +01:00
version = "2.0.0-beta.3"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
2020-12-28 02:58:31 +01:00
description = "Tokio-based single-thread async runtime for the Actix ecosystem"
2018-12-10 04:55:40 +01:00
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 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-01-09 16:12:59 +01:00
actix-macros = { version = "0.2.0-beta.1", 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"] }