use Read;
/// Command-line tool for rapidhash.
///
/// # Usage
/// Reading stdin:
/// ```shell
/// echo "example" | cargo run --example cli
/// 8543579700415218186
/// ```
///
/// Reading file:
/// ```bash
/// cargo run --example cli -- example.txt
/// 8543579700415218186
/// ```