[package]
edition = "2024"
rust-version = "1.88"
name = "nomograph-workflow"
version = "0.1.1"
authors = ["Andrew Dunn <andunn@gitlab.com>"]
build = false
exclude = [
"target/*",
".cargo/*",
"claims/*",
".synth/*",
".lock",
"*.swp",
"dist/*",
"Cargo.lock.bak",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared workflow layer for nomograph claim-substrate tools: Store adapter, phase state machine, v1 legacy detection, cross-tool helpers."
homepage = "https://gitlab.com/nomograph/workflow"
readme = "README.md"
keywords = [
"nomograph",
"claim",
"workflow",
"state-machine",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://gitlab.com/nomograph/workflow"
[lib]
name = "nomograph_workflow"
path = "src/lib.rs"
[[test]]
name = "discover_explicit_path"
path = "tests/discover_explicit_path.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "=1.5.5"
[dependencies.nomograph-claim]
version = "0.1"
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.time]
version = "0.3"
features = [
"local-offset",
"formatting",
"macros",
]
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = "thin"