mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
Replace hand-written Display/FromStr/as_str boilerplate with strum derives on Provider, RunStatus, StatusReason, Speed, ReasoningEffort, SandboxProvider, Fidelity, ModelTestMode, ModelTestStatus. Update a few downstream callers whose FromStr::Err = String assumption no longer holds. Net -172 lines, zero wire-format change. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
23 lines
473 B
TOML
23 lines
473 B
TOML
[package]
|
|
name = "fabro-graphviz"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "Graphviz DOT parser and typed graph data model"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
graphviz-sys.workspace = true
|
|
fabro-types = { path = "../fabro-types" }
|
|
nom = "7"
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
strum.workspace = true
|
|
thiserror = { workspace = true }
|