1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![feature(test)]
#![feature(rand)]

extern crate image;
extern crate num;
extern crate num_traits;
extern crate test;
extern crate rand;

pub mod image_ext;
pub mod math;

pub mod auto;
pub use auto::*;