2016-11-16 16:12:26 +00:00
|
|
|
[package]
|
2019-03-15 10:12:17 +00:00
|
|
|
name = "evalexpr"
|
2023-05-21 07:43:34 +00:00
|
|
|
version = "10.0.0"
|
2019-03-20 11:09:09 +00:00
|
|
|
description = "A powerful arithmetic and boolean expression evaluator"
|
2019-03-19 10:30:08 +00:00
|
|
|
keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"]
|
2019-03-20 11:09:09 +00:00
|
|
|
categories = ["parsing", "game-engines"]
|
2019-03-19 10:26:36 +00:00
|
|
|
authors = ["isibboi <isibboi@gmail.com>"]
|
|
|
|
repository = "https://github.com/ISibboI/evalexpr.git"
|
|
|
|
homepage = "https://github.com/ISibboI/evalexpr"
|
2019-03-15 10:12:17 +00:00
|
|
|
documentation = "https://docs.rs/evalexpr"
|
2016-11-16 16:12:26 +00:00
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
2019-06-06 17:53:30 +00:00
|
|
|
edition = "2018"
|
2023-04-13 12:25:47 +00:00
|
|
|
rust-version = "1.56.1"
|
2016-11-16 16:12:26 +00:00
|
|
|
|
2019-09-13 15:24:08 +00:00
|
|
|
[badges]
|
2019-09-13 15:38:15 +00:00
|
|
|
maintenance = { status = "actively-developed" }
|
2019-09-13 15:36:02 +00:00
|
|
|
is-it-maintained-issue-resolution = { repository = "ISibboI/evalexpr" }
|
2019-09-13 15:33:21 +00:00
|
|
|
is-it-maintained-open-issues = { repository = "ISibboI/evalexpr" }
|
2019-09-13 15:24:08 +00:00
|
|
|
|
2016-11-16 16:12:26 +00:00
|
|
|
[lib]
|
2019-03-15 10:12:17 +00:00
|
|
|
name = "evalexpr"
|
2016-11-16 16:12:26 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-14 11:19:35 +00:00
|
|
|
regex = { version = "1.5.5", optional = true}
|
2022-02-20 07:54:24 +00:00
|
|
|
serde = { version = "1.0.133", optional = true}
|
|
|
|
serde_derive = { version = "1.0.133", optional = true}
|
2022-04-20 18:55:17 +00:00
|
|
|
rand = { version = "0.8.5", optional = true}
|
2016-11-21 23:51:18 +00:00
|
|
|
|
2019-03-23 13:20:43 +00:00
|
|
|
[features]
|
2019-03-28 14:39:50 +00:00
|
|
|
serde_support = ["serde", "serde_derive"]
|
2019-04-07 06:10:36 +00:00
|
|
|
regex_support = ["regex"]
|
2019-03-23 13:20:43 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-20 07:54:24 +00:00
|
|
|
ron = "0.7.0"
|
2022-03-30 12:39:26 +00:00
|
|
|
rand = "0.8.5"
|
2022-02-20 07:54:24 +00:00
|
|
|
rand_pcg = "0.3.1"
|