mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 17:41:11 +00:00
bump rustc version requirements
This commit is contained in:
parent
eb6e618812
commit
d98d723f97
5 changed files with 6 additions and 10 deletions
|
@ -59,4 +59,4 @@ build: false
|
|||
|
||||
# Equivalent to Travis' `script` phase
|
||||
test_script:
|
||||
- cargo test --no-default-features
|
||||
- cargo test --no-default-features --features="flate2-rust"
|
||||
|
|
|
@ -8,19 +8,13 @@ cache:
|
|||
|
||||
matrix:
|
||||
include:
|
||||
- rust: 1.21.0
|
||||
- rust: 1.22.1
|
||||
- rust: stable
|
||||
- rust: beta
|
||||
- rust: nightly
|
||||
allow_failures:
|
||||
- rust: nightly
|
||||
|
||||
#rust:
|
||||
# - 1.21.0
|
||||
# - stable
|
||||
# - beta
|
||||
# - nightly-2018-01-03
|
||||
|
||||
env:
|
||||
global:
|
||||
# - RUSTFLAGS="-C link-dead-code"
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
* Websocket CloseCode Empty/Status is ambiguous #193
|
||||
|
||||
* Add Content-Disposition to NamedFile #204
|
||||
|
||||
|
||||
## 0.5.6 (2018-04-24)
|
||||
|
||||
|
|
|
@ -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.21 or later
|
||||
* Minimum supported Rust version: 1.22 or later
|
||||
|
||||
## Example
|
||||
|
||||
|
|
|
@ -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.21 or later
|
||||
//! * Supported Rust version: 1.22 or later
|
||||
|
||||
#![cfg_attr(actix_nightly, feature(
|
||||
specialization, // for impl ErrorResponse for std::error::Error
|
||||
|
|
Loading…
Reference in a new issue