[package]
name = "sparcli"
version = "0.2.0"
edition = "2024"
rust-version = "1.88"
authors = ["Corvin Gröning"]
description = "Lightweight, cross-platform toolkit for styled CLI output and interactive input widgets"
license = "MIT"
repository = "https://github.com/cgroening/rs-sparcli"
homepage = "https://github.com/cgroening/rs-sparcli"
documentation = "https://docs.rs/sparcli"
readme = "README.md"
keywords = ["cli", "terminal", "prompt", "color", "ansi"]
categories = ["command-line-interface", "value-formatting"]
exclude = ["/images", "/CLAUDE.md", "/docs"]
[package.metadata.docs.rs]
all-features = true
[features]
default = []
markup = []
fuzzy = ["dep:nucleo-matcher"]
pager = []
full = ["markup", "fuzzy", "pager"]
[dependencies]
crossterm = "0.29"
unicode-width = "0.2"
thiserror = "2"
log = "0.4"
nucleo-matcher = { version = "0.3", optional = true }
[lints.clippy]
all = { level = "warn", priority = -1 }