[package]
name = "simpl_actor"
description = "Simple tokio actors"
version = "0.2.7"
readme = "../../README.md"
repository = "https://github.com/tqwewe/simpl_actor"
license = "MIT OR Apache-2.0"
edition = "2021"
categories = ["asynchronous", "concurrency", "rust-patterns"]
keywords = ["actor", "macro", "tokio"]
[dependencies]
simpl_actor_macros = { path = "../simpl_actor_macros", version = "0.2.7" }
dyn-clone = "1.0"
futures = "0.3"
num_cpus = "1.0"
tokio = { version = "1", features = ["macros", "rt", "sync", "time"] }
tracing = "0.1"
[dev-dependencies]
criterion = { version = "0.4", features = ["async_tokio"] }
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }
[[bench]]
name = "concurrent_reads"
harness = false