Bump the required rust version to 1.35.

Rust 1.34 gets errors like this:

```
$ cargo +1.34.0 build --release
   Compiling cranelift-wasm v0.32.0 (cranelift/cranelift-wasm)
error[E0259]: the name `std` is defined multiple times
  |
  = note: `std` must be defined only once in the type namespace of this module

error: aborting due to previous error

For more information about this error, try `rustc --explain E0259`.
error: Could not compile `cranelift-wasm`.

To learn more, run the command again with --verbose.
```

Updating to Rust 1.35 fixes this.
This commit is contained in:
Dan Gohman
2019-07-02 15:43:41 -07:00
committed by Benjamin Bouvier
parent f6ac165ff6
commit 102dbbb343
2 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ language: rust
rust:
# The oldest version we currently support. See
# CONTRIBUTING.md#rustc-version-support for details.
- 1.34.0
- 1.35.0
- beta
- nightly
matrix: