2018-12-09 19:55:40 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-rt"
|
2024-06-09 06:12:07 +01:00
|
|
|
version = "2.10.0"
|
2024-12-29 14:27:56 +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]
|
2024-12-29 14:27:56 +00:00
|
|
|
allowed_external_types = ["actix_macros::*", "tokio::*"]
|
2023-10-30 00:07:28 +00:00
|
|
|
|
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]
|
2024-06-07 18:51:27 +01:00
|
|
|
tokio-uring = { version = "0.5", 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"] }
|
2024-12-29 14:27:56 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|