Cargo.toml

 1[package]
 2name = "xmpp-parsers"
 3version = "0.9.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 = { version = "0.8.0" }
17jid = { version = "0.5.0", features = ["minidom"] }
18base64 = "0.9.0"
19digest = "0.7.1"
20sha-1 = "0.7.0"
21sha2 = "0.7.0"
22sha3 = "0.7.0"
23blake2 = "0.7.0"
24chrono = "0.4.0"
25try_from = "0.2.2"
26
27[features]
28# Build xmpp-parsers to make components instead of clients.
29component = []