From 63b8a43bd6c3328def24ce3cdb86cfc2363ab003 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 2 Jun 2021 17:43:37 +0300 Subject: [PATCH] Update MSRV. --- .github/workflows/ci.yml | 2 +- README.md | 1 + src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 116c100..e76cd48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - toolchain: [stable, beta, nightly, 1.26.0, 1.27.0, 1.28.0, 1.29.0] + toolchain: [stable, beta, nightly, 1.42.0] command: - name: Check command: check diff --git a/README.md b/README.md index 1d27007..004dd93 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ Evalexpr is [available on crates.io](https://crates.io/crates/evalexpr), and its ## Quickstart +Minimum Supported Rust Version: 1.42.0 Add `evalexpr` as dependency to your `Cargo.toml`: ```toml diff --git a/src/lib.rs b/src/lib.rs index 0ecf25b..8720fc9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! //! ## Quickstart //! -//! Minimum Supported Rust Version: 1.24.0 +//! Minimum Supported Rust Version: 1.42.0 //! Add `evalexpr` as dependency to your `Cargo.toml`: //! //! ```toml