[package]
edition = "2021"
name = "elo-rust"
version = "0.4.1"
authors = ["FraiseQL Project"]
build = false
exclude = [
"target/",
".git/",
".github/",
"docs/",
".gitignore",
".releaserc.json",
"release.toml",
"commitlint.config.js",
"CHANGELOG.md",
"RELEASE_GUIDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust code generation target for ELO validation language"
readme = "README.md"
keywords = [
"validation",
"elo",
"code-generation",
"rust",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT"
repository = "https://github.com/evoludigit/elo-rust"
[features]
default = ["runtime"]
runtime = []
serde-support = [
"serde",
"serde_json",
]
[lib]
name = "elo_rust"
path = "src/lib.rs"
[[bin]]
name = "elo"
path = "src/bin/elo.rs"
[[example]]
name = "actix_validator"
path = "examples/actix_validator.rs"
required-features = ["serde-support"]
[[example]]
name = "axum_validator"
path = "examples/axum_validator.rs"
required-features = ["serde-support"]
[[example]]
name = "simple_validator"
path = "examples/simple_validator.rs"
[[test]]
name = "advanced_expressions"
path = "tests/advanced_expressions.rs"
[[test]]
name = "array_functions"
path = "tests/array_functions.rs"
[[test]]
name = "ast_visitor"
path = "tests/ast_visitor.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "codegen_advanced"
path = "tests/codegen_advanced.rs"
[[test]]
name = "codegen_coverage"
path = "tests/codegen_coverage.rs"
[[test]]
name = "datetime_functions"
path = "tests/datetime_functions.rs"
[[test]]
name = "edge_case_coverage"
path = "tests/edge_case_coverage.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "function_error_paths"
path = "tests/function_error_paths.rs"
[[test]]
name = "function_generator_extended"
path = "tests/function_generator_extended.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "logical_ops"
path = "tests/logical_ops.rs"
[[test]]
name = "macro_usage"
path = "tests/macro_usage.rs"
[[test]]
name = "operators"
path = "tests/operators.rs"
[[test]]
name = "string_functions"
path = "tests/string_functions.rs"
[[test]]
name = "temporal_integration"
path = "tests/temporal_integration.rs"
[[test]]
name = "type_mapping"
path = "tests/type_mapping.rs"
[[test]]
name = "type_system_advanced"
path = "tests/type_system_advanced.rs"
[[bench]]
name = "parsing"
path = "benches/parsing.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
optional = true
[dependencies.serde_json]
version = "1.0"
optional = true
[dependencies.syn]
version = "2.0"
features = ["full"]
[dev-dependencies.actix-web]
version = "4"
[dev-dependencies.axum]
version = "0.7"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[profile.bench]
inherits = "release"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1