- Introduced visible progress stages during installation, including source resolution and artifact selection. - Improved separation between live transcript output and final summaries, ensuring clarity. - Removed redundant recap text from installation summaries. - Centralized terminal styling using a configurable theme system, allowing for warm defaults and user overrides. - Added support for hex colors and named colors in the configuration. - Updated tests to verify new behaviors and configurations.
27 lines
487 B
TOML
27 lines
487 B
TOML
[package]
|
|
name = "aim-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "aim"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap.workspace = true
|
|
dialoguer.workspace = true
|
|
console.workspace = true
|
|
indicatif.workspace = true
|
|
libc.workspace = true
|
|
serde.workspace = true
|
|
toml.workspace = true
|
|
aim-core = { path = "../aim-core" }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd.workspace = true
|
|
predicates = "3.1.3"
|
|
tempfile.workspace = true
|