[package]
edition = "2021"
name = "kiss_xml"
version = "1.1.0"
authors = ["Christopher Collin Hall"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An easy-to-use minimalist schema-less XML parsing library"
homepage = "https://github.com/DrPlantabyte/kiss-xml/tree/main/"
documentation = "https://docs.rs/kiss-xml/"
readme = "README.md"
keywords = [
"xml",
"parser",
]
categories = [
"config",
"parsing",
"text-processing",
]
license = "MIT"
repository = "https://github.com/DrPlantabyte/kiss-xml"
[lib]
name = "kiss_xml"
path = "src/lib.rs"
[[test]]
name = "api_tests"
path = "tests/api_tests.rs"
[[test]]
name = "escaping_tests"
path = "tests/escaping_tests.rs"
[[test]]
name = "example1"
path = "tests/example1.rs"
[[test]]
name = "example2"
path = "tests/example2.rs"
[[test]]
name = "example3"
path = "tests/example3.rs"
[[test]]
name = "failure_handling"
path = "tests/failure_handling.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "issues"
path = "tests/issues.rs"
[[test]]
name = "misc"
path = "tests/misc.rs"
[[test]]
name = "no_panic_tests"
path = "tests/no_panic_tests.rs"
[[test]]
name = "simple"
path = "tests/simple.rs"
[dependencies.dyn-clone]
version = "1"
[dependencies.regex]
version = "1"
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies]
[lints.rust]
missing_docs = "deny"
unused_must_use = "deny"