Skip to content

Commit 676dd6e

Browse files
committed
Move to newest stable Rust - Rust 1.39 which includes async/await 🎉
1 parent 6f0d7fd commit 676dd6e

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
language: rust
22
rust:
3-
- nightly-2019-10-14
4-
cache: cargo
3+
- stable
4+
# Need to cache the whole `.cargo` directory to keep .crates.toml for
5+
# cargo-update to work
6+
cache:
7+
directories:
8+
- /home/travis/.cargo
9+
# But don't cache the cargo registry
10+
before_cache:
11+
- rm -rf /home/travis/.cargo/registry
512
env:
613
global:
714
- CARGO_MAKE_RUN_CHECK_FORMAT="true"

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2019-10-14
1+
stable

0 commit comments

Comments
 (0)