datasynth-cli 0.1.1

Command-line interface for synthetic accounting data generation
[package]
name = "datasynth-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
description = "Command-line interface for synthetic accounting data generation"

[[bin]]
name = "datasynth-data"
path = "src/main.rs"

[dependencies]
datasynth-core = { workspace = true }
datasynth-config = { workspace = true }
datasynth-generators = { workspace = true }
datasynth-output = { workspace = true }
datasynth-runtime = { workspace = true }
datasynth-banking = { workspace = true }
clap = { workspace = true }
indicatif = { workspace = true }
anyhow = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
serde_yaml = { workspace = true }
serde_json = { workspace = true }
rayon = { workspace = true }
num_cpus = { workspace = true }

# Signal handling for pause/resume
[target.'cfg(unix)'.dependencies]
signal-hook = { workspace = true }

[dev-dependencies]
assert_cmd = { workspace = true }
predicates = { workspace = true }
tempfile = { workspace = true }