cargo-all-features 1.12.0

A Cargo subcommand to build and test all feature flag combinations
Documentation
1
2
3
4
5
6
use cargo_all_features::run;
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    run()
}