1[package]
2name = "xmpp"
3version = "0.2.0"
4authors = ["lumi <lumi@pew.im>"]
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.3.6"
19openssl = "0.9.7"
20base64 = "0.5.2"
21minidom = "0.2.0"
22jid = "0.2.0"
23sasl = "0.3.0"
24sha-1 = "0.3.2"
25
26[features]
27insecure = []