Skip to content

Commit

Permalink
Forbid multiple dep versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bheylin committed Oct 26, 2024
1 parent 59e678f commit 5c24146
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# configuration for https://github.com/EmbarkStudios/cargo-deny
[graph]
all-features = true

[licenses]
confidence-threshold = 0.8
Expand All @@ -12,9 +14,10 @@ allow = [
yanked = "deny"

[bans]
multiple-versions = "allow"
multiple-versions = "deny"
wildcards = 'deny'

[sources]
unknown-registry = "deny"
unknown-git = "warn"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]

0 comments on commit 5c24146

Please sign in to comment.