Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
rust:
- stable
- 1.62.0 # MSRV
- 1.84.0 # MSRV

features:
- ''
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.71.0
toolchain: 1.84.0
components: clippy
- run: cargo clippy --all-targets --all-features
2 changes: 1 addition & 1 deletion .github/workflows/rustfmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.71.0
toolchain: 1.84.0
components: rustfmt
- run: cargo fmt --all -- --check
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]

### Changed
- Raised MSRV to 1.62.0
- Raised MSRV to 1.84.0
- Set `resolver = "3"`, which implies `resolver.incompatible-rust-versions = "fallback"`

## [v1.1.0] - 2023-03-07

Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ documentation = "https://docs.rs/nb"
readme = "README.md"
version = "1.1.0"
edition = "2018"
rust-version = "1.62"
rust-version = "1.84"
resolver = "3"

[features]
"defmt-0-3" = ["dep:defmt"]

[dependencies]
defmt = {version = "0.3", optional = true}
defmt = {version = "0.3", optional = true}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![crates.io](https://img.shields.io/crates/d/nb.svg)](https://crates.io/crates/nb)
[![crates.io](https://img.shields.io/crates/v/nb.svg)](https://crates.io/crates/nb)
[![Documentation](https://docs.rs/nb/badge.svg)](https://docs.rs/nb)
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.62+-blue.svg)
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.64+-blue.svg)

# `nb`

Expand Down Expand Up @@ -40,7 +40,7 @@ non-blocking models:

## Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.62 and up. It *might*
This crate is guaranteed to compile on stable Rust 1.64 and up. It *might*
compile with older versions but that may change in any new patch release.

## License
Expand Down