Cargo.toml

 1[package]
 2name = "xmpp-parsers"
 3version = "0.10.0"
 4authors = [
 5  "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
 6  "Maxime “pep” Buquet <pep+code@bouah.net>",
 7]
 8description = "Collection of parsers and serialisers for XMPP extensions"
 9homepage = "https://hg.linkmauve.fr/xmpp-parsers"
10repository = "https://hg.linkmauve.fr/xmpp-parsers"
11keywords = ["xmpp", "xml"]
12categories = ["parsing", "network-programming"]
13license = "MPL-2.0"
14
15[dependencies]
16minidom = "0.9.1"
17jid = { version = "0.5.2", features = ["minidom"] }
18base64 = "0.9.2"
19digest = "0.7.5"
20sha-1 = "0.7.0"
21sha2 = "0.7.1"
22sha3 = "0.7.3"
23blake2 = "0.7.1"
24chrono = "0.4.5"
25try_from = "0.2.2"
26
27[features]
28# Build xmpp-parsers to make components instead of clients.
29component = []