[package] name = "pupactor" version = "0.2.0" edition = "2021" description = "Pupactor is actor model library built with tokio" license = "MIT OR Apache-2.0" repository = "https://github.com/incker/pupactor" keywords = ["actor"] categories = ["asynchronous"] [dependencies] tokio = { version = "1.40.0", features = ["sync", "rt", "time", "net"] } pupactor_macro = { version = "0.2.0", path = "../pupactor_macro" } [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } unsafe_code = "forbid"