1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#![cfg_attr(test, feature(plugin))]
#![cfg_attr(test, plugin(clippy))]

#![feature(conservative_impl_trait)]

extern crate syn;
extern crate walkdir;

mod file;
pub use file::*;

mod tree;
pub use tree::*;

mod other;
pub use other::*;