Skip to content

Commit

Permalink
chore: Use exclude config to ignore examples from cargo-deny (#2036)
Browse files Browse the repository at this point in the history
  • Loading branch information
tottoto authored Nov 6, 2024
1 parent b28b59b commit 659983f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[graph]
all-features = true
exclude = ["examples"]

[bans]
multiple-versions = "deny"
Expand All @@ -17,10 +18,12 @@ deny = [
# term is not fully maintained, and termcolor is replacing it
{ crate = "term" },
]
skip = [
{ crate = "[email protected]", reason = "tower depends on it" }
]
skip-tree = [
{ crate = "windows-sys" },
{ crate = "hermit-abi" },
{ crate = "examples" },
]

[licenses]
Expand Down

0 comments on commit 659983f

Please sign in to comment.