2018-12-09 19:55:40 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-rt"
|
2023-08-26 18:02:48 +01:00
|
|
|
version = "2.9.0"
|
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"
|
2023-11-06 22:19:01 +00:00
|
|
|
repository = "https://github.com/actix/actix-net"
|
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"
|
2023-07-17 03:05:39 +01:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2018-12-09 19:55:40 -08:00
|
|
|
|
2023-10-30 00:07:28 +00:00
|
|
|
[package.metadata.cargo_check_external_types]
|
|
|
|
allowed_external_types = [
|
2023-11-06 22:19:01 +00:00
|
|
|
"actix_macros::*",
|
2023-10-30 00:07:28 +00:00
|
|
|
"tokio::*",
|
|
|
|
]
|
|
|
|
|
2021-01-09 15:12:59 +00:00
|
|
|
[features]
|
|
|
|
default = ["macros"]
|
|
|
|
macros = ["actix-macros"]
|
2021-10-11 09:58:11 +08:00
|
|
|
io-uring = ["tokio-uring"]
|
2021-01-09 15:12:59 +00:00
|
|
|
|
2018-12-09 19:55:40 -08:00
|
|
|
[dependencies]
|
2021-10-19 16:13:13 +01:00
|
|
|
actix-macros = { version = "0.2.3", 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 }
|
2023-04-01 22:24:10 +01:00
|
|
|
tokio = { version = "1.23.1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
|
2021-01-26 09:46:14 +00:00
|
|
|
|
2022-03-08 23:42:52 +00:00
|
|
|
# runtime for `io-uring` feature
|
2021-10-11 09:58:11 +08:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2022-12-20 20:45:31 -06:00
|
|
|
tokio-uring = { version = "0.4", optional = true }
|
2021-10-11 09:58:11 +08:00
|
|
|
|
2021-01-26 09:46:14 +00:00
|
|
|
[dev-dependencies]
|
2023-04-01 22:24:10 +01:00
|
|
|
tokio = { version = "1.23.1", features = ["full"] }
|