From 192e3a9980dde4ec5725362fda792e3b19cb029c Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Wed, 13 Mar 2024 21:04:55 +0100 Subject: [PATCH] Bump minimum supported Rust version to 1.60 This is now also documented in the Cargo.toml file. --- .github/workflows/build.yml | 2 +- Cargo.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d7ae6ac..176ebc0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: rust: - - 1.56 + - 1.60 - stable - nightly os: diff --git a/Cargo.toml b/Cargo.toml index 2258d7d..f1ef593 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,6 +17,7 @@ keywords = ["random", "text", "markov", "typography"] categories = ["text-processing"] license = "MIT" edition = "2021" +rust-version = "1.60" [dependencies] rand = {version = "0.8.5", default-features = false, features = ["alloc"]}