fabro/lib/components/fabro-validate/Cargo.toml
Bryan Helmkamp 82bcafcfca
Port fabro-workflow, hooks, validate, and store to the lithos types
Workflow LLM handlers build lithos requests, bill from lithos usage and
cost, and classify failures from lithos `ErrorKind`. Model resolution and
fallback use the fabro-llm selection and catalog helpers. Validation
rules read the lithos catalog, and store fixtures use the new
`BilledModelUsage` shape.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-09 17:26:57 -06:00

25 lines
641 B
TOML

[package]
name = "fabro-validate"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Validation and lint rules for Fabro workflow graphs"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
fabro-acp = { path = "../fabro-acp", default-features = false }
fabro-graphviz = { path = "../fabro-graphviz" }
fabro-llm = { path = "../fabro-llm" }
fabro-types = { path = "../../foundation/fabro-types" }
serde = { workspace = true }
thiserror = { workspace = true }
[dev-dependencies]
fabro-llm = { path = "../fabro-llm", features = ["test-support"] }
toml = { workspace = true }