1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! pipeprogress library
//!
//! ## Overview
//!
//! pipeprogress is a command line utility for visualizing progress
//! for long pipe operations.
//!
//! ## Usage
//!
//! Usage information for the ```pipeprogress``` application is available
//! by running ```pipeprogress --help```.
//!

pub mod args;
pub mod read;
pub mod stats;
pub mod write;

const CHUNK_SIZE: usize = 16 * 1024;