Cargo.toml

 1[package]
 2name = "xso_proc"
 3version = "0.2.0"
 4authors = [
 5  "Jonas Schäfer <jonas@zombofant.net>",
 6]
 7description = "Macro implementation of #[derive(FromXml, AsXml)]"
 8homepage = "https://xmpp.rs"
 9repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
10keywords = ["xso", "derive", "serialization"]
11license = "MPL-2.0"
12edition = "2021"
13# we need const_refs_to_static, stabilized with 1.83
14rust-version = "1.83"
15
16[lib]
17proc-macro = true
18
19[dependencies]
20quote = "1"
21syn = { version = "2", features = ["full", "extra-traits"] }
22proc-macro2 = "1"
23rxml_validation = { version = "0.11", default-features = false, features = ["std"] }
24
25[features]
26panicking-into-impl = ["minidom"]
27minidom = []