1//! Output and progress reporting. 2 3mod printer; 4pub mod progress; 5 6pub use printer::{format_count, format_error, format_success, format_warning, Output, Verbosity}; 7pub use progress::{CloneProgressBar, DiscoveryProgressBar, SyncProgressBar};