We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 516d2a1 + b4e471b commit 6bdc3f3Copy full SHA for 6bdc3f3
.DS_Store
-6 KB
.travis.yml
@@ -1,7 +1,14 @@
1
language: rust
2
rust:
3
- - nightly-2019-10-14
4
-cache: cargo
+ - stable
+# 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
12
env:
13
global:
14
- CARGO_MAKE_RUN_CHECK_FORMAT="true"
rust-toolchain
@@ -1 +1 @@
-nightly-2019-10-14
+stable
0 commit comments