[package]
edition = "2024"
rust-version = "1.89.0"
name = "anyxml"
version = "0.10.3"
authors = ["tayu0110"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fully spec-conformant XML library"
readme = "README.md"
keywords = [
"xml",
"dtd",
"xpath",
"catalog",
"relaxng",
]
license = "MIT"
repository = "https://github.com/tayu0110/anyxml.git"
[lib]
name = "anyxml"
path = "src/lib.rs"
[[test]]
name = "c14n-test"
path = "tests/c14n-test.rs"
[[test]]
name = "catalog-test"
path = "tests/catalog-test.rs"
[[test]]
name = "relaxng-test"
path = "tests/relaxng-test.rs"
[[test]]
name = "sax-test"
path = "tests/sax-test.rs"
[[test]]
name = "stax-test"
path = "tests/stax-test.rs"
[[test]]
name = "tree-test"
path = "tests/tree-test.rs"
[[test]]
name = "xinclude-test"
path = "tests/xinclude-test.rs"
[[test]]
name = "xpath-test"
path = "tests/xpath-test.rs"
[[test]]
name = "xpointer-test"
path = "tests/xpointer-test.rs"
[dependencies.anyxml-automata]
version = "^0.1"
[dependencies.anyxml-encoding]
version = "^0.1"
[dependencies.anyxml-uri]
version = "^0.1"
[lints.clippy]
enum_variant_names = "allow"
too_many_arguments = "allow"
type_complexity = "allow"