unsafe-review-cli 0.1.0

CLI adapter for unsafe-review
Documentation
1
2
3
4
5
6
7
8
9
#![forbid(unsafe_code)]
mod command;
mod execute;
mod parse;

pub fn run(args: impl IntoIterator<Item = String>) -> Result<(), String> {
    let command = parse::parse(args.into_iter().collect())?;
    execute::execute(command)
}