Skip to content

Commit d7844c0

Browse files
committedJul 19, 2023
Stop reporting errors on duplicate dependencies
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.
1 parent d895678 commit d7844c0

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed
 

‎deny.toml

+1-7
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,8 @@ license-files = [
2929
]
3030

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

4135
[sources]
4236
unknown-registry = "warn"

0 commit comments

Comments
 (0)