1[package]
2name = "xso"
3version = "0.0.2"
4edition = "2021"
5description = "XML Streamed Objects: similar to serde, but XML-native."
6homepage = "https://xmpp.rs"
7repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
8keywords = ["xmpp", "xml", "serialization"]
9categories = ["encoding"]
10license = "MPL-2.0"
11
12[dependencies]
13rxml = { version = "0.11.0", default-features = false }
14minidom = { version = "^0.15" }
15xso_proc = { version = "0.0.2", optional = true }
16
17[features]
18macros = [ "dep:xso_proc" ]
19minidom = [ "xso_proc/minidom"]
20panicking-into-impl = ["xso_proc/panicking-into-impl"]