cargo-shear 1.1.8

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

use cargo_shear::{cargo_shear_options, CargoShear};

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