cargo_tally/
hidden.rs

1// There is no library public API. Only the command line tool is considered
2// public API.
3
4#[path = "lib.rs"]
5mod lib;
6
7#[doc(hidden)]
8pub use crate::lib::*;