[package]
edition = "2024"
rust-version = "1.85.0"
name = "tinyxml2"
version = "0.1.13"
authors = ["Teebot"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A ground-up Rust implementation of the TinyXML2 API — behavioral compatibility, idiomatic internals"
homepage = "https://github.com/Teebot/tinyxml2-rs"
readme = "README.md"
keywords = [
"xml",
"parser",
"dom",
"tinyxml2",
"serialization",
]
categories = [
"parser-implementations",
"encoding",
"data-structures",
]
license = "MIT"
repository = "https://github.com/Teebot/tinyxml2-rs"
resolver = "2"
[lib]
name = "tinyxml2"
path = "src/lib.rs"
[[test]]
name = "dom_tests"
path = "tests/dom_tests.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[dependencies]
[dev-dependencies]
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"