removed allow(dead) and allow(unused)

This commit is contained in:
mark 2023-06-06 13:52:16 +02:00
parent 1c749da401
commit f91d452bd1
2 changed files with 0 additions and 6 deletions

View File

@ -1,6 +1,3 @@
#![allow(unused)]
#![allow(dead_code)]
mod lang; mod lang;
mod libs; mod libs;
mod parsing; mod parsing;

View File

@ -1,6 +1,3 @@
#![allow(unused)]
#![allow(dead_code)]
use std::{fs, time::Instant}; use std::{fs, time::Instant};
use lang::global_info::ColorFormatMode; use lang::global_info::ColorFormatMode;