mirror of
https://github.com/actix/actix-web.git
synced 2024-12-31 20:38:46 +00:00
min rust version 1.21
This commit is contained in:
parent
042f8391bb
commit
c446be48e3
2 changed files with 5 additions and 5 deletions
|
@ -8,7 +8,7 @@ cache:
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- rust: 1.20.0
|
- rust: 1.21.0
|
||||||
- rust: stable
|
- rust: stable
|
||||||
- rust: beta
|
- rust: beta
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
|
@ -17,7 +17,7 @@ matrix:
|
||||||
- rust: beta
|
- rust: beta
|
||||||
|
|
||||||
#rust:
|
#rust:
|
||||||
# - 1.20.0
|
# - 1.21.0
|
||||||
# - stable
|
# - stable
|
||||||
# - beta
|
# - beta
|
||||||
# - nightly-2018-01-03
|
# - nightly-2018-01-03
|
||||||
|
@ -42,7 +42,7 @@ before_script:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- |
|
- |
|
||||||
if [[ "$TRAVIS_RUST_VERSION" == "1.20.0" ]]; then
|
if [[ "$TRAVIS_RUST_VERSION" == "1.21.0" ]]; then
|
||||||
cargo clean
|
cargo clean
|
||||||
USE_SKEPTIC=1 cargo test --features=alpn
|
USE_SKEPTIC=1 cargo test --features=alpn
|
||||||
else
|
else
|
||||||
|
@ -71,7 +71,7 @@ script:
|
||||||
# Upload docs
|
# Upload docs
|
||||||
after_success:
|
after_success:
|
||||||
- |
|
- |
|
||||||
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "1.20.0" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "1.21.0" ]]; then
|
||||||
cargo doc --features alpn --no-deps &&
|
cargo doc --features alpn --no-deps &&
|
||||||
echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html &&
|
echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html &&
|
||||||
cargo install mdbook &&
|
cargo install mdbook &&
|
||||||
|
|
|
@ -26,7 +26,7 @@ fn main() {
|
||||||
* [API Documentation (Releases)](https://docs.rs/actix-web/)
|
* [API Documentation (Releases)](https://docs.rs/actix-web/)
|
||||||
* [Chat on gitter](https://gitter.im/actix/actix)
|
* [Chat on gitter](https://gitter.im/actix/actix)
|
||||||
* Cargo package: [actix-web](https://crates.io/crates/actix-web)
|
* Cargo package: [actix-web](https://crates.io/crates/actix-web)
|
||||||
* Minimum supported Rust version: 1.20 or later
|
* Minimum supported Rust version: 1.21 or later
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue