[package]
name = "abacus"
version = "0.1.6"
edition = "2024"
license = "MIT"
description = "The mathemagical programming language"
repository = "https://github.com/cyanboy/abacus"
homepage = "https://github.com/cyanboy/abacus"
documentation = "https://docs.rs/abacus"
readme = "README.md"
keywords = ["calculator", "language", "repl", "functional"]
categories = ["command-line-utilities", "compilers"]
default-run = "abc"
rust-version = "1.90"
[dependencies]
clap = { version = "4.5.51", features = ["derive"] }
clap_complete = "4.5"
miette = { version = "7.6.0", features = ["fancy", "derive"] }
rustyline = "17.0.2"
thiserror = "2.0.17"
unicode-width = "0.1"
colored = "2.1"
[[bin]]
name = "abc"
path = "src/main.rs"