From f6cbf1bbd3cdf604b022d810f0793c80ff814ae9 Mon Sep 17 00:00:00 2001 From: Tibo Delor Date: Thu, 13 Dec 2018 19:02:54 +1100 Subject: [PATCH] Bump minimum version for test to 1.24.1 quickcheckv0.7.2 comes with lazy_static v1.2.0 which only support Rust 1.24.1. See https://github.com/rust-lang-nursery/lazy-static.rs/releases/tag/1.2.0 --- saphyr/.travis.yml | 2 +- saphyr/appveyor.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/saphyr/.travis.yml b/saphyr/.travis.yml index 873ded1..908b925 100644 --- a/saphyr/.travis.yml +++ b/saphyr/.travis.yml @@ -7,7 +7,7 @@ matrix: - rust: nightly - rust: 1.17.0 script: cargo build - - rust: 1.22.1 + - rust: 1.24.1 - rust: nightly env: CLIPPY script: | diff --git a/saphyr/appveyor.yml b/saphyr/appveyor.yml index 8f2e88c..d6707aa 100644 --- a/saphyr/appveyor.yml +++ b/saphyr/appveyor.yml @@ -1,6 +1,6 @@ install: - - ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.22.1-i686-pc-windows-gnu.exe' - - rust-1.22.1-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust" + - ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.24.1-i686-pc-windows-gnu.exe' + - rust-1.24.1-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust" - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin - SET PATH=%PATH%;C:\MinGW\bin - rustc -V