[package]
edition = "2024"
name = "alu"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent Logic Unit — deterministic math evaluation CLI for AI agents"
homepage = "https://github.com/DakshBardoliwala/ALU-CLI"
documentation = "https://github.com/DakshBardoliwala/ALU-CLI#readme"
readme = "README.md"
keywords = [
"math",
"agent",
"cli",
"eval",
"llm",
]
categories = [
"command-line-utilities",
"mathematics",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/DakshBardoliwala/ALU-CLI"
[[bin]]
name = "alu"
path = "src/main.rs"
[[test]]
name = "eval"
path = "tests/eval.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.dirs]
version = "6.0.0"
[dependencies.meval]
version = "0.2.0"
[dependencies.serde_json]
version = "1.0.149"
[profile.dist]
lto = "thin"
inherits = "release"