-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (42 loc) · 1.04 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (42 loc) · 1.04 KB
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
52
[package]
name = "fee"
version = "0.2.3"
edition = "2024"
authors = ["Borja Castellano <borjacastellano1@gmail.com>"]
description = "Expression evaluator supporting numeric, logical and bitwise operators"
keywords = ["math", "expression", "parser", "evaluator", "scientific"]
categories = ["mathematics", "science", "parser-implementations"]
repository = "https://github.com/ZocoLini/fee"
documentation = "https://docs.rs/fee"
license = "MIT OR Apache-2.0"
readme = "README.md"
[dependencies]
ahash = { version = "0.8.12" }
thiserror = { version = "2.0.16" }
smallvec = { version = "1.15.1" }
[features]
default = []
[dev-dependencies]
criterion = { version = "0.7.0" }
# Other expr evaluator to compite against
evalexpr = "12.0.2"
meval = "0.2.0"
fasteval = "0.2.4"
[profile.bench]
opt-level = 3
debug = false
lto = "fat"
overflow-checks = false
incremental = false
[[bench]]
name = "bench_resolve"
harness = false
[[bench]]
name = "bench_eval"
harness = false
[[bench]]
name = "bench_parse"
harness = false
[[bench]]
name = "bench_cmp"
harness = false