[package]
edition = "2024"
name = "dsntk-feel-parser"
version = "0.3.0"
authors = ["Dariusz Depta <depta@engos.de>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ÐecisionToolkit | FEEL parser"
homepage = "https://decision-toolkit.org"
documentation = "https://docs.rs/dsntk-feel-parser"
readme = "README.md"
keywords = [
"dmn",
"decision",
"toolkit",
"parser",
]
categories = [
"development-tools",
"command-line-utilities",
"finance",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DecisionToolkit/dsntk.git"
resolver = "2"
[features]
parsing-tables = []
[lib]
name = "dsntk_feel_parser"
path = "src/lib.rs"
[[test]]
name = "boxed_expression"
path = "tests/boxed_expression.rs"
[[test]]
name = "context"
path = "tests/context.rs"
[[test]]
name = "expression"
path = "tests/expression.rs"
[[test]]
name = "simple_expression"
path = "tests/simple_expression.rs"
[[test]]
name = "simple_expressions"
path = "tests/simple_expressions.rs"
[[test]]
name = "simple_range_literal"
path = "tests/simple_range_literal.rs"
[[test]]
name = "simple_value"
path = "tests/simple_value.rs"
[[test]]
name = "unary_tests"
path = "tests/unary_tests.rs"
[[bench]]
name = "addition"
path = "benches/addition.rs"
[[bench]]
name = "context"
path = "benches/context.rs"
[[bench]]
name = "division"
path = "benches/division.rs"
[[bench]]
name = "filter"
path = "benches/filter.rs"
[[bench]]
name = "function_definition"
path = "benches/function_definition.rs"
[[bench]]
name = "quantified_expression"
path = "benches/quantified_expression.rs"
[dependencies.antex]
version = "0.2.1"
[dependencies.dsntk-common]
version = "0.3.0"
[dependencies.dsntk-feel]
version = "0.3.0"
[dependencies.dsntk-macros]
version = "0.3.0"
[dev-dependencies.difference]
version = "2.0.0"
[build-dependencies.dsntk-feel-grammar]
version = "0.3.0"