From 4828cf4e923935fc86af34335756fb3aafa9d08e Mon Sep 17 00:00:00 2001 From: Alexis Mousset Date: Sun, 5 May 2019 20:07:38 +0200 Subject: [PATCH] feat(all): Require rust 1.32 --- .travis.yml | 4 ++-- README.md | 2 +- website/src/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7e76f94..238fb10 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ rust: - stable - beta - nightly -- 1.30.0 +- 1.32.0 matrix: allow_failures: - rust: nightly @@ -26,4 +26,4 @@ script: - cargo test --verbose --all --all-features after_success: - ./.build-scripts/codecov.sh -- '[ "$TRAVIS_BRANCH" = "v0.9.x" ] && [ $TRAVIS_PULL_REQUEST = false ] && ./.build-scripts/site-upload.sh' +- '[ "$TRAVIS_RUST_VERSION" = "stable" ] && [ "$TRAVIS_BRANCH" = "v0.9.x" ] && [ $TRAVIS_PULL_REQUEST = false ] && ./.build-scripts/site-upload.sh' diff --git a/README.md b/README.md index 8a1f5a2..3e568c8 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Lettre provides the following features: ## Example -This library requires Rust 1.26 or newer. +This library requires Rust 1.32 or newer. To use this library, add the following to your `Cargo.toml`: ```toml diff --git a/website/src/README.md b/website/src/README.md index a2c1eb8..9566399 100644 --- a/website/src/README.md +++ b/website/src/README.md @@ -10,7 +10,7 @@ Lettre is an email library that allows creating and sending messages. It provide The `lettre_email` crate allows you to compose messages, and the `lettre` provide transports to send them. -Lettre requires Rust 1.26 or newer. Add the following to your `Cargo.toml`: +Lettre requires Rust 1.32 or newer. Add the following to your `Cargo.toml`: ```toml [dependencies]