Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
Limit targets for cargo deny checks
Browse files Browse the repository at this point in the history
We only care for duplicate dependencies on supported targets.
  • Loading branch information
swsnr committed Dec 1, 2022
1 parent e514dc5 commit dcd31dd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
targets = []
targets = [
{ triple = 'x86_64-unknown-linux-musl' },
{ triple = 'x86_64-unknown-linux-gnu' },
{ triple = 'x86_64-apple-darwin' },
{ triple = 'x86_64-pc-windows-msvc' },
]

[advisories]
db-path = "~/.cargo/advisory-db"
Expand Down

0 comments on commit dcd31dd

Please sign in to comment.