diff options
| author | Tianhao Wang <wth@riseup.net> | 2024-02-01 04:14:45 +0100 |
|---|---|---|
| committer | Tianhao Wang <wth@riseup.net> | 2024-02-01 04:14:45 +0100 |
| commit | 79ab357c2ecf84c5cb9c8c588f2e0ccf02eb4209 (patch) | |
| tree | a3d9ff4e3a56606c18b76dfcbbcd713e803e5417 /src/lib.rs | |
| parent | e9417e499eed7d37b0c0930f3a7e8a56e9570b9d (diff) | |
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... :(
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#![allow(dead_code)] +#![allow(unused_imports)] + #![no_std] #![no_main] mod arch; |
