cargo-msrv 0.16.2

Find your minimum supported Rust version (MSRV)!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::toolchain::ToolchainSpec;

mod rustup_toolchain_check;
#[cfg(test)]
mod testing;

use crate::{Outcome, TResult};
pub use rustup_toolchain_check::{RunCommand, RustupToolchainCheck};

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

pub trait Check {
    fn check(&self, toolchain: &ToolchainSpec) -> TResult<Outcome>;
}