calcli 0.2.0

Fast terminal calculator (TUI) with history, variables and engineering helpers
Documentation
[package]
name = "calcli"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
description = "Fast terminal calculator (TUI) with history, variables and engineering helpers"
license = "MIT"
readme = "README.md"
repository = "https://github.com/cgroening/rs-calcli"
homepage = "https://github.com/cgroening/rs-calcli"
keywords = ["calculator", "tui", "terminal", "units", "cli"]
categories = ["command-line-utilities", "mathematics"]
exclude = ["images/", "screenshots/", ".github/"]

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

[dependencies]
ratatui = "0.29"
crossterm = "0.28"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
# https://crates.io/crates/meval — expression parser/evaluator (f64).
meval = "0.2"
# https://crates.io/crates/regex — word-boundary variable substitution.
regex = "1"
thiserror = "2"
anyhow = "1"
log = { version = "0.4", features = ["std"] }
# Display-width measurement for aligning/truncating TUI columns (wide glyphs = 2).
unicode-width = "0.2"
# System clipboard for y/Y copy and Ctrl+C/X/V in the input (text only).
arboard = { version = "3.6.1", default-features = false }
# https://crates.io/crates/rink-core — units engine (conversion + unit arithmetic).
# bundle-files embeds the units database so no data files are needed at runtime.
rink-core = { version = "0.9.0", features = ["bundle-files"] }

[profile.release]
opt-level = 3