Cargo.toml

 1[package]
 2name = "xmpp-parsers"
 3version = "0.19.2"
 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-rs"
10repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
11keywords = ["xmpp", "jabber", "xml"]
12categories = ["parsing", "network-programming"]
13license = "MPL-2.0"
14edition = "2018"
15
16[dependencies]
17minidom = "0.15"
18jid = { version = "0.9", features = ["minidom"] }
19base64 = "0.21"
20digest = "0.10"
21sha1 = "0.10"
22sha2 = "0.10"
23sha3 = "0.10"
24blake2 = "0.10.4"
25chrono = { version = "0.4.5", default-features = false, features = ["std"] }
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" ]