[package] name = "xmpp-derive" version = "0.1.3" authors = ["Freyskeyd "] description = """ xmpp-rs is an implementation of the Extensible Messaging and Presence Protocol (XMPP). Based on tokio-rs and futures-rs. It's goal is to be fully tested and usable. This library is splitted in 3 crates (client, server, proto). As defined by the naming, you can use every crate independently. xmpp-client: will allow you to build a client. xmpp-server: is an implementation of XMPP on server side. xmpp-rs: Grab both client and server in a single crate. """ license = "MPL-2.0" documentation = "https://docs.rs/xmpp-derive" repository = "https://github.com/Freyskeyd/xmpp-rs" readme = "../README.md" keywords = ["xmpp", "tokio", "jabber", "IM", "instant-messaging"] categories = ["network-programming"] [lib] proc-macro = true [dependencies] syn = {version = "0.11.10", features = ["full"]} quote = "0.3.15" xmpp-proto = "0" serde_codegen_internals = "0.14.2"