From 35e3d540048f4c36be2207f78a5a495e1eaec8aa Mon Sep 17 00:00:00 2001 From: Richard Leitner Date: Tue, 13 Dec 2022 09:51:24 +0100 Subject: [PATCH] Raise the MSRV to 1.60.0 This is needed as env_logger v0.10.0 raised its MSRV to 1.60.0. For more information please see the corresponding commit or PR: https://github.com/rust-cli/env_logger/commit/660cf7feb27e07bd308c3952637c5ae21c438846 https://github.com/rust-cli/env_logger/pull/248 Signed-off-by: Richard Leitner --- .github/workflows/github-ci.yml | 6 +++--- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/github-ci.yml b/.github/workflows/github-ci.yml index 0aecf60..262340e 100644 --- a/.github/workflows/github-ci.yml +++ b/.github/workflows/github-ci.yml @@ -12,7 +12,7 @@ jobs: rust: - stable - beta - - 1.56.1 + - 1.60.0 # - nightly env: TEST_PORT_A: /tmp/ttyS10 @@ -43,7 +43,7 @@ jobs: rust: - stable - beta - - 1.56.1 + - 1.60.0 # - nightly env: TEST_PORT_A: /tmp/ttyS10 @@ -81,7 +81,7 @@ jobs: rust: - stable - beta - - 1.56.1 + - 1.60.0 # - nightly env: TEST_PORT_A: COM10 diff --git a/Cargo.toml b/Cargo.toml index cc9ac11..33497cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ categories = ["asynchronous", "hardware-support"] edition = "2018" [package.metadata] -msrv = "1.56.1" # Used by cargo-msrv +msrv = "1.60.0" # Used by cargo-msrv [features] default = [] diff --git a/README.md b/README.md index c116391..f1e9b17 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ cargo build --no-default-features ``` ### MSRV -The Minimum Supported Rust Version is **1.56.1** as found using [cargo-msrv](https://crates.io/crates/cargo-msrv) +The Minimum Supported Rust Version is **1.60.0** as found using [cargo-msrv](https://crates.io/crates/cargo-msrv) ## Examples A few examples can be found [here](https://github.com/berkowski/mio-serial/tree/master/examples).