Skip to content

Commit 336013a

Browse files
committed
Raise the MSRV to 1.56.1
This is needed as nix v0.26.0 raised its MSRV to 1.56.1. For more information please see the changelog: https://github.com/nix-rust/nix/blob/master/CHANGELOG.md#0260---2022-11-29 Or the corresponding PR: nix-rust/nix#1792 Signed-off-by: Richard Leitner <[email protected]>
1 parent 51700d3 commit 336013a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/github-ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
rust:
1313
- stable
1414
- beta
15-
- 1.46.0
15+
- 1.56.1
1616
# - nightly
1717
env:
1818
TEST_PORT_A: /tmp/ttyS10
@@ -43,7 +43,7 @@ jobs:
4343
rust:
4444
- stable
4545
- beta
46-
- 1.46.0
46+
- 1.56.1
4747
# - nightly
4848
env:
4949
TEST_PORT_A: /tmp/ttyS10
@@ -81,7 +81,7 @@ jobs:
8181
rust:
8282
- stable
8383
- beta
84-
- 1.46.0
84+
- 1.56.1
8585
# - nightly
8686
env:
8787
TEST_PORT_A: COM10

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["asynchronous", "hardware-support"]
1313
edition = "2018"
1414

1515
[package.metadata]
16-
msrv = "1.46.0" # Used by cargo-msrv
16+
msrv = "1.56.1" # Used by cargo-msrv
1717

1818
[features]
1919
default = []

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cargo build --no-default-features
3838
```
3939

4040
### MSRV
41-
The Minimum Supported Rust Version is **1.46.0** as found using [cargo-msrv](https://crates.io/crates/cargo-msrv)
41+
The Minimum Supported Rust Version is **1.56.1** as found using [cargo-msrv](https://crates.io/crates/cargo-msrv)
4242

4343
## Examples
4444
A few examples can be found [here](https://github.com/berkowski/mio-serial/tree/master/examples).

0 commit comments

Comments
 (0)