[package]
name = "expr-solver-bin"
version = "1.0.3"
edition = "2024"
authors = ["Albert Varaksin <albeva@me.com>"]
description = "Binary using the expr-solver-lib to solve math expressions from command line"
license = "MIT"
readme = "../README.md"
repository = "https://github.com/albeva/expr-solver"
keywords = ["math", "expression", "parser", "evaluator", "calculator"]
categories = ["mathematics", "parser-implementations"]
[[bin]]
name = "expr-solver"
path = "src/main.rs"
[dependencies]
expr-solver-lib = { version = "1.0.3", path = "../lib" }
clap = { version = "4.0", features = ["derive"] }
rust_decimal = { workspace = true }