[package]
edition = "2021"
name = "regexml"
version = "0.2.2"
authors = ["Regexml contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "XPath compatible regex engine"
documentation = "https://docs.rs/regexml"
readme = "README.md"
keywords = [
"regex",
"xml",
"xpath",
"xml-schema",
]
categories = ["text-processing"]
license = "Apache-2.0 OR MPL-2.0"
repository = "https://github.com/Paligo/regexml"
[lib]
name = "regexml"
path = "src/lib.rs"
[[test]]
name = "test_backtrack"
path = "tests/test_backtrack.rs"
[[test]]
name = "test_problems"
path = "tests/test_problems.rs"
[[test]]
name = "test_qt_analyze_string"
path = "tests/test_qt_analyze_string.rs"
[[test]]
name = "test_qt_matches"
path = "tests/test_qt_matches.rs"
[[test]]
name = "test_qt_matches_re"
path = "tests/test_qt_matches_re.rs"
[[test]]
name = "test_qt_perl_matches"
path = "tests/test_qt_perl_matches.rs"
[[test]]
name = "test_qt_replace"
path = "tests/test_qt_replace.rs"
[[test]]
name = "test_qt_tokenize"
path = "tests/test_qt_tokenize.rs"
[[test]]
name = "test_regexml"
path = "tests/test_regexml.rs"
[dependencies.ahash]
version = "0.8.11"
[dependencies.enum_dispatch]
version = "0.3.13"
[dependencies.icu_casemap]
version = "1.5.1"
[dependencies.icu_collections]
version = "1.5.0"
[dependencies.icu_properties]
version = "1.5.1"
[dev-dependencies.insta]
version = "1.42.2"
features = [
"yaml",
"glob",
]