-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
51 lines (43 loc) · 1.16 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "exmex"
version = "0.20.3" # check html document root in lib.rs
authors = ["Behrang Shafei <https://github.com/bertiqwerty>"]
edition = "2021"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/exmex"
description = "fast, simple, and extendable mathematical expression evaluator able to compute partial derivatives"
repository = "https://github.com/bertiqwerty/exmex/"
homepage = "https://github.com/bertiqwerty/exmex/"
readme = "README.md"
keywords = ["math", "parser", "expression", "eval", "differentiation"]
categories = ["parser-implementations", "science"]
include = ["**/*.rs", "Cargo.toml"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
regex = "1.10.5"
num = "0.4.3"
smallvec = "1.13.2"
lazy_static = "1.5.0"
serde = { version="1.0.204", optional = true }
[profile.test]
opt-level = 3
[profile.release]
debug = true
[features]
value = []
partial = []
[package.metadata.docs.rs]
all-features = true
[dev-dependencies]
rand = "0.8.5"
itertools = "0.13.0"
criterion = "0.5.1"
fasteval = "0.2.4"
evalexpr = "11.3.0"
serde_test = "1.0.176"
serde_json = "1.0.120"
toml = "0.8.16"
[[bench]]
name = "benchmark"
harness = false