[package]
edition = "2024"
rust-version = "1.85"
name = "face"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fold And Cluster Entries — a Unix-style CLI for grouping, paging, and summarizing structured command output."
homepage = "https://github.com/oops-rs/face"
readme = "README.md"
license = "MIT"
repository = "https://github.com/oops-rs/face"
[lib]
name = "face_cli"
path = "src/lib.rs"
[[bin]]
name = "face"
path = "src/main.rs"
[[test]]
name = "grapha_default_mode"
path = "tests/grapha_default_mode.rs"
[[test]]
name = "pipeline_basic"
path = "tests/pipeline_basic.rs"
[[test]]
name = "pipeline_drilling"
path = "tests/pipeline_drilling.rs"
[[test]]
name = "pipeline_errors"
path = "tests/pipeline_errors.rs"
[[test]]
name = "pipeline_modes"
path = "tests/pipeline_modes.rs"
[[test]]
name = "pipeline_strategies"
path = "tests/pipeline_strategies.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dialoguer]
version = "0.12"
[dependencies.face-core]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.terminal_size]
version = "0.4"
[dependencies.toml]
version = "0.9"