cargo-shear 0.0.2

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

use cargo_shear::options;

fn main() {
    let options = options().fallback_to_usage().run();
    shear(&options);
}