From c90ab54ab0485e482f7f88e2e7b7c1566829f175 Mon Sep 17 00:00:00 2001 From: Matt McCoy Date: Wed, 15 Jun 2016 19:55:55 -0400 Subject: [PATCH] Updating README with more information --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dfb8ad2..a8e77e9 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,14 @@ rust-imap IMAP Client for Rust This client has SSL support. SSL is configured using an SSLContext that is passed into the connect method of a IMAPStream. If no SSL -support is wanted just pass in None. The library rust-openssl is used to support SSL for this project. +support is wanted just pass in None. The library rust-openssl is used to support SSL for this project. [![Build Status](https://travis-ci.org/mattnenterprise/rust-imap.svg)](https://travis-ci.org/mattnenterprise/rust-imap) +[Documentation](http://mattnenterprise.github.io/rust-imap), +[crates.io](https://crates.io/crates/imap). + ### Installation Add imap via your `Cargo.toml`: @@ -34,7 +37,7 @@ fn main() { if let Err(e) = imap_socket.login("username", "password") { println!("Error: {}", e) }; - + match imap_socket.capability() { Ok(capabilities) => { for capability in capabilities.iter() {