expressive/Cargo.toml
Sebastian Schmidt 5e491f6771 Add serde feature
Relates to #18
2019-03-23 12:46:52 +02:00

22 lines
601 B
TOML

[package]
name = "evalexpr"
version = "1.1.1-alpha.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]
#serde = ["serde"]