Skip to content

Commit 20cd6ac

Browse files
authored
Upgrade toolchain (#40)
* Actually make embedded-storage-async compile * Use impl_trait_projections * Upgrade to latest nightly At has been verified that all all components listed at https://rust-lang.github.io/rustup-components-history/ are present * Update CHANGELOG.md
1 parent 3fddbf7 commit 20cd6ac

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

embedded-storage-async/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
## Unreleased
99

1010
- Let `&mut` `NorFlash` implement `NorFlash`.
11+
- Use now stabilized `async_fn_in_trait` and `impl_trait_projections`.
1112

1213
## [0.4.0] - 2022-12-01
1314

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Before upgrading check that everything is available on all tier1 targets here:
22
# https://rust-lang.github.io/rustup-components-history
33
[toolchain]
4-
channel = "nightly-2022-11-22"
4+
channel = "nightly-2023-10-21"
55
components = ["clippy"]

embedded-storage-async/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
//! data asynchronously.
55
66
#![no_std]
7-
#![feature(async_fn_in_trait)]
8-
#![feature(impl_trait_projections)]
9-
#![allow(incomplete_features)]
7+
#![allow(async_fn_in_trait)]
108

119
pub mod nor_flash;

0 commit comments

Comments
 (0)