1
2
3
4
5
6
7
8
9
10
11
//! `siz` is a command line executable file system utility for file size reporting.
//! This crate provides the core functionality for the executable.  It is not
//! designed for use as a third party library.

pub mod args;
pub mod format;
pub mod fuzzy;
pub mod stdstreams;
pub mod types;
pub mod types_default;
pub mod walk;