exprkit 0.1.0

A mathematical expression parser and evaluator library, inspired by the ExprTk C++ library
Documentation
[package]
name = "exprkit"
version = "0.1.0"
edition = "2024"
authors = ["Krzysztof Woś <krzysztof.wos@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/krzysztofwos/exprkit"
homepage = "https://github.com/krzysztofwos/exprkit"
description = "A mathematical expression parser and evaluator library, inspired by the ExprTk C++ library"
readme = "README.md"
keywords = ["math", "expression", "parser", "evaluator", "calculator"]
categories = ["mathematics", "parser-implementations", "science"]
rust-version = "1.85"

[features]
default = []
cli = []

[lib]
name = "exprkit"
path = "src/lib.rs"

[[bin]]
name = "exprkit"
path = "src/bin/exprkit.rs"
required-features = ["cli"]

[dev-dependencies]
criterion = "0.5"

[[bench]]
name = "perf"
harness = false