Move filter up from internal

This commit is contained in:
sharkdp 2020-04-03 11:36:54 +02:00 committed by David Peter
parent 5c27ab1a06
commit 9f738ad995
6 changed files with 5 additions and 8 deletions

View File

@ -4,7 +4,6 @@ use std::ffi::{OsStr, OsString};
use regex_syntax::hir::Hir;
use regex_syntax::ParserBuilder;
pub mod filter;
pub mod opts;
macro_rules! print_error {

View File

@ -1,6 +1,6 @@
use crate::exec::CommandTemplate;
use crate::filetypes::FileTypes;
use crate::internal::filter::{SizeFilter, TimeFilter};
use crate::filter::{SizeFilter, TimeFilter};
use lscolors::LsColors;
use regex::bytes::RegexSet;
use std::{path::PathBuf, sync::Arc, time::Duration};

View File

@ -5,7 +5,8 @@ mod app;
mod exec;
mod exit_codes;
mod filetypes;
pub mod fshelper;
mod filter;
mod fshelper;
mod output;
mod walk;
@ -22,11 +23,8 @@ use regex::bytes::{RegexBuilder, RegexSetBuilder};
use crate::exec::CommandTemplate;
use crate::filetypes::FileTypes;
use crate::internal::{
filter::{SizeFilter, TimeFilter},
opts::FdOptions,
pattern_has_uppercase_char, transform_args_with_exec,
};
use crate::filter::{SizeFilter, TimeFilter};
use crate::internal::{opts::FdOptions, pattern_has_uppercase_char, transform_args_with_exec};
// We use jemalloc for performance reasons, see https://github.com/sharkdp/fd/pull/481
#[cfg(all(not(windows), not(target_env = "musl")))]