[package]
edition = "2021"
name = "uppsala"
version = "0.3.0"
build = false
exclude = [
"test-data/",
"perf.data",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust XML parser, DOM, namespace, XPath, and XSD validation library"
readme = "README.md"
keywords = [
"xml",
"dom",
"xpath",
"xsd",
"parser",
]
categories = [
"parser-implementations",
"encoding",
"web-programming",
]
license = "BSD-2-Clause"
repository = "https://github.com/kushaldas/uppsala"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "uppsala"
path = "src/lib.rs"
[[example]]
name = "build_xml"
path = "examples/build_xml.rs"
[[example]]
name = "parse_and_query"
path = "examples/parse_and_query.rs"
[[example]]
name = "validate_schema"
path = "examples/validate_schema.rs"
[[test]]
name = "namespace_conformance"
path = "tests/namespace_conformance.rs"
[[test]]
name = "range_conformance"
path = "tests/range_conformance.rs"
[[test]]
name = "serialization_conformance"
path = "tests/serialization_conformance.rs"
[[test]]
name = "w3c_xmlconf"
path = "tests/w3c_xmlconf.rs"
[[test]]
name = "w3c_xsts"
path = "tests/w3c_xsts.rs"
[[test]]
name = "xml_conformance"
path = "tests/xml_conformance.rs"
[[test]]
name = "xpath_conformance"
path = "tests/xpath_conformance.rs"
[[test]]
name = "xsd_conformance"
path = "tests/xsd_conformance.rs"
[dependencies]
[dev-dependencies]