[package]
edition = "2024"
name = "state-m"
version = "0.4.4"
authors = ["WonderBear<ximengwuheng@163.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The library implements convenient state distribution and management mechanisms, facilitating collaborative work between components."
readme = "README.md"
keywords = [
"state",
"machine",
"subscribe",
]
license = "MIT"
repository = "https://github.com/xiongxiong/state-m"
[features]
default = ["timestamp"]
timestamp = ["dep:chrono"]
[lib]
name = "state_m"
path = "src/lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.45"
optional = true
[dependencies.dashmap]
version = "6.2.1"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = ["full"]
[dependencies.tokio-util]
version = "0.7.18"
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies]