xmpp-rs/xso-proc/Cargo.toml
Jonas Schäfer 1710a6f99e Release all crates
Since we tie the versions rather tightly, we have to release the entire
bunch in order to allow people to upgrade to rxml 0.14.
2026-06-11 17:25:32 +02:00

27 lines
681 B
TOML

[package]
name = "xso_proc"
version = "0.3.0"
authors = [
"Jonas Schäfer <jonas@zombofant.net>",
]
description = "Macro implementation of #[derive(FromXml, AsXml)]"
homepage = "https://xmpp.rs"
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
keywords = ["xso", "derive", "serialization"]
license = "MPL-2.0"
edition = "2021"
# we need const_refs_to_static, stabilized with 1.83
rust-version = "1.83"
[lib]
proc-macro = true
[dependencies]
quote = "1"
syn = { version = "2", features = ["full", "extra-traits"] }
proc-macro2 = "1"
rxml_validation = { version = "0.12", default-features = false, features = ["std"] }
[features]
panicking-into-impl = ["minidom"]
minidom = []