From 85d34f37352e56e72a7677f3cf97e4afd078be6c Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Sun, 17 Mar 2019 12:46:14 -0400 Subject: [PATCH] Move to travis-ci.com --- README.md | 4 ++-- README.tpl | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0967b82..df37645 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,14 @@ [![Crate Version](https://img.shields.io/crates/v/imap.svg)](https://crates.io/crates/imap) [![Documentation](https://docs.rs/imap/badge.svg)](https://docs.rs/imap/) [![Crate License](https://img.shields.io/crates/l/imap.svg)](https://crates.io/crates/imap) -[![Build Status](https://travis-ci.org/jonhoo/rust-imap.svg)](https://travis-ci.org/jonhoo/rust-imap) +[![Build Status](https://travis-ci.com/jonhoo/rust-imap.svg)](https://travis-ci.com/jonhoo/rust-imap) [![Coverage Status](https://codecov.io/gh/jonhoo/rust-imap/branch/master/graph/badge.svg)](https://codecov.io/gh/jonhoo/rust-imap) This crate lets you connect to and interact with servers that implement the IMAP protocol ([RFC 3501](https://tools.ietf.org/html/rfc3501) and various extensions). After authenticating with the server, IMAP lets you list, fetch, and search for e-mails, as well as monitor mailboxes for changes. It supports at least the latest three stable Rust releases (possibly even older ones; -check the [CI results](https://travis-ci.org/jonhoo/rust-imap)). +check the [CI results](https://travis-ci.com/jonhoo/rust-imap)). To connect, use the [`connect`] function. This gives you an unauthenticated [`Client`]. You can then use [`Client::login`] or [`Client::authenticate`] to perform username/password or diff --git a/README.tpl b/README.tpl index b4402b8..a1c2e88 100644 --- a/README.tpl +++ b/README.tpl @@ -6,7 +6,7 @@ [![Crate Version](https://img.shields.io/crates/v/imap.svg)](https://crates.io/crates/imap) [![Documentation](https://docs.rs/imap/badge.svg)](https://docs.rs/imap/) [![Crate License](https://img.shields.io/crates/l/imap.svg)](https://crates.io/crates/imap) -[![Build Status](https://travis-ci.org/jonhoo/rust-imap.svg)](https://travis-ci.org/jonhoo/rust-imap) +[![Build Status](https://travis-ci.com/jonhoo/rust-imap.svg)](https://travis-ci.com/jonhoo/rust-imap) [![Coverage Status](https://codecov.io/gh/jonhoo/rust-imap/branch/master/graph/badge.svg)](https://codecov.io/gh/jonhoo/rust-imap) {{readme}} diff --git a/src/lib.rs b/src/lib.rs index bd5e4f4..87249d0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ //! 3501](https://tools.ietf.org/html/rfc3501) and various extensions). After authenticating with //! the server, IMAP lets you list, fetch, and search for e-mails, as well as monitor mailboxes for //! changes. It supports at least the latest three stable Rust releases (possibly even older ones; -//! check the [CI results](https://travis-ci.org/jonhoo/rust-imap)). +//! check the [CI results](https://travis-ci.com/jonhoo/rust-imap)). //! //! To connect, use the [`connect`] function. This gives you an unauthenticated [`Client`]. You can //! then use [`Client::login`] or [`Client::authenticate`] to perform username/password or