From 841a4b56ae11783c166bc9415d72b479991201c5 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Mon, 27 Aug 2018 09:31:53 +0300 Subject: [PATCH] Bump MSRV to 1.13.0 Current libc is not compatible wit 1.12.0, so it's probably time for us to bump the min version as well. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ae9acd44e..31817e493 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: rust sudo: false matrix: include: - - rust: 1.12.0 + - rust: 1.13.0 before_script: # rand 0.4.2 requires rust 1.15, and rand-0.3.22 requires rand-0.4 :/ # manually hacking the lockfile due to the limitations of cargo#2773