1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//! This is the library providing supporting functionality for the `sn` binary. The APIs here
//! aren't stable, but you may find useful documentation of how to use `sn`.
#![allow(clippy::too_many_arguments)]
#![allow(unknown_lints)]
#![allow(clippy::unreadable_literal)]

#[allow(unused_imports)]
#[macro_use]
extern crate clap;
#[macro_use]
extern crate nom;
#[macro_use]
extern crate lazy_static;

extern crate colored;
extern crate regex;

pub mod cli_helpers;
pub mod error;
pub mod gitignore;
#[cfg(test)]
pub mod test;
pub mod types;
pub mod utils;
pub mod walk_parallel;

pub mod prelude {

    pub use cli_helpers::*;
    pub use error::*;
    pub use utils::*;
    pub use walk_parallel::*;

}