adjusted rlimit imports to ignore windows targets

This commit is contained in:
epi
2021-08-02 05:41:50 -05:00
parent f3cedf01a5
commit 24da4e017c

View File

@@ -28,10 +28,10 @@ use feroxbuster::{
progress::{PROGRESS_BAR, PROGRESS_PRINTER},
scan_manager::{self},
scanner,
utils::{fmt_err, set_open_file_limit, slugify_filename},
DEFAULT_OPEN_FILE_LIMIT,
utils::{fmt_err, slugify_filename},
};
#[cfg(not(target_os = "windows"))]
use feroxbuster::{utils::set_open_file_limit, DEFAULT_OPEN_FILE_LIMIT};
use lazy_static::lazy_static;
use regex::Regex;