From f400d5523e75891998ab9509ed8ac6d5ab56029d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Tue, 6 Dec 2022 11:31:22 +0300 Subject: [PATCH] Bump MSRV in CI --- .github/workflows/test.yml | 2 +- rand_chacha/src/chacha.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d64a5352b..398942ccf5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: # Test both windows-gnu and windows-msvc; use beta rust on one - os: ubuntu-latest target: x86_64-unknown-linux-gnu - toolchain: 1.51.0 # MSRV + toolchain: 1.56.0 # MSRV - os: ubuntu-latest deps: sudo apt-get update ; sudo apt install gcc-multilib target: i686-unknown-linux-gnu diff --git a/rand_chacha/src/chacha.rs b/rand_chacha/src/chacha.rs index f4c04766a7..21fe90ac61 100644 --- a/rand_chacha/src/chacha.rs +++ b/rand_chacha/src/chacha.rs @@ -634,6 +634,7 @@ mod test { } #[test] + #[cfg(feature = "std")] fn test_trait_objects() { use rand_core::CryptoRng;