[package]
edition = "2021"
name = "uactor"
version = "0.17.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The fastest and most modular actor system that doesn't force you to pay for what you don't need"
readme = "README.md"
keywords = [
"actor",
"actor-system",
"stream",
"actor-stream",
"spawn-process",
]
license = "MIT"
repository = "https://github.com/EnvOut/uactor"
[features]
async_sender = []
default = ["tokio_tracing"]
tokio_tracing = []
[lib]
name = "uactor"
path = "src/lib.rs"
[[example]]
name = "dependency_injection"
path = "examples/dependency_injection.rs"
[[example]]
name = "interval"
path = "examples/interval.rs"
[[example]]
name = "macro_handlers"
path = "examples/macro_handlers.rs"
[[example]]
name = "multiple_incoming_channels"
path = "examples/multiple_incoming_channels.rs"
[[example]]
name = "shared_state"
path = "examples/shared_state.rs"
[[example]]
name = "single_channel_actor"
path = "examples/single_channel_actor.rs"
[[example]]
name = "supervised_actor"
path = "examples/supervised_actor.rs"
[[test]]
name = "actor_handler_macro"
path = "tests/actor_handler_macro.rs"
[[test]]
name = "derive_message"
path = "tests/derive_message.rs"
[[test]]
name = "generate_actor_ref_alias"
path = "tests/generate_actor_ref_alias.rs"
[dependencies.bytes]
version = "1"
optional = true
[dependencies.derive_more]
version = "1"
features = ["full"]
[dependencies.futures]
version = "0.3"
[dependencies.paste]
version = "1.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.35.0"
features = [
"net",
"sync",
"time",
"rt",
"macros",
"rt-multi-thread",
]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tracing]
version = "0.1"
[dependencies.uactor-derive]
version = "0.17.2"
[dependencies.uuid]
version = "1"
optional = true
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.more-asserts]
version = "0.3.1"
[dev-dependencies.time]
version = "0.3"
[dev-dependencies.tokio]
version = "1.35.0"
features = [
"net",
"sync",
"time",
"rt",
"macros",
"rt-multi-thread",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"