1//! fsort is a crate to sort files in a fast, OS-independent and "rusty" way. 2 3mod file; 4mod order; 5 6pub mod file_collection; 7pub mod criterion; 8pub use self::file::File; 9pub use self::order::Order;