Open
Description
Describe the bug
the new workspace-dependency.unused
setting reports false positives when you proxy crates.io via another cargo repository.
i found this running against an internal artifactory mirror of crates.io, which for obvious reasons i can't use for a reproduction, but using a random (out of date) mirror i found on the web also reproduces it.
minimal repro repo available here
To reproduce
- check out minimal repro repo above, OR add the following to
.cargo/config.toml
in the root of a cargo project:
[source.mirror]
registry = "https://github.com/hotg-ai/crates.io-index"
[source.crates-io]
# comment out below line (stop proxying crates.io via mirror) to fix issue
replace-with = "mirror"
- run
cargo deny check bans
- should get the following output:
❯ cargo deny check bans
error[unused-workspace-dependency]: workspace dependency is declared, but unused
┌─ /Users/lake.armitage/personal/workspace-lint-false-positive-repro/Cargo.toml:12:1
│
12 │ wiremock = "0.5"
│ ━━━━━━━━ unused workspace dependency
bans FAILED
despite the wiremock
workspace dependency being used in bin/foo-lib/Cargo.toml
commenting out the replace-with
line in the config.toml resolves the issue.
cargo-deny version
cargo-deny 0.16.1
What OS were you running cargo-deny on?
MacOS
Additional context
No response