aristo-cli 0.2.1

Aristo CLI binary (the `aristo` command).
Documentation
[package]
name = "aristo-cli"
description = "Aristo CLI binary (the `aristo` command)."
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
readme = "../../README.md"
keywords.workspace = true
rust-version.workspace = true
authors.workspace = true
documentation = "https://docs.rs/aristo-cli"
categories = ["command-line-utilities", "development-tools"]

[lints]
workspace = true

[lib]
name = "aristo_cli"
path = "src/lib.rs"

[[bin]]
name = "aristo"
path = "src/main.rs"

[dependencies]
aristo = { workspace = true }
aristo-core = { workspace = true }
# Phase 16 verify-card styling. anstyle = the style vocabulary; anstream =
# an stdout wrapper that auto-strips ANSI when not a TTY (piped / CI) and
# honors NO_COLOR. Both already resolve in the tree via clap's color feature.
anstyle = "1"
anstream = "0.6"
badge-maker = "0.3.1"
clap = { version = "4.5", features = ["derive"] }
dirs = "5.0"
getrandom = "0.2"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = { version = "2.0", features = ["full", "extra-traits", "visit"] }
# Phase 16 verify-card layout: word-wrap to a fixed width (no mid-word cuts,
# clean continuation lines) + ANSI-aware display-width measurement for the
# box frame. We do not hand-roll the wrapping.
textwrap = "0.16"
time = { version = "0.3", features = ["formatting"] }
toml = "0.8"
walkdir = "2.5"

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
serde_json = "1.0"
tempfile = "3.10"
trycmd = "0.15"