Skip to content

Commit

Permalink
Stop reporting errors on duplicate dependencies
Browse files Browse the repository at this point in the history
Since tower-http doesn't maintain a Cargo.lock in git, this check breaks
very often due to dependencies doing their own maintenance.
The signal / noise ratio of this check was very low.
  • Loading branch information
jplatte committed Jul 19, 2023
1 parent d895678 commit d7844c0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,8 @@ license-files = [
]

[bans]
multiple-versions = "deny"
multiple-versions = "warn"
highlight = "all"
skip = [
# tracing-subscriber depends on multiple versions of regex-syntax.
# This is not actually depended by tower-http as this is caused by examples.
{ name = "regex-syntax", version = ">=0.6, <= 0.7" },
]
skip-tree = [{ name = "tower", version = ">=0.3, <=0.4" }]

[sources]
unknown-registry = "warn"
Expand Down

0 comments on commit d7844c0

Please sign in to comment.