[package]
edition = "2024"
name = "upf"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library for reading UPF text into typed structs and writing validated UpfData back to UPF"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ShapelessCat/upf"
[lib]
name = "upf"
path = "src/lib.rs"
[[test]]
name = "core_parse"
path = "tests/core_parse.rs"
[[test]]
name = "invalid_sections"
path = "tests/invalid_sections.rs"
[[test]]
name = "nonlocal_parse"
path = "tests/nonlocal_parse.rs"
[[test]]
name = "paw_gipaw_parse"
path = "tests/paw_gipaw_parse.rs"
[[test]]
name = "read_api"
path = "tests/read_api.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "write_api"
path = "tests/write_api.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.env_logger]
version = "0.11.10"
[dependencies.log]
version = "0.4.29"
[dependencies.quick-xml]
version = "0.39.2"
features = ["serialize"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_with]
version = "3.18.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.validify]
version = "2.0.0"