[dependencies.log]
version = "0.4"
[dependencies.rsactor-derive]
version = "0.8"
[dependencies.tokio]
features = ["macros", "rt-multi-thread", "sync", "time"]
version = "1"
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.rand]
version = "0.9"
[[example]]
name = "actor_async_worker"
path = "examples/actor_async_worker.rs"
[[example]]
name = "actor_blocking_task"
path = "examples/actor_blocking_task.rs"
[[example]]
name = "actor_task"
path = "examples/actor_task.rs"
[[example]]
name = "actor_with_timeout"
path = "examples/actor_with_timeout.rs"
[[example]]
name = "advanced_derive_demo"
path = "examples/advanced_derive_demo.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "derive_macro_demo"
path = "examples/derive_macro_demo.rs"
[[example]]
name = "dining_philosophers"
path = "examples/dining_philosophers.rs"
[[example]]
name = "unified_macro_demo"
path = "examples/unified_macro_demo.rs"
[lib]
name = "rsactor"
path = "src/lib.rs"
[package]
authors = ["Jeff Kim <hiking90@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A Simple and Efficient In-Process Actor Model Implementation for Rust."
edition = "2021"
homepage = "https://github.com/hiking90/rsactor"
keywords = ["actor", "rust", "framework"]
license = "Apache-2.0"
name = "rsactor"
readme = "README.md"
repository = "https://github.com/hiking90/rsactor"
rust-version = "1.75.0"
version = "0.8.0"
[[test]]
name = "actor_result_tests"
path = "tests/actor_result_tests.rs"
[[test]]
name = "derive_macro_tests"
path = "tests/derive_macro_tests.rs"
[[test]]
name = "generic_tests"
path = "tests/generic_tests.rs"
[[test]]
name = "panic_handling_tests"
path = "tests/panic_handling_tests.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"