[package]
edition = "2021"
rust-version = "1.93"
name = "statum"
version = "0.8.5"
authors = ["Eran Boodnero <eran@eran.codes>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Represent workflow and protocol state correctly in Rust by making invalid states unrepresentable"
documentation = "https://docs.rs/statum"
readme = "README.md"
keywords = [
"typestate",
"correctness",
"workflow",
"protocol",
"state-machine",
]
categories = ["rust-patterns"]
license = "MIT"
repository = "https://github.com/eboody/statum"
[package.metadata.modum]
generic_nouns = [
"Id",
"Repository",
"Service",
"Command",
"Request",
"Response",
]
weak_modules = ["can"]
[lib]
name = "statum"
path = "src/lib.rs"
[[test]]
name = "branch_wrapper"
path = "tests/branch_wrapper.rs"
[[test]]
name = "ergonomic_construction"
path = "tests/ergonomic_construction.rs"
[[test]]
name = "introspection"
path = "tests/introspection.rs"
[[test]]
name = "introspection_authority"
path = "tests/introspection_authority.rs"
[[test]]
name = "named_state_variants"
path = "tests/named_state_variants.rs"
[[test]]
name = "rebuild_reports"
path = "tests/rebuild_reports.rs"
[dependencies.statum-core]
version = "0.8.5"
[dependencies.statum-macros]
version = "0.8.5"
[dev-dependencies.tokio]
version = "1"
features = ["full"]