47 releases

0.1.47 Mar 10, 2024
0.1.45 Dec 29, 2023
0.1.44 Nov 23, 2023
0.1.41 Jul 20, 2023
0.1.5 Sep 27, 2019

#40 in Cargo plugins

Download history 4367/week @ 2023-12-01 4188/week @ 2023-12-08 3372/week @ 2023-12-15 2232/week @ 2023-12-22 3775/week @ 2023-12-29 4500/week @ 2024-01-05 4269/week @ 2024-01-12 4257/week @ 2024-01-19 4154/week @ 2024-01-26 4199/week @ 2024-02-02 4804/week @ 2024-02-09 4712/week @ 2024-02-16 3911/week @ 2024-02-23 4155/week @ 2024-03-01 6147/week @ 2024-03-08 6270/week @ 2024-03-15

21,256 downloads per month

MIT/Apache

46KB
1K SLoC

cargo-udeps

crates.io dependency status

Find unused dependencies in Cargo.toml.

While compilation of this tool also works on Rust stable, it needs Rust nightly to actually run.

Installation

GitHub Releases

https://github.com/est31/cargo-udeps/releases

cargo install (crates.io)

cargo install cargo-udeps --locked

cargo install (master)

cargo install --git https://github.com/est31/cargo-udeps --locked

Dedicated packages

Some package managers have packaged cargo-udeps:

  • Nix/Nix OS: cargo-udeps
  • Arch Linux: pacman -S cargo-udeps
  • Homebrew: brew install cargo-udeps

Usage

cargo +nightly udeps

It either prints out a "unused crates" line listing the crates, or it prints out a line saying that no crates were unused.

pre-commit

You can use it as pre-commit hook:

- repo: https://github.com/est31/cargo-udeps
  rev: v0.1.47
  hooks:
  - id: udeps

Ignoring some of the dependencies

To ignore some of the dependencies, add package.metadata.cargo-udeps.ignore to Cargo.toml.

[package.metadata.cargo-udeps.ignore]
normal = ["if_chain"]
#development = []
#build = []

[dependencies]
if_chain = "1.0.0" # Used only in doc-tests, which `cargo-udeps` cannot check.

Alternatively, add dependencies to workspace.metadata.cargo-udeps.ignore in the workpace Cargo.toml to ignore them in all packages in the workspace.

Known bugs

  • Some unused crates might not be detected. This includes crates used by std and its dependencies as well as crates that are already being used by dependencies of the studied crate.

  • Crates are currently only handled on a per name basis. Two crates with the same name but different versions would be a problem.

Trophy case

This is a list of cases where unused dependencies were found using cargo-udeps. You are welcome to expand it:

Contributing

See CONTRIBUTING.md for details.

License

This tool is distributed under the terms of both the MIT license and the Apache License (Version 2.0), at your option.

See LICENSE for details.

License of your contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~91MB
~2M SLoC