[dependencies.ariadne]
version = "0.4"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.pest]
version = "2.7"
[dependencies.pest_derive]
version = "2.7"
[dependencies.regex]
version = "1.0"
[dependencies.rust_decimal]
features = ["serde"]
version = "1.33"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.proptest]
version = "1.4"
[lib]
crate-type = ["cdylib", "rlib"]
name = "lemma"
path = "src/lib.rs"
[package]
authors = ["benrogmans <ben@amrai.nl>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parser-implementations", "development-tools"]
description = "The programming language that means business."
documentation = "https://docs.rs/lemma-engine"
edition = "2021"
homepage = "https://github.com/benrogmans/lemma"
keywords = ["logic", "rules", "declarative", "dsl", "rust"]
license = "Apache-2.0"
name = "lemma-engine"
readme = "README.md"
repository = "https://github.com/benrogmans/lemma"
resolver = "3"
version = "0.6.2"
[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2.104"
[[test]]
name = "currency_validation_test"
path = "tests/currency_validation_test.rs"
[[test]]
name = "datetime_edge_cases_test"
path = "tests/datetime_edge_cases_test.rs"
[[test]]
name = "empty_input_test"
path = "tests/empty_input_test.rs"
[[test]]
name = "end_to_end_test"
path = "tests/end_to_end_test.rs"
[[test]]
name = "equal_operator_test"
path = "tests/equal_operator_test.rs"
[[test]]
name = "error_messages_test"
path = "tests/error_messages_test.rs"
[[test]]
name = "integration_comprehensive_test"
path = "tests/integration_comprehensive_test.rs"
[[test]]
name = "json_serializer_test"
path = "tests/json_serializer_test.rs"
[[test]]
name = "modulo_power_test"
path = "tests/modulo_power_test.rs"
[[test]]
name = "property_based_test"
path = "tests/property_based_test.rs"
[[test]]
name = "rule_type_consistency_test"
path = "tests/rule_type_consistency_test.rs"
[[test]]
name = "rule_type_validation_test"
path = "tests/rule_type_validation_test.rs"
[[test]]
name = "semantic_validation_test"
path = "tests/semantic_validation_test.rs"
[[test]]
name = "semantic_validator_test"
path = "tests/semantic_validator_test.rs"
[[test]]
name = "timezone_test"
path = "tests/timezone_test.rs"
[[test]]
name = "type_aware_arithmetic_test"
path = "tests/type_aware_arithmetic_test.rs"
[[test]]
name = "typed_values_test"
path = "tests/typed_values_test.rs"
[[test]]
name = "unit_comparison_test"
path = "tests/unit_comparison_test.rs"
[[test]]
name = "unit_conversion_test"
path = "tests/unit_conversion_test.rs"
[[test]]
name = "unit_percentage_operations_test"
path = "tests/unit_percentage_operations_test.rs"
[[test]]
name = "validator_type_checking_test"
path = "tests/validator_type_checking_test.rs"
[[test]]
name = "veto_test"
path = "tests/veto_test.rs"