duplicate_finder/
constants.rs

1pub const OUTPUT_PADDING: usize = 60;
2pub const HASHING_CHUNK_SIZE: usize = 65536;
3pub const VERSION: &str = env!("CARGO_PKG_VERSION");
4pub const AUTHORS: &str = env!("CARGO_PKG_AUTHORS");
5pub const HELP: &str ="
6Rust duplicate file finder.
7Simple program to find and remove duplicated files in a filesystem.
8
9USAGE:
10    duplicate-finder [FLAGS] [OPTIONS]
11
12FLAGS:
13    -h, --help           Prints help information.
14    -n, --no-progress    Disables progress bar.
15    -v, --version        Prints version information.
16
17OPTIONS:
18    -o, --output=OUTPUT  Output type, `plain` and `json` are available, `plain` is default.
19    -p, --path=PATH      Sets path to process.";