[package]
edition = "2024"
rust-version = "1.88"
name = "calcli"
version = "0.4.0"
authors = ["Corvin Gröning"]
build = false
exclude = [
"images/",
"screenshots/",
".github/",
"todo.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast terminal calculator (TUI) with history, variables and engineering helpers"
homepage = "https://github.com/cgroening/rs-calcli"
documentation = "https://docs.rs/calcli"
readme = "README.md"
keywords = [
"calculator",
"tui",
"terminal",
"units",
"cli",
]
categories = [
"command-line-utilities",
"mathematics",
]
license = "MIT"
repository = "https://github.com/cgroening/rs-calcli"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "calcli"
path = "src/lib.rs"
[[bin]]
name = "calcli"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "docs_in_sync"
path = "tests/docs_in_sync.rs"
[[test]]
name = "history_replay"
path = "tests/history_replay.rs"
[[test]]
name = "legacy_data"
path = "tests/legacy_data.rs"
[[test]]
name = "state_round_trip"
path = "tests/state_round_trip.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.log]
version = "0.4"
features = ["std"]
[dependencies.meval]
version = "0.2"
[dependencies.ratada]
version = "0.5"
[dependencies.ratatui]
version = "0.30"
[dependencies.regex]
version = "1"
[dependencies.rink-core]
version = "0.9.0"
features = ["bundle-files"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dependencies.unicode-width]
version = "0.2"
[profile.release]
opt-level = 3