[package]
name = "pupactor"
version = "0.2.3"
edition = "2024"
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.48.0", features = ["sync", "rt", "time", "net"] }
pupactor_macro = { version = "0.2.1", path = "../pupactor_macro" }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }
unsafe_code = "forbid"