[package]
name = "mathexpr"
version = "0.1.1"
edition = "2021"
authors = ["Brian Tol"]
description = "A fast, safe mathematical expression parser and evaluator with bytecode compilation"
license = "MIT"
repository = "https://github.com/wiremine/mathexpr"
documentation = "https://docs.rs/mathexpr"
readme = "README.md"
keywords = ["math", "expression", "parser", "evaluator", "calculator"]
categories = ["parsing", "mathematics", "no-std"]
rust-version = "1.70"
[features]
default = ["std"]
std = []
[dependencies]
nom = { version = "8", default-features = false, features = ["alloc"] }
hashbrown = "0.14"
libm = "0.2"
[dev-dependencies]
criterion = "0.5"
rand = "0.8"
rustyline = "14"
[[bench]]
name = "parser_bench"
harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]