Crates.io | cargo-machete |
lib.rs | cargo-machete |
version | 0.7.0 |
source | src |
created_at | 2021-11-13 18:37:50.293196 |
updated_at | 2024-09-25 07:12:22.290845 |
description | Find unused dependencies with this one weird trick! |
homepage | |
repository | https://github.com/bnjbvr/cargo-machete |
max_upload_size | |
id | 481490 |
size | 82,205 |
Thanks to Diego F. Goberna for the lovely logo 🥰
cargo-machete
is a Cargo tool that detects unused dependencies in Rust
projects, in a fast (yet imprecise) way.
See also the blog post for a detailed writeup.
Install cargo-machete
with cargo:
cargo install cargo-machete
Run cargo-machete in a directory that contains one or more Rust projects (using Cargo for dependency management):
cd my-directory && cargo machete
# alternatively
cargo machete /absolute/path/to/my/directory
The return code gives an indication whether unused dependencies have been found:
This can be used in CI situations.
To ignore a certain set of dependencies in a crate, add
package.metadata.cargo-machete
to Cargo.toml
(or workspace.metadata.cargo-machete
to a
workspace Cargo.toml
), and specify an ignored
array:
For example:
[dependencies]
prost = "0.10" # Used in code generated by build.rs output, which cargo-machete cannot check
# in an individual package Cargo.toml
[package.metadata.cargo-machete]
ignored = ["prost"]
# in a workspace Cargo.toml
[workspace.metadata.cargo-machete]
ignored = ["prost"]
If there are too many false positives, consider using the --with-metadata
CLI
flag, which will call cargo metadata --all-features
to find final dependency
names, more accurate dependencies per build type, etc. âš This may modify the
Cargo.lock
files in your projects.
A docker image for cargo machete.
For instance, run cargo-machete
in the $(pwd)
directory using:
docker run -v $(pwd):/src ghcr.io/bnjbvr/cargo-machete:latest
A github action for cargo machete.
The step given by,
- uses: bnjbvr/cargo-machete@main
can be added to any workflow.
An example workflow is shown below:
name: Cargo Machete
on:
pull_request: { branches: "*" }
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Machete
uses: bnjbvr/cargo-machete@main
We welcome community contributions to this project.