[package]
edition = "2021"
rust-version = "1.75"
name = "rxeval"
version = "0.1.1"
authors = ["André Leite <leite@de.ufpe.br>"]
build = false
exclude = [
"docs/",
"r-package/",
"scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Evaluate ODK/OpenRosa XForms logic: XPath with the OpenRosa extensions, over a form instance"
homepage = "https://milkway.github.io/rxeval/"
documentation = "https://docs.rs/rxeval"
readme = "README.md"
keywords = [
"odk",
"xforms",
"xpath",
"openrosa",
"survey",
]
categories = ["parser-implementations"]
license = "BSD-2-Clause"
repository = "https://github.com/milkway/rxeval"
[features]
default = ["regex"]
regex = ["dep:regex"]
[lib]
name = "rxeval"
path = "src/lib.rs"
[[test]]
name = "ecosystem_oracle_test"
path = "tests/ecosystem_oracle_test.rs"
[[test]]
name = "portability_test"
path = "tests/portability_test.rs"
[[test]]
name = "psu_oracle_test"
path = "tests/psu_oracle_test.rs"
[[test]]
name = "rules_test"
path = "tests/rules_test.rs"
[[test]]
name = "session_test"
path = "tests/session_test.rs"
[[test]]
name = "xpath_test"
path = "tests/xpath_test.rs"
[dependencies.regex]
version = "1"
optional = true
[dev-dependencies.rxform]
version = "0.1.2"
[dev-dependencies.serde_json]
version = "1"