cargo-shear 1.1.12

Detect and remove unused dependencies from Cargo.toml
Documentation
1
2
3
4
5
6
7
8
use std::process::ExitCode;

use cargo_shear::{CargoShear, cargo_shear_options};

fn main() -> ExitCode {
    let options = cargo_shear_options().run();
    CargoShear::new(options).run()
}