From 6f9b66b92723ad9804a0329fb8b874bd0ee0fd83 Mon Sep 17 00:00:00 2001 From: Bryce Fisher-Fleig Date: Tue, 17 Sep 2019 20:32:24 -0700 Subject: [PATCH] FIXUP - bump compiler version to support ring The underlying Rust library for crypto `ring` using multiple `#[cfg_attr()]` properties together which stabilized in rust 1.33.0: https://github.com/rust-lang/rust/blob/stable/RELEASES.md#language-4 Previously, everything else in this could be compiled with rust 1.32.0, so this may constitute a breaking change. --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 66380c9..bfbe861 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,12 +9,12 @@ stages: # This represents the minimum Rust version supported. # Tests are not run as tests may require newer versions of rust. - stage: msrv - displayName: "Minimum supported Rust version: 1.32.0" + displayName: "Minimum supported Rust version: 1.36.0" dependsOn: [] jobs: - template: azure/cargo-check.yml@templates parameters: - rust: 1.32.0 + rust: 1.36.0 - stage: test displayName: Test suite dependsOn: check