From 338ca2ec5aacc7e749952adf405b569826893e26 Mon Sep 17 00:00:00 2001 From: lumi Date: Sat, 25 Feb 2017 15:50:55 +0100 Subject: [PATCH] update Cargo.toml, preparing for initial release --- Cargo.toml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3dbd0bc..8b6e1f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,11 +2,20 @@ name = "xmpp" version = "0.1.0" authors = ["lumi "] +description = "A type-safe rust XMPP library. Still under development." +homepage = "https://gitlab.com/lumi/xmpp-rs" +repository = "https://gitlab.com/lumi/xmpp-rs" +documentation = "https://docs.rs/xmpp" +readme = "README.md" +keywords = ["xmpp", "xml"] +categories = ["network-programming"] +license = "LGPL-3.0+" + +[badges] +gitlab = { repository = "lumi/xmpp-rs" } [dependencies] -xml-rs = "*" -openssl = "*" -base64 = "*" - -[dependencies.minidom] -git = "https://gitlab.com/lumi/minidom-rs.git" +xml-rs = "0.3.6" +openssl = "0.9.7" +base64 = "0.4.0" +minidom = "0.1.0"