[package]
edition = "2021"
rust-version = "1.75"
name = "simdxml"
version = "0.2.1"
build = false
exclude = [
"testdata/",
"benches/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SIMD-accelerated XML parser with full XPath 1.0 support"
readme = "README.md"
keywords = [
"xml",
"xpath",
"simd",
"parser",
"performance",
]
categories = [
"parser-implementations",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/simdxml/simdxml"
[lib]
name = "simdxml"
path = "src/lib.rs"
[[test]]
name = "bug_regression"
path = "tests/bug_regression.rs"
[[test]]
name = "libxml2_conformance"
path = "tests/libxml2_conformance.rs"
[[test]]
name = "pugixml_conformance"
path = "tests/pugixml_conformance.rs"
[[test]]
name = "xpath_edge_cases"
path = "tests/xpath_edge_cases.rs"
[dependencies.memchr]
version = "2"
[dependencies.memmap2]
version = "0.9"
[dependencies.nom]
version = "7"
[dependencies.thiserror]
version = "2"
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.quick-xml]
version = "0.37"
[dev-dependencies.roxmltree]
version = "0.20"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.xml-rs]
version = "0.8"