[package]
name = "gen-cli"
description = "gen — operator-facing CLI. Subcommands: check (parse + print typed manifest), lock (regenerate lockfile-derived data), config-show (dump tier), config-diff (compare tiers). Wires every adapter to the operator through one binary; new adapters land in the dispatch table, not as new tools."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
authors.workspace = true
[[bin]]
name = "gen"
path = "src/main.rs"
[lints]
workspace = true
[dependencies]
gen-types = { workspace = true }
gen-platform = { workspace = true }
gen-macros = { version = "0.1.0", path = "../gen-macros" }
gen-cargo = { workspace = true }
gen-npm = { workspace = true }
gen-bundler = { workspace = true }
gen-helm = { version = "0.1.0", path = "../gen-helm" }
gen-pip = { version = "0.1.0", path = "../gen-pip" }
gen-gomod = { version = "0.1.0", path = "../gen-gomod" }
gen-ansible = { version = "0.1.0", path = "../gen-ansible" }
gen-poetry = { version = "0.1.0", path = "../gen-poetry" }
gen-swift = { version = "0.1.0", path = "../gen-swift" }
gen-config = { workspace = true }
gen-nix = { workspace = true }
gen-cache-attic = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
indexmap = { workspace = true }
clap = { workspace = true }
shikumi = { workspace = true }
thiserror = { workspace = true }
kanshou = { version = "0.1", git = "https://github.com/pleme-io/kanshou" }
tokio = { version = "1", features = ["rt", "macros", "net", "io-util"] }
tatara-lisp = "0.3.3"
[dev-dependencies]
gen-ansible = { version = "0.1.0", path = "../gen-ansible" }
gen-bundler = { path = "../gen-bundler" }
gen-cargo = { path = "../gen-cargo" }
gen-gomod = { version = "0.1.0", path = "../gen-gomod" }
gen-helm = { version = "0.1.0", path = "../gen-helm" }
gen-npm = { path = "../gen-npm" }
gen-pip = { version = "0.1.0", path = "../gen-pip" }
gen-poetry = { version = "0.1.0", path = "../gen-poetry" }
gen-swift = { version = "0.1.0", path = "../gen-swift" }
gen-platform = { path = "../gen-platform" }
tempfile = "3"