Skip to content

Commit

Permalink
chore: add false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Mar 15, 2024
1 parent ac28c24 commit bd3f58d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,23 @@ Detect and remove unused dependencies from `Cargo.toml` in Rust projects.
- [ ] error recovery
- [ ] print things more nicely

### False positives to be fixed

- [ ] package renames
- [ ] uppercase package name, e.g. `Inflector`
- [ ] pathname in type arguments

```rust
pub type ModuleIdToFileName = std::sync::Arc<
dashmap::DashMap<
rspack_core::ModuleIdentifier,
(String, AssetInfo),
std::hash::BuildHasherDefault<rspack_identifier::IdentifierHasher>,
>,
>;
```


## Prior Arts

* https://github.com/est31/cargo-udeps
Expand Down

0 comments on commit bd3f58d

Please sign in to comment.