Skip to content

Commit

Permalink
Raise the MSRV to 1.56.1
Browse files Browse the repository at this point in the history
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 <dev@g0hl1n.net>
  • Loading branch information
g0hl1n committed Jan 13, 2023
1 parent 840ac07 commit be37c39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-ci.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
rust:
- stable
- beta
- 1.46.0
- 1.56.1
# - nightly
env:
TEST_PORT_A: /tmp/ttyS10
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
rust:
- stable
- beta
- 1.46.0
- 1.56.1
# - nightly
env:
TEST_PORT_A: /tmp/ttyS10
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
rust:
- stable
- beta
- 1.46.0
- 1.56.1
# - nightly
env:
TEST_PORT_A: COM10
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -13,7 +13,7 @@ categories = ["asynchronous", "hardware-support"]
edition = "2018"

[package.metadata]
msrv = "1.46.0" # Used by cargo-msrv
msrv = "1.56.1" # Used by cargo-msrv

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -38,7 +38,7 @@ cargo build --no-default-features
```

### MSRV
The Minimum Supported Rust Version is **1.46.0** as found using [cargo-msrv](https://crates.io/crates/cargo-msrv)
The Minimum Supported Rust Version is **1.56.1** 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).
Expand Down

0 comments on commit be37c39

Please sign in to comment.