added .rustfmt.toml to prevent module reordering in lib.rs

This commit is contained in:
epi 2020-12-29 12:28:38 -06:00
parent 6d1cd0df63
commit 22c957d3d5
2 changed files with 2 additions and 1 deletions

1
.rustfmt.toml Normal file
View File

@ -0,0 +1 @@
reorder_modules = false

View File

@ -1,3 +1,4 @@
pub mod utils;
pub mod banner;
pub mod client;
pub mod config;
@ -11,7 +12,6 @@ pub mod reporter;
pub mod scan_manager;
pub mod scanner;
pub mod statistics;
pub mod utils;
use crate::utils::{get_url_path_length, status_colorizer};
use console::{style, Color};