# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.65.0" name = "evalexpr" version = "12.0.1" authors = ["isibboi "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A powerful arithmetic and boolean expression evaluator" homepage = "https://github.com/ISibboI/evalexpr" documentation = "https://docs.rs/evalexpr" readme = "README.md" keywords = [ "expression", "evaluate", "evaluator", "arithmetic", "boolean", ] categories = [ "parsing", "game-engines", ] license = "AGPL-3.0-only" repository = "https://github.com/ISibboI/evalexpr.git" [lib] name = "evalexpr" path = "src/lib.rs" [[bin]] name = "evalexpr" path = "src/bin/evalexpr.rs" [[test]] name = "integration" path = "tests/integration.rs" [[test]] name = "rand" path = "tests/rand.rs" [[test]] name = "regex" path = "tests/regex.rs" [[test]] name = "serde" path = "tests/serde.rs" [[bench]] name = "benchs" path = "benches/benchs.rs" [dependencies.rand] version = "0.8.5" optional = true [dependencies.regex] version = "1.11.1" optional = true [dependencies.serde] version = "1.0.213" features = ["derive"] optional = true [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.rand_pcg] version = "0.3.1" [dev-dependencies.ron] version = "0.8.1" [features] rand = ["dep:rand"] regex = ["dep:regex"] serde = ["dep:serde"] [badges.is-it-maintained-issue-resolution] repository = "ISibboI/evalexpr" [badges.is-it-maintained-open-issues] repository = "ISibboI/evalexpr" [badges.maintenance] status = "actively-developed" [lints.rust.unexpected_cfgs] level = "warn" priority = 0 check-cfg = ["cfg(tarpaulin_include)"]