-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Open
Labels
A-new-lintArea: new lintArea: new lintPerformanceGotta go fast!Gotta go fast!S-triageStatus: This issue is waiting on initial triage.Status: This issue is waiting on initial triage.
Description
What it does
Detect unused dependencies and suggest removing them
Advantage
- Faster builds
- False positives if done in rustc
Drawbacks
- Complicated
Example
[package]
name = "libc"
[dependencies]
clap = "4"
Could be written as:
[package]
name = "libc"
[dependencies]
(since libc
doesn't use clap
)
Metadata
Metadata
Assignees
Labels
A-new-lintArea: new lintArea: new lintPerformanceGotta go fast!Gotta go fast!S-triageStatus: This issue is waiting on initial triage.Status: This issue is waiting on initial triage.