Metadata-Version: 2.4
Name: calc-rust
Version: 0.2.0
Classifier: Programming Language :: Rust
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Summary: The calc_rs command-line REPL and table workbench
Keywords: calculator,expression,spreadsheet,cli,repl,rust
Author: Attica-oss
License-Expression: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Repository, https://github.com/Attica-oss/calc_rs

# calc-rust

The command-line front end for [`calc_rs`](https://github.com/Attica-oss/calc_rs) —
a strongly typed, spreadsheet-style expression engine (currency, tonnage,
percentages, dates, durations, and tables as first-class types).

This package ships only the compiled `calc_rs` binary, so you can install
it without a Rust toolchain:

```sh
uv tool install calc-rust      # then run: calc_rs
uvx --from calc-rust calc_rs '$5.00 * 3'
pipx install calc-rust
```

- `calc_rs` — start the REPL (syntax-highlighted input, rounded-border tables)
- `calc_rs '<expr>'` — evaluate once
- `calc_rs --bare '<expr>'` — value only, for scripts

For the Python library (`import calc_rs`), install **`calc-rs-lang`** instead.

