summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 9c1c3f2bfb0fd00723cdbd8ee97622e776dd755b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![forbid(unsafe_code)]

extern crate failure;
extern crate jwalk;

mod aggregate;
mod common;

pub mod traverse;

pub use aggregate::aggregate;
pub use common::*;