anyxml 0.6.0

A fully spec-conformant XML library
Documentation
[workspace]
members = ["anyxml-automata", "anyxml-uri"]
package.edition = "2024"
package.authors = ["tayu0110"]
package.license = "MIT"
package.repository = "https://github.com/tayu0110/anyxml.git"
package.rust-version = "1.89.0"

[package]
name = "anyxml"
version = "0.6.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "A fully spec-conformant XML library"
keywords = ["xml", "dtd", "xpath", "catalog"]
rust-version.workspace = true

[dependencies]
anyxml-uri = { path = "./anyxml-uri", version = "0.1.4" }
anyxml-automata = { path = "./anyxml-automata", version = "0.1.1" }
clap = { version = "4.5.47", features = ["derive"] }


[[bin]]
name = "xmlprocess"
path = "src/bin/xmlprocess.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 = "xpath-test"
path = "tests/xpath-test.rs"

[[test]]
name = "catalog-test"
path = "tests/catalog-test.rs"


[lints.clippy]
type_complexity = "allow"
too_many_arguments = "allow"