revdeprun 2.2.3

Easy reverse dependency checks for R with cloud-ready environment setup
Documentation
1
2
3
4
5
6
7
8
9
10
use std::process::ExitCode;

fn main() -> ExitCode {
    if let Err(error) = revdeprun::run() {
        eprintln!("revdeprun: {error:?}");
        ExitCode::FAILURE
    } else {
        ExitCode::SUCCESS
    }
}