[dependencies.actix-macros]
optional = true
version = "0.2.3"
[dependencies.futures-core]
default-features = false
version = "0.3"
[dependencies.tokio]
features = ["rt", "io-util", "net", "parking_lot", "signal", "sync", "time"]
version = "1.44.2"
[dev-dependencies.tokio]
features = ["full"]
version = "1.44.2"
[[example]]
name = "multi_thread_system"
path = "examples/multi_thread_system.rs"
[features]
default = ["macros"]
io-uring = ["tokio-uring"]
macros = ["actix-macros"]
[lib]
name = "actix_rt"
path = "src/lib.rs"
[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
[package]
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming", "asynchronous"]
description = "Tokio-based single-threaded async runtime for the Actix ecosystem"
edition = "2021"
homepage = "https://actix.rs"
keywords = ["async", "futures", "io", "runtime"]
license = "MIT OR Apache-2.0"
name = "actix-rt"
readme = "README.md"
repository = "https://github.com/actix/actix-net"
rust-version = "1.75"
version = "2.11.0"
[package.metadata.cargo_check_external_types]
allowed_external_types = ["actix_macros::*", "tokio::*"]
[target.'cfg(target_os = "linux")'.dependencies.tokio-uring]
optional = true
version = "0.5"
[[test]]
name = "test-macro-import-conflict"
path = "tests/test-macro-import-conflict.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"