aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/migration/migration_v2/nightly.md
diff options
context:
space:
mode:
authordatdenkikniet <jcdra1@gmail.com>2023-04-22 17:37:15 +0200
committerdatdenkikniet <jcdra1@gmail.com>2023-05-11 19:20:58 +0200
commit1dc2f80eb6cb6ac6d1eaede4169d8cabc51c5e7c (patch)
tree0c86b2a70ec77e9e12b3bf0d764110f235efc804 /book/en/src/migration/migration_v2/nightly.md
parent16f8ea9ba7d0fed1c9f1622b2e9cbcdbbdd807f5 (diff)
Begin migration guide
Diffstat (limited to 'book/en/src/migration/migration_v2/nightly.md')
-rw-r--r--book/en/src/migration/migration_v2/nightly.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/book/en/src/migration/migration_v2/nightly.md b/book/en/src/migration/migration_v2/nightly.md
new file mode 100644
index 0000000..09f6e33
--- /dev/null
+++ b/book/en/src/migration/migration_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