From 03ded62337e5a8e948cf0f57f48a9f917a4d0a57 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sun, 29 Apr 2018 14:13:46 -0700 Subject: [PATCH] bump minimum supported rustc version because of minor version change of parking_lot crate --- .appveyor.yml | 8 ++++---- .travis.yml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 4f26315fa..e06f90ca6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,13 +4,13 @@ environment: matrix: # Stable channel - TARGET: i686-pc-windows-gnu - CHANNEL: 1.21.0 + CHANNEL: 1.24.0 - TARGET: i686-pc-windows-msvc - CHANNEL: 1.21.0 + CHANNEL: 1.24.0 - TARGET: x86_64-pc-windows-gnu - CHANNEL: 1.21.0 + CHANNEL: 1.24.0 - TARGET: x86_64-pc-windows-msvc - CHANNEL: 1.21.0 + CHANNEL: 1.24.0 # Stable channel - TARGET: i686-pc-windows-gnu CHANNEL: stable diff --git a/.travis.yml b/.travis.yml index 2dedae4ec..19fe1b260 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,11 +8,11 @@ cache: matrix: include: + - rust: 1.24.0 - rust: stable - rust: beta - rust: nightly allow_failures: - - rust: 1.21.0 - rust: nightly env: diff --git a/README.md b/README.md index 34790cd03..05757da48 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Actix web is a simple, pragmatic and extremely fast web framework for Rust. * [API Documentation (Releases)](https://docs.rs/actix-web/) * [Chat on gitter](https://gitter.im/actix/actix) * Cargo package: [actix-web](https://crates.io/crates/actix-web) -* Minimum supported Rust version: 1.22 or later +* Minimum supported Rust version: 1.24 or later ## Example diff --git a/src/lib.rs b/src/lib.rs index 379b5ac4a..431c60c1c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -59,7 +59,7 @@ //! * SSL support with OpenSSL or `native-tls` //! * Middlewares (`Logger`, `Session`, `CORS`, `CSRF`, `DefaultHeaders`) //! * Built on top of [Actix actor framework](https://github.com/actix/actix) -//! * Supported Rust version: 1.22 or later +//! * Supported Rust version: 1.24 or later #![cfg_attr(actix_nightly, feature( specialization, // for impl ErrorResponse for std::error::Error