Skip to content

Commit

Permalink
Ignore duplicate dependencies inside criterion
Browse files Browse the repository at this point in the history
Latest master was getting CI failures on cargo-deny due to duplicate dependencies inside criterion:
https://github.com/bitshifter/glam-rs/pull/44/checks?check_run_id=396139085

And as that is not something we can control here and criterion is just a dev dependency, I disabled duplicate crate detection specifically for criterion
  • Loading branch information
repi committed Jan 17, 2020
1 parent adb231f commit 785cea9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions deny.toml
@@ -1,11 +1,9 @@
[bans]
multiple-versions = "deny"
deny = []
skip = [
# criterion uses old 0.3, glam uses 0.4
{ name = "rand_xoshiro", version = "=0.3" },
# serde_json uses old 0.2 instead of 1.0
{ name = "ryu", version = "=0.2" },
skip-tree = [
# ignore criterion dev-dependency that often have duplicate dependencies internally
{ name = "criterion" },
]

[licenses]
Expand Down

0 comments on commit 785cea9

Please sign in to comment.