Increase the minimum rust supported channel to 1.33

This commit is contained in:
Pierre Peltier 2019-10-30 14:09:45 +01:00 committed by Abin Simon
parent 7ead8aec4e
commit 820edf97d4
2 changed files with 5 additions and 5 deletions

View file

@ -41,16 +41,16 @@ matrix:
# Minimum Rust supported channel.
- os: linux
rust: 1.31.0
rust: 1.33.0
env: TARGET=x86_64-unknown-linux-gnu
- os: linux
rust: 1.31.0
rust: 1.33.0
env: TARGET=i686-unknown-linux-gnu
- os: osx
rust: 1.31.0
rust: 1.33.0
env: TARGET=x86_64-apple-darwin
- os: linux
rust: 1.31.0
rust: 1.33.0
env:
- TARGET=arm-unknown-linux-gnueabihf
- CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc-4.8

View file

@ -18,7 +18,7 @@ use std::process::exit;
include!("src/app.rs");
fn main() {
match version_check::is_min_version("1.31.0") {
match version_check::is_min_version("1.33.0") {
Some(true) => {}
// rustc version too small or can't figure it out
_ => {