ripr 0.8.0

Find static mutation-exposure gaps before expensive mutation testing
Documentation
1
2
3
4
5
6
7
8
9
#![forbid(unsafe_code)]

pub(crate) fn run() -> Result<(), String> {
    ripr::cli::run(collect_args())
}

fn collect_args() -> Vec<String> {
    std::env::args().collect()
}