From 4e5e4a75a6af7444c6134263c17a3dfe4d4eaf4a Mon Sep 17 00:00:00 2001 From: Paul Grandperrin Date: Tue, 22 Dec 2020 11:03:49 -0300 Subject: [PATCH] Minimum rust version increased to 1.33 This is because the updated rand_core crate to 0.6 uses getrandom at version 0.2 which uses the cfg_target_vendor feature which was stabilized at 1.33: https://github.com/rust-lang/rust/pull/57465 --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 92e06704..5d99ebbe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: rust sudo: false dist: trusty rust: -- 1.32.0 +- 1.33.0 - stable - beta - nightly diff --git a/appveyor.yml b/appveyor.yml index fc3f8283..940677a9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,7 +4,7 @@ environment: - TARGET: nightly-i686-pc-windows-msvc - TARGET: nightly-x86_64-pc-windows-gnu - TARGET: nightly-i686-pc-windows-gnu - - TARGET: 1.32.0-x86_64-pc-windows-gnu + - TARGET: 1.33.0-x86_64-pc-windows-gnu install: - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}.exe" -FileName "rust-install.exe" - ps: .\rust-install.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null