[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"
meval = "0.2"
regex = "1"
thiserror = "2"
anyhow = "1"
log = { version = "0.4", features = ["std"] }
unicode-width = "0.2"
arboard = { version = "3.6.1", default-features = false }
rink-core = { version = "0.9.0", features = ["bundle-files"] }
[profile.release]
opt-level = 3