[package]
edition = "2024"
rust-version = "1.85"
name = "exprkit"
version = "0.1.0"
authors = ["Krzysztof Woś <krzysztof.wos@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A mathematical expression parser and evaluator library, inspired by the ExprTk C++ library"
homepage = "https://github.com/krzysztofwos/exprkit"
readme = "README.md"
keywords = [
"math",
"expression",
"parser",
"evaluator",
"calculator",
]
categories = [
"mathematics",
"parser-implementations",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/krzysztofwos/exprkit"
[features]
cli = []
default = []
[lib]
name = "exprkit"
path = "src/lib.rs"
[[bin]]
name = "exprkit"
path = "src/bin/exprkit.rs"
required-features = ["cli"]
[[test]]
name = "debug_vec"
path = "tests/debug_vec.rs"
[[test]]
name = "exprtk_test"
path = "tests/exprtk_test.rs"
[[test]]
name = "functional_suite"
path = "tests/functional_suite.rs"
[[test]]
name = "simple_example_01"
path = "tests/simple_example_01.rs"
[[test]]
name = "simple_example_02"
path = "tests/simple_example_02.rs"
[[test]]
name = "simple_example_03"
path = "tests/simple_example_03.rs"
[[test]]
name = "simple_example_04"
path = "tests/simple_example_04.rs"
[[test]]
name = "simple_example_05"
path = "tests/simple_example_05.rs"
[[test]]
name = "simple_example_06"
path = "tests/simple_example_06.rs"
[[test]]
name = "simple_example_07"
path = "tests/simple_example_07.rs"
[[test]]
name = "simple_example_08"
path = "tests/simple_example_08.rs"
[[test]]
name = "simple_example_09"
path = "tests/simple_example_09.rs"
[[test]]
name = "simple_example_10"
path = "tests/simple_example_10.rs"
[[test]]
name = "simple_example_11"
path = "tests/simple_example_11.rs"
[[test]]
name = "simple_example_12"
path = "tests/simple_example_12.rs"
[[test]]
name = "simple_example_13"
path = "tests/simple_example_13.rs"
[[test]]
name = "simple_example_14"
path = "tests/simple_example_14.rs"
[[test]]
name = "simple_example_15"
path = "tests/simple_example_15.rs"
[[test]]
name = "simple_example_16"
path = "tests/simple_example_16.rs"
[[test]]
name = "simple_example_17"
path = "tests/simple_example_17.rs"
[[test]]
name = "simple_example_18"
path = "tests/simple_example_18.rs"
[[test]]
name = "simple_example_19"
path = "tests/simple_example_19.rs"
[[test]]
name = "simple_example_20"
path = "tests/simple_example_20.rs"
[[test]]
name = "simple_example_21"
path = "tests/simple_example_21.rs"
[[test]]
name = "simple_example_22"
path = "tests/simple_example_22.rs"
[[test]]
name = "simple_example_23"
path = "tests/simple_example_23.rs"
[[test]]
name = "simple_example_24"
path = "tests/simple_example_24.rs"
[[bench]]
name = "perf"
path = "benches/perf.rs"
harness = false
[dev-dependencies.criterion]
version = "0.5"