From 765a939873f38c90a96868ddfc811f85ca09f7be Mon Sep 17 00:00:00 2001 From: Matt McCoy Date: Wed, 15 Jun 2016 19:56:18 -0400 Subject: [PATCH] Updating Cargo.toml file with more data --- Cargo.toml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aef8c34..5509f40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,16 +1,22 @@ [package] name = "imap" -version = "0.0.5" +version = "0.0.6" authors = ["Matt McCoy "] +documentation = "http://mattnenterprise.github.io/rust-imap" repository = "https://github.com/mattnenterprise/rust-imap" description = "IMAP client for Rust" readme = "README.md" license = "Apache-2.0/MIT" +keywords = ["imap"] + +[lib] +name = "imap" +path = "src/lib.rs" [dependencies] -openssl = "*" -regex = "*" +openssl = "0.7.13" +regex = "0.1.71" [[bin]] name = "example"