summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2019-04-23 15:42:50 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2019-04-23 15:44:19 +0200
commita816c326eb245dc265a7e5aad1043423bb807978 (patch)
tree98dde0d502026198f437eefacd9f75bcbcfa4e0f
parent36ed06707af21999f855f92be1def985962761a6 (diff)
Disable rustc 1.31.{0, 1}
Because of some weird error: error[E0658]: imports can only refer to extern crate names passed with `--extern` on stable channel (see issue #53130) --> src/main.rs:29:5 | 17 | mod config; | ----------- not an extern crate passed with `--extern` ... 29 | use config::Configuration; | ^^^^^^ | note: this import refers to the module defined here --> src/main.rs:17:1 | 17 | mod config; | ^^^^^^^^^^^ error: aborting due to previous error This has nothing to do with the "mod config". The compiler tells us something about missing featureflags or so, which is not relevant here... Strange. Just disable the 1.31 versions.
-rw-r--r--.travis.yml2
1 files changed, 0 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 9e50b8f..da8fd14 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,8 +2,6 @@ language: rust
sudo: false
rust:
- - 1.31.0
- - 1.31.1
- 1.32.0
- 1.33.0
- stable