1
0
mirror of https://gitlab.com/xmpp-rs/xmpp-rs.git synced 2024-06-09 09:44:03 +02:00
xmpp-rs/parsers-macros/Cargo.toml
Jonas Schäfer decbeb351f parsers-macros: introduce Field trait and object
This simplifies the code of FieldDef and makes it more extensible for
future ideas.
2024-04-05 15:53:48 +02:00

22 lines
548 B
TOML

[package]
name = "xmpp-parsers-macros"
version = "0.1.0"
authors = [
"Jonas Schäfer <jonas@zombofant.net>",
]
description = "Macros for easier definition of XMPP structs (see xmpp-parsers)"
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
keywords = ["xmpp", "jabber", "xml"]
categories = ["parsing", "network-programming"]
license = "MPL-2.0"
edition = "2021"
[lib]
proc-macro = true
[dependencies]
quote = "^1"
syn = { version = "^2", features = ["full", "extra-traits"] }
proc-macro2 = "^1"