0adfd1218b
For now, these macros only support empty elements. Everything else will be rejected with a compile-time error.
20 lines
580 B
TOML
20 lines
580 B
TOML
[package]
|
|
name = "xso"
|
|
version = "0.0.2"
|
|
edition = "2021"
|
|
description = "XML Streamed Objects: similar to serde, but XML-native."
|
|
homepage = "https://xmpp.rs"
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
keywords = ["xmpp", "xml", "serialization"]
|
|
categories = ["encoding"]
|
|
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"]
|