[package]
edition = "2021"
name = "determa-state"
version = "0.0.5"
authors = ["fruwehq"]
build = false
exclude = [
"conformance-suite/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Determa State — Rust implementation of the Determa statechart engine (implements Determa State spec v0.0.5)"
readme = "README.md"
license = "MIT"
repository = "https://github.com/fruwehq/determa-state-rust"
[lib]
name = "determa_state"
path = "src/lib.rs"
[[bin]]
name = "determa-state"
path = "src/bin/determa_state.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "meta"
path = "tests/meta.rs"
[[test]]
name = "native_values"
path = "tests/native_values.rs"
[dependencies.cel-interpreter]
version = "0.10"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 2