Some initial work on xml parsing

This commit is contained in:
Lennart
2024-11-24 15:09:34 +01:00
parent 7dfa0c9062
commit a9ef680c30
14 changed files with 1132 additions and 0 deletions

12
crates/xml/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "rustical_xml"
version.workspace = true
edition.workspace = true
description.workspace = true
repository.workspace = true
[dependencies]
heck = "0.5.0"
quick-xml.workspace = true
thiserror.workspace = true
xml_derive = { path = "./derive" }