[package]
edition = "2024"
rust-version = "1.88"
name = "redispatch-xml"
version = "0.4.0"
authors = ["hupe1980"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Redispatch 2.0 XML/XSD format parsing and validation for the German electricity grid (CIM/ENTSO-E-based, per BDEW specifications)"
readme = "README.md"
keywords = [
"redispatch",
"xml",
"xsd",
"energy",
"bdew",
]
categories = [
"encoding",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hupe1980/mako"
resolver = "2"
[features]
bundled-schemas = []
[lib]
name = "redispatch_xml"
path = "src/lib.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[dependencies.quick-xml]
version = "0.40"
features = ["serialize"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"std",
"macros",
"serde-well-known",
"parsing",
"formatting",
]