1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
extern crate fixed_vec_deque;
extern crate quickersort;
#[macro_use]
extern crate lazy_static;
extern crate itertools;
extern crate num_cpus;
#[cfg(target_os = "windows")]
extern crate winapi;
extern crate regex;
extern crate image;
#[macro_use]
extern crate clap;
#[cfg(not(target_os = "windows"))]
extern crate libc;
extern crate rand;

mod options;

pub mod ops;
pub mod util;

pub use options::Options;