cargo-msrv 0.18.1

Find your minimum supported Rust version (MSRV)!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod discard_output;
mod human;
mod json;
mod minimal;

#[cfg(test)]
mod testing;

pub use discard_output::DiscardOutputHandler;
pub use human::HumanProgressHandler;
pub use json::JsonHandler;
pub use minimal::MinimalOutputHandler;

#[cfg(test)]
pub use testing::TestingHandler;