Bump edition to now stable 2024 edition (shiny!).

This commit is contained in:
2025-02-23 11:52:54 +00:00
parent 9f83c5f295
commit b8aa203c05
14 changed files with 214 additions and 171 deletions
+3 -2
View File
@@ -1,5 +1,6 @@
#![no_std]
#![warn(tail_expr_drop_order)]
#![warn(clippy::correctness, clippy::perf, clippy::nursery)]
// alloc
// io : serial, framebuffer, ascii(?), keyboard
// ?????
@@ -11,5 +12,5 @@ pub mod scheduling;
/// Re-exports most of the IO macros.
pub mod prelude {
pub use crate::{print_log, println, println_log, serial_print, serial_println};
pub use crate::{print, print_log, println, println_log, serial_print, serial_println};
}