1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-19 03:44:40 +01:00
actix-net/actix-rt/Cargo.toml

31 lines
951 B
TOML
Raw Normal View History

2018-12-09 19:55:40 -08:00
[package]
name = "actix-rt"
2021-01-09 15:12:59 +00:00
version = "2.0.0-beta.2"
2018-12-09 19:55:40 -08:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2020-12-28 01:58:31 +00:00
description = "Tokio-based single-thread async runtime for the Actix ecosystem"
2018-12-09 19:55:40 -08: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-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-01-09 15:12:59 +00:00
actix-macros = { version = "0.2.0-beta.1", optional = true }
2021-01-29 02:21:06 +00:00
futures-core = { version = "0.3", default-features = false }
2021-01-04 02:16:57 +08:00
tokio = { version = "1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
2021-01-26 09:46:14 +00:00
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
futures-util = { version = "0.3.7", default-features = true, features = ["alloc"] }