-
Notifications
You must be signed in to change notification settings - Fork 55
/
Cargo.toml
43 lines (37 loc) · 1.23 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
[package]
name = "evalexpr"
version = "12.0.2"
description = "A powerful arithmetic and boolean expression evaluator"
keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"]
categories = ["parsing", "game-engines"]
authors = ["isibboi <[email protected]>"]
repository = "https://github.com/ISibboI/evalexpr.git"
homepage = "https://github.com/ISibboI/evalexpr"
documentation = "https://docs.rs/evalexpr"
readme = "README.md"
license = "AGPL-3.0-only"
edition = "2021"
rust-version = "1.65.0"
[badges]
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "ISibboI/evalexpr" }
is-it-maintained-open-issues = { repository = "ISibboI/evalexpr" }
[lib]
name = "evalexpr"
path = "src/lib.rs"
[dependencies]
regex = { version = "1.11.1", optional = true }
serde = { version = "1.0.213", features = ["derive"], optional = true }
rand = { version = "0.8.5", optional = true }
# num-traits = { version = "0.2.19", optional = true }
[features]
serde = ["dep:serde"]
regex = ["dep:regex"]
rand = ["dep:rand"]
# num-traits = ["dep:num-traits"]
[dev-dependencies]
ron = "0.8.1"
rand = "0.8.5"
rand_pcg = "0.3.1"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }