[package]
edition = "2024"
rust-version = "1.85.0"
name = "tinyxml2-bench"
version = "0.1.13"
authors = ["Teebot"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Benchmark suite for tinyxml2-rs"
homepage = "https://github.com/Teebot/tinyxml2-rs"
readme = false
license = "MIT"
repository = "https://github.com/Teebot/tinyxml2-rs"
resolver = "2"
[lib]
name = "tinyxml2_bench"
path = "src/lib.rs"
[[bench]]
name = "dom"
path = "benches/dom.rs"
harness = false
[[bench]]
name = "parse"
path = "benches/parse.rs"
harness = false
[[bench]]
name = "serialize"
path = "benches/serialize.rs"
harness = false
[dependencies.tinyxml2]
version = "0.1.13"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[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"