From 34658c4bd32d57ead82081f3464a20f2a8e06292 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 11 Apr 2019 06:41:22 -0700 Subject: [PATCH] Raise minimum Rust version to 1.32 The crypto_api_chachapoly uses two new features introduced in 1.32: - Self struct constructors - u64::to_le_bytes() --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index eea30a2..a773623 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: rust rust: - - 1.31.0 + - 1.32.0 cache: cargo