Replace hand-rolled arg parser with clap derive. Restructure as subcommands: import, cmd, script. Import subcommand supports --category, --measure, --time, --skip, --extract, --axis, --formula, --name, --no-wizard, and --output flags for configurable imports. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
680 B
TOML
36 lines
680 B
TOML
[package]
|
|
name = "improvise"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Multi-dimensional data modeling terminal application"
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "improvise"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
ratatui = "0.29"
|
|
crossterm = "0.28"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
thiserror = "1"
|
|
indexmap = { version = "2", features = ["serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
flate2 = "1"
|
|
unicode-width = "0.2"
|
|
dirs = "5"
|
|
csv = "1"
|
|
clap = { version = "4.6.0", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
tempfile = "3"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|