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