1[package]
2name = "xmpp-parsers"
3version = "0.15.0"
4authors = [
5 "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
6 "Maxime “pep” Buquet <pep@bouah.net>",
7]
8description = "Collection of parsers and serialisers for XMPP extensions"
9homepage = "https://gitlab.com/xmpp-rs/xmpp-parsers"
10repository = "https://gitlab.com/xmpp-rs/xmpp-parsers"
11keywords = ["xmpp", "jabber", "xml"]
12categories = ["parsing", "network-programming"]
13license = "MPL-2.0"
14edition = "2018"
15
16[dependencies]
17minidom = "0.11.0"
18jid = { version = "0.7.0", features = ["minidom"] }
19base64 = "0.10"
20digest = "0.8"
21sha-1 = "0.8"
22sha2 = "0.8"
23sha3 = "0.8"
24blake2 = "0.8"
25chrono = "0.4.5"
26
27[features]
28# Build xmpp-parsers to make components instead of clients.
29component = []
30# Disable validation of unknown attributes.
31disable-validation = []
32
33[package.metadata.docs.rs]
34rustdoc-args = [ "--sort-modules-by-appearance", "-Zunstable-options" ]