From 3d97c9e431d7fcb20b1b30bc15c34ccffee03c79 Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Sat, 22 Apr 2023 21:27:26 +0200 Subject: Move deprecated migration guides to deprecated folder --- book/en/src/migration_v1_v2/nightly.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 book/en/src/migration_v1_v2/nightly.md (limited to 'book/en/src/migration_v1_v2/nightly.md') diff --git a/book/en/src/migration_v1_v2/nightly.md b/book/en/src/migration_v1_v2/nightly.md new file mode 100644 index 0000000..09f6e33 --- /dev/null +++ b/book/en/src/migration_v1_v2/nightly.md @@ -0,0 +1,5 @@ +# RTIC now requires Rust Nightly + +The new `async` features require that you use a nightly compiler, and that the feature `type_alias_impl_trait` is enabled for your applications. + +To enable this feature, you must add the line `#![type_alias_impl_trait]` to the root file of your project, on the lines below or above where `#![no_std]` and `#![no_main]` are defined. \ No newline at end of file -- cgit v1.2.3