2016-11-16 16:12:26 +00:00
|
|
|
[package]
|
2019-03-15 10:12:17 +00:00
|
|
|
name = "evalexpr"
|
2019-03-23 14:16:03 +00:00
|
|
|
version = "1.2.1-alpha.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"
|
|
|
|
|
|
|
|
[lib]
|
2019-03-15 10:12:17 +00:00
|
|
|
name = "evalexpr"
|
2016-11-16 16:12:26 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-03-23 10:46:52 +00:00
|
|
|
serde = { version = "1", optional = true}
|
2016-11-21 23:51:18 +00:00
|
|
|
|
2019-03-23 13:20:43 +00:00
|
|
|
[features]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-03-23 13:37:33 +00:00
|
|
|
ron = "0.4"
|