cargo-shear 0.0.2

Detect and remove unused dependencies from Cargo.toml
Documentation
#!/usr/bin/env -S just --justfile

_default:
  @just --list -u

init:
  cargo binstall cargo-watch taplo-cli

watch command:
  cargo watch -x '{{command}}'

build-release:
  cargo build --release

run-release command:
  ./target/release/cargo-shear {{command}}

fmt:
  cargo fmt
  taplo format

lint:
  cargo clippy