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

40 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2018-12-10 04:55:40 +01:00
[package]
name = "actix-rt"
version = "2.10.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"
2023-11-06 23:19:01 +01:00
repository = "https://github.com/actix/actix-net"
2018-12-10 04:55:40 +01:00
categories = ["network-programming", "asynchronous"]
license = "MIT OR Apache-2.0"
2023-07-17 04:05:39 +02:00
edition.workspace = true
rust-version.workspace = true
2018-12-10 04:55:40 +01:00
[package.metadata.cargo_check_external_types]
allowed_external_types = [
2023-11-06 23:19:01 +01:00
"actix_macros::*",
"tokio::*",
]
2021-01-09 16:12:59 +01:00
[features]
default = ["macros"]
macros = ["actix-macros"]
io-uring = ["tokio-uring"]
2021-01-09 16:12:59 +01:00
2018-12-10 04:55:40 +01:00
[dependencies]
actix-macros = { version = "0.2.3", optional = true }
2021-01-29 03:21:06 +01:00
futures-core = { version = "0.3", default-features = false }
2023-04-01 23:24:10 +02:00
tokio = { version = "1.23.1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
2021-01-26 10:46:14 +01:00
2022-03-09 00:42:52 +01:00
# runtime for `io-uring` feature
[target.'cfg(target_os = "linux")'.dependencies]
tokio-uring = { version = "0.5", optional = true }
2021-01-26 10:46:14 +01:00
[dev-dependencies]
2023-04-01 23:24:10 +02:00
tokio = { version = "1.23.1", features = ["full"] }