Skip to content

Commit

Permalink
Add rand etc to deny.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Jun 10, 2023
1 parent a5f0081 commit ea350a0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,16 @@ deny = [
# Certain crates/versions that will be skipped when doing duplicate detection.
skip = [
#{ name = "ansi_term", version = "=0.11.0" },

# ed25519-dalek and proptest have conflicting rand deps,
# where ed25519-dalek is on an older revision.
# proptest is only used as a dev-dependency,
# so this conflict should not cause extra bloat to contracts.
# Below are the newer version numbers required by proptest.
{ name = "rand", version = "0.8" },
{ name = "rand_core", version = "0.6" },
{ name = "rand_chacha", version = "0.3" },
{ name = "getrandom", version = "0.2" },
]
# Similarly to `skip` allows you to skip certain crates during duplicate
# detection. Unlike skip, it also includes the entire tree of transitive
Expand Down

0 comments on commit ea350a0

Please sign in to comment.