1[package]
2name = "xmpp"
3version = "0.2.0"
4authors = ["lumi <lumi@pew.im>", "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>"]
5description = "A type-safe rust XMPP library. Still under development."
6homepage = "https://gitlab.com/lumi/xmpp-rs"
7repository = "https://gitlab.com/lumi/xmpp-rs"
8documentation = "https://docs.rs/xmpp"
9readme = "README.md"
10keywords = ["xmpp", "xml"]
11categories = ["network-programming"]
12license = "LGPL-3.0+"
13
14[badges]
15gitlab = { repository = "lumi/xmpp-rs" }
16
17[dependencies]
18xml-rs = "0.4.1"
19xmpp-parsers = "0.5.0"
20openssl = "0.9.12"
21base64 = "0.5.2"
22minidom = "0.4.1"
23jid = "0.2.1"
24sasl = "0.4.0"
25sha-1 = "0.3.3"
26
27[features]
28insecure = []