Skip to content

Commit 0b17cba

Browse files
author
Nicholas Cyprus
committed
Bump MSRV to 1.61
1 parent 185a008 commit 0b17cba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# Failure is permitted on nightly.
2222
rust:
2323
- stable
24-
- 1.60.0
24+
- 1.61.0
2525
- nightly
2626

2727
features:
@@ -65,7 +65,7 @@ jobs:
6565
# Failure is permitted on nightly.
6666
rust:
6767
- stable
68-
- 1.60.0
68+
- 1.61.0
6969
- nightly
7070

7171
features:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include complicated compile-time computations, such as macro or type tricks, eve
1111
at cost of performance degradation.
1212

1313
_smoltcp_ does not need heap allocation *at all*, is [extensively documented][docs],
14-
and compiles on stable Rust 1.60 and later.
14+
and compiles on stable Rust 1.61 and later.
1515

1616
_smoltcp_ achieves [~Gbps of throughput](#examplesbenchmarkrs) when tested against
1717
the Linux TCP stack in loopback mode.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
//!
6666
//! # Minimum Supported Rust Version (MSRV)
6767
//!
68-
//! This crate is guaranteed to compile on stable Rust 1.60 and up with any valid set of features.
68+
//! This crate is guaranteed to compile on stable Rust 1.61 and up with any valid set of features.
6969
//! It *might* compile on older versions but that may change in any new patch release.
7070
//!
7171
//! The exception is when using the `defmt` feature, in which case `defmt`'s MSRV applies, which

0 commit comments

Comments
 (0)