summaryrefslogtreecommitdiff
path: root/rust-toolchain.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <dirbaio@dirbaio.net>2022-04-24 03:06:29 +0200
committerDario Nieuwenhuis <dirbaio@dirbaio.net>2022-04-24 04:24:08 +0200
commit408617266e21cf3d6ed0e0a5fad435a9ab6140b5 (patch)
treea8cf91eff6bb5c4cf4ecda59e3c4f0388b530064 /rust-toolchain.toml
parent11143a1be1243de298d7363ba9a125e3b3e2e068 (diff)
downloadembassy-408617266e21cf3d6ed0e0a5fad435a9ab6140b5.zip
Update Rust nightly.
Fixes a new opaque type error in the task macro. Full error is "opaque type's hidden type cannot be another opaque type from the same scope". This got disallwed by the lazy-TAIT PR: https://github.com/rust-lang/rust/pull/94081 Sadly there's now some weird type inference errors with pre-lazy-TAIT nightlies, so support for those is dropped.
Diffstat (limited to 'rust-toolchain.toml')
-rw-r--r--rust-toolchain.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
index 72a83246..e73ef7e9 100644
--- a/rust-toolchain.toml
+++ b/rust-toolchain.toml
@@ -1,6 +1,6 @@
# Before upgrading check that everything is available on all tier1 targets here:
# https://rust-lang.github.io/rustup-components-history
[toolchain]
-channel = "nightly-2022-03-10"
+channel = "nightly-2022-04-24"
components = [ "rust-src", "rustfmt" ]
targets = [ "thumbv7em-none-eabi", "thumbv7m-none-eabi", "thumbv6m-none-eabi", "thumbv7em-none-eabihf", "thumbv8m.main-none-eabihf", "wasm32-unknown-unknown" ]