summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 6b08772eb8efe12f7e6d06db55d7360d3ffff2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(windows, feature(windows_by_handle))]
#![forbid(unsafe_code, rust_2018_idioms)]

mod aggregate;
mod common;
mod crossdev;
pub mod inodefilter;

pub mod traverse;

pub use aggregate::aggregate;
pub use common::*;
pub(crate) use inodefilter::InodeFilter;