1#![allow(clippy::too_many_arguments)]
4#![allow(unknown_lints)]
5#![allow(clippy::unreadable_literal)]
6
7#[allow(unused_imports)]
8#[macro_use]
9extern crate clap;
10#[macro_use]
11extern crate nom;
12#[macro_use]
13extern crate lazy_static;
14
15extern crate colored;
16extern crate regex;
17
18pub mod cli_helpers;
19pub mod error;
20pub mod gitignore;
21#[cfg(test)]
22pub mod test;
23pub mod types;
24pub mod utils;
25pub mod walk_parallel;
26
27pub mod prelude {
28
29 pub use cli_helpers::*;
30 pub use error::*;
31 pub use utils::*;
32 pub use walk_parallel::*;
33}