From dcd0e5f1ab4def59fc2d371901fa83e8fb218898 Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Wed, 16 Aug 2023 15:53:16 +1000 Subject: [PATCH 1/2] remove MSRV from the README --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index 9fe81a24..93d9749d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # `uuid` [![Latest Version](https://img.shields.io/crates/v/uuid.svg)](https://crates.io/crates/uuid) -![Minimum rustc version](https://img.shields.io/badge/rustc-1.46.0+-yellow.svg) [![Continuous integration](https://github.com/uuid-rs/uuid/actions/workflows/ci.yml/badge.svg)](https://github.com/uuid-rs/uuid/actions/workflows/ci.yml) Here's an example of a UUID: @@ -68,11 +67,6 @@ library. For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.4.1/uuid). -## Minimum Supported Rust Version (MSRV) - -The minimum supported Rust version for `uuid` is documented in -CI. It may be bumped in minor releases as necessary. - ## References * [`uuid` library docs](https://docs.rs/uuid/1.4.1/uuid). @@ -96,4 +90,4 @@ at your option. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall -be dual licensed as above, without any additional terms or conditions. \ No newline at end of file +be dual licensed as above, without any additional terms or conditions. From 233e2c1e660b08d92b01dc34931ff9bfed436190 Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Wed, 16 Aug 2023 15:55:12 +1000 Subject: [PATCH 2/2] add MSRV to Cargo.toml --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 7318dded..1f14cf31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,6 +28,7 @@ name = "uuid" readme = "README.md" repository = "https://github.com/uuid-rs/uuid" version = "1.4.1" # remember to update html_root_url in lib.rs +rust-version = "1.57.0" [package.metadata.docs.rs] rustc-args = ["--cfg", "uuid_unstable"]