[package] name = "diazene" description = "Simple Actor for Rust (with Tokio)" repository = "https://github.com/HalsekiRaika/diazene" version = "1.4.1" edition = "2021" authors = ["ReiRokusanami "] license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] unstable = [] persistence = ["serde"] [dependencies] tokio = { version = "^1", features = ["rt-multi-thread", "sync"] } tracing = { version = "0.1", features = [] } async-trait = "0.1" thiserror = "1" dyn-hash = "0.2" anyid = "0.1" serde = { version = "^1", optional = true } [dev-dependencies] anyhow = "1.0.81" tokio = { version = "^1", features = ["full"] } uuid = { version = "^1.8", features = ["v4", "v7", "serde"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] } serde = { version = "^1", features = ["derive"] } serde_json = "^1"