From 79ab357c2ecf84c5cb9c8c588f2e0ccf02eb4209 Mon Sep 17 00:00:00 2001 From: Tianhao Wang Date: Thu, 1 Feb 2024 04:14:45 +0100 Subject: Allow dead_code and unused_imports at crate level to make the linter shutup.... You stupid linter, this is a new project! ofc there are stuffs defined not used.... I'll let you do the job when I finish... :( --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 04b51f1..459deef 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,6 @@ +#![allow(dead_code)] +#![allow(unused_imports)] + #![no_std] #![no_main] mod arch; -- cgit v1.2.3-70-g09d2