xso-proc: start making derive macros for FromXml and IntoXml
For now, these macros only support empty elements. Everything else will be rejected with a compile-time error.
This commit is contained in:
parent
9ec9a0f0c6
commit
0adfd1218b
10 changed files with 662 additions and 1 deletions
|
|
@ -12,3 +12,9 @@ license = "MPL-2.0"
|
|||
[dependencies]
|
||||
rxml = { version = "0.11.0", default-features = false }
|
||||
minidom = { version = "^0.15" }
|
||||
xso_proc = { version = "0.0.2", optional = true }
|
||||
|
||||
[features]
|
||||
macros = [ "dep:xso_proc" ]
|
||||
minidom = [ "xso_proc/minidom"]
|
||||
panicking-into-impl = ["xso_proc/panicking-into-impl"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue