[package]
name = "calcli"
version = "0.4.0"
edition = "2024"
rust-version = "1.88"
authors = ["Corvin Gröning"]
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"
documentation = "https://docs.rs/calcli"
keywords = ["calculator", "tui", "terminal", "units", "cli"]
categories = ["command-line-utilities", "mathematics"]
exclude = ["images/", "screenshots/", ".github/", "todo.md"]
[package.metadata.docs.rs]
all-features = true
[[bin]]
name = "calcli"
path = "src/main.rs"
[dependencies]
ratatui = "0.30"
crossterm = "0.29"
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"
ratada = { path = "../../libs/ratada", version = "0.5" }
rink-core = { version = "0.9.0", features = ["bundle-files"] }
clap = { version = "4", features = ["derive"] }
[profile.release]
opt-level = 3