Skip to content

Commit

Permalink
bump rustc version requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Apr 29, 2018
1 parent eb6e618 commit d98d723
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 1 addition & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

* Websocket CloseCode Empty/Status is ambiguous #193

* Add Content-Disposition to NamedFile #204


## 0.5.6 (2018-04-24)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d98d723

Please sign in to comment.