From 50b6267a350cfdb0d23f505ee3cd706053610859 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Fri, 29 Sep 2017 22:26:49 -0400 Subject: [PATCH] Add more info to Cargo.toml (#42) crates.io also requires a version change for this to be made visible. --- Cargo.toml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9f0e7ca..cb0cc5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,24 @@ [package] name = "imap" -version = "0.4.0" -authors = ["Matt McCoy "] +version = "0.4.1" +authors = ["Matt McCoy ", + "Jon Gjengset "] documentation = "https://docs.rs/imap/" repository = "https://github.com/mattnenterprise/rust-imap" homepage = "https://github.com/mattnenterprise/rust-imap" description = "IMAP client for Rust" readme = "README.md" license = "Apache-2.0/MIT" -keywords = ["imap"] + +keywords = ["email", "imap"] +categories = ["email", "network-programming"] + +[badges] +travis-ci = { repository = "mattnenterprise/rust-imap" } +appveyor = { repository = "mattnenterprise/rust-imap", branch = "master", service = "github" } +coveralls = { repository = "mattnenterprise/rust-imap", branch = "master", service = "github" } +maintenance = { status = "passively-maintained" } [lib] name = "imap"