[package]
edition = "2024"
rust-version = "1.85"
name = "adf"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal-overhead Auto-lead Data Format XML parser and writer"
homepage = "https://github.com/idknerdyshit/adf"
documentation = "https://docs.rs/adf"
readme = "README.md"
keywords = [
"adf",
"auto-lead",
"xml",
"leads",
"serialization",
]
categories = [
"encoding",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/idknerdyshit/adf"
[lib]
name = "adf"
path = "src/lib.rs"
[[test]]
name = "core"
path = "tests/core.rs"
[dependencies.quick-xml]
version = "0.38.4"
[dependencies.tracing]
version = "0.1.41"
features = ["std"]
default-features = false
[dev-dependencies.insta]
version = "1.43"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.tracing-subscriber]
version = "0.3.20"
features = [
"fmt",
"std",
]
default-features = false
[lints.clippy]
await_holding_lock = "deny"
await_holding_refcell_ref = "deny"
clone_on_ref_ptr = "warn"
dbg_macro = "deny"
implicit_clone = "warn"
inefficient_to_string = "warn"
large_enum_variant = "warn"
large_futures = "warn"
large_stack_frames = "warn"
large_types_passed_by_value = "warn"
manual_string_new = "warn"
mutex_atomic = "warn"
needless_collect = "warn"
print_stderr = "warn"
print_stdout = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_clone = "warn"
str_to_string = "warn"
todo = "deny"
unimplemented = "deny"
unnecessary_box_returns = "warn"
unused_self = "warn"
wildcard_imports = "warn"
[lints.rust]
unsafe_code = "forbid"