From e52c7a52969c64b22df94243b4fa4750c0bfd030 Mon Sep 17 00:00:00 2001 From: Paul Grandperrin Date: Tue, 22 Dec 2020 14:03:40 -0300 Subject: [PATCH] Minimum rust version increased to 1.36 This is because the rust_core create at version 0.6 uses the alloc crate which has been stabilized in rust 1.36. See https://github.com/rust-lang/rust/pull/59675 --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5d99ebbe..7d2f906e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: rust sudo: false dist: trusty rust: -- 1.33.0 +- 1.36.0 - stable - beta - nightly diff --git a/appveyor.yml b/appveyor.yml index 940677a9..41c464ba 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.33.0-x86_64-pc-windows-gnu + - TARGET: 1.36.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