We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08df5e4 commit 8424fa1Copy full SHA for 8424fa1
src/aero_kernel/src/main.rs
@@ -49,6 +49,11 @@
49
naked_functions, // https://github.com/rust-lang/rust/issues/32408
50
strict_provenance
51
)]
52
+// TODO(andypython): can we remove the dependency of "prelude_import" and "lang_items"?
53
+// `lang_items` => is currently used for the personality function (`rust_eh_personality`).
54
+// `prelude_import` => is currently just used to re-export alloc prelude. This just makes the
55
+// files overall more readable.
56
+#![allow(internal_features)]
57
#![deny(trivial_numeric_casts, unused_allocation)]
58
#![test_runner(crate::tests::test_runner)]
59
#![no_std]
0 commit comments