1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/// Find the MSRV of a Rust package.
///
/// # Example (CLI)
///
/// `cargo msrv`
pub use Find;
/// List the MSRV's of libraries you depend on.
///
/// # Example (CLI)
///
/// `cargo msrv list`
pub use List;
/// Check whether the MSRV of a crate is valid as an MSRV.
///
/// # Use case
///
/// - Integrate into a continuous integration (CI) pipeline, to check that your
/// crate fulfills its promised minimally supported Rust version.
///
/// # Example (CLI)
///
/// `cargo msrv verify`
pub use Verify;
/// Write a given MSRV to a Cargo manifest
///
/// # Example (CLI)
///
/// `cargo msrv set 1.50`
pub use Set;
/// Show the MSRV present in the Cargo manifest
///
/// # Example (CLI)
///
/// `cargo msrv show`
pub use Show;
use crateReporter;
use crateTResult;
/// A sub-command of `cargo-msrv`.
///
/// It takes a set of inputs, from the `config`, and reports it's results via the `reporter`.