[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.4.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "A fully spec-conformant XML library"
keywords = ["xml", "dtd"]
rust-version.workspace = true
[dependencies]
anyxml-uri = { path = "./anyxml-uri", version = "0.1.2" }
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"
[lints.clippy]
type_complexity = "allow"
too_many_arguments = "allow"