[package]
edition = "2021"
rust-version = "1.88"
name = "actix-rt"
version = "2.12.0"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tokio-based single-threaded async runtime for the Actix ecosystem"
homepage = "https://actix.rs"
readme = "README.md"
keywords = [
"async",
"futures",
"io",
"runtime",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/actix/actix-net"
[package.metadata.cargo_check_external_types]
allowed_external_types = [
"actix_macros::*",
"tokio::*",
]
[features]
default = ["macros"]
macros = ["actix-macros"]
[lib]
name = "actix_rt"
path = "src/lib.rs"
[[example]]
name = "multi_thread_system"
path = "examples/multi_thread_system.rs"
[[test]]
name = "test-macro-import-conflict"
path = "tests/test-macro-import-conflict.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.actix-macros]
version = "0.2.3"
optional = true
[dependencies.futures-core]
version = "0.3"
default-features = false
[dependencies.tokio]
version = "1.44.2"
features = [
"rt",
"io-util",
"net",
"parking_lot",
"signal",
"sync",
"time",
]
[dev-dependencies.tokio]
version = "1.44.2"
features = ["full"]
[lints.clippy]
disallowed-names = "warn"
uninlined-format-args = "warn"
[lints.rust]
future-incompatible = "deny"
nonstandard-style = "deny"
rust-2018-idioms = "deny"
[lints.rust.missing-docs]
level = "warn"
priority = -1