expressive/Cargo.toml
2019-03-28 15:03:56 +01:00

25 lines
607 B
TOML

[package]
name = "evalexpr"
version = "3.0.0"
description = "A powerful arithmetic and boolean expression evaluator"
keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"]
categories = ["parsing", "game-engines"]
authors = ["isibboi <isibboi@gmail.com>"]
repository = "https://github.com/ISibboI/evalexpr.git"
homepage = "https://github.com/ISibboI/evalexpr"
documentation = "https://docs.rs/evalexpr"
readme = "README.md"
license = "MIT"
[lib]
name = "evalexpr"
path = "src/lib.rs"
[dependencies]
serde = { version = "1", optional = true}
[features]
[dev-dependencies]
ron = "0.4"