[package]
edition = "2024"
name = "flowstate"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Workflow runtime powered by finite state machines."
homepage = "https://github.com/bcheidemann/flowstate"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bcheidemann/flowstate"
[features]
default = ["macros"]
macros = ["dep:flowstate_proc"]
[lib]
name = "flowstate"
path = "src/lib.rs"
[[test]]
name = "basic_workflow"
path = "tests/basic_workflow.rs"
[[test]]
name = "basic_workflow_manual_impls"
path = "tests/basic_workflow_manual_impls.rs"
[[test]]
name = "branching_workflow"
path = "tests/branching_workflow.rs"
[[test]]
name = "looping_workflow"
path = "tests/looping_workflow.rs"
[[test]]
name = "state_names"
path = "tests/state_names.rs"
[[test]]
name = "workflow_with_context"
path = "tests/workflow_with_context.rs"
[dependencies.flowstate_proc]
version = "0.3.1"
optional = true