From 33327288b73eb88cdb177f12555738837e2929ec Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Tue, 23 Sep 2025 13:03:31 +0200 Subject: [PATCH] Update embedded-io README for defmt feature and MSRV As a preparation for the (hopefully) upcoming release. Looking forward to #679. --- embedded-io/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embedded-io/README.md b/embedded-io/README.md index 6c228d8b..2b09d9c0 100644 --- a/embedded-io/README.md +++ b/embedded-io/README.md @@ -23,11 +23,11 @@ targets. - **`std`**: Adds `From` impls to convert to/from `std::io` structs. - **`alloc`**: Adds blanket impls for `Box`, adds `Write` impl to `Vec`. -- **`defmt-03`**: Derive `defmt::Format` from `defmt` 0.3 for enums and structs. +- **`defmt`**: Derive `defmt::Format` from `defmt` 1.x for enums and structs. ## Minimum Supported Rust Version (MSRV) -This crate is guaranteed to compile on stable Rust 1.60 and up. It *might* +This crate is guaranteed to compile on stable Rust 1.81 and up. It *might* compile with older versions but that may change in any new patch release. See [here](../docs/msrv.md) for details on how the MSRV may be upgraded.