fabro/lib/crates/fabro-dev/Cargo.toml
Bryan Helmkamp be084c1944
refactor(dev): decouple CLI reference generation
Expose the CLI reference renderer through a hidden fabro subcommand so fabro-dev can refresh docs without linking fabro-cli. Gate the fabro-dev binary behind the dev feature and update the cargo dev alias to opt into it explicitly.
2026-05-06 12:31:02 -04:00

44 lines
765 B
TOML

[package]
name = "fabro-dev"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Internal development tooling for Fabro"
[lib]
name = "fabro_dev"
[[bin]]
name = "fabro-dev"
path = "src/main.rs"
required-features = ["dev"]
[[test]]
name = "it"
path = "tests/it/main.rs"
required-features = ["dev"]
[features]
default = []
dev = []
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
chrono.workspace = true
clap.workspace = true
csv = "1"
fabro-config = { path = "../fabro-config" }
fabro-options-metadata.workspace = true
quick-xml = "0.36"
shlex = "1"
toml_edit.workspace = true
tracing-subscriber.workspace = true
walkdir.workspace = true
[dev-dependencies]
assert_cmd = "2"
tempfile = "3"