Skip to content

Commit

Permalink
meta: Deny including multiple versions of image
Browse files Browse the repository at this point in the history
To prevent #15836 from reoccurring.
  • Loading branch information
torokati44 committed May 16, 2024
1 parent 2185f8d commit 3d7e526
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,14 @@ license-files = [
# Lint level for when multiple versions of the same crate are detected
multiple-versions = "warn"

# We are manually pinning `tracing-tracy` to match the version used by
# `profiling`, but this can get stale easily.
deny = [{ name = "tracy-client", deny-multiple-versions = true }]
deny = [
# We are manually pinning `tracing-tracy` to match the version used by
# `profiling`, but this can get stale easily.
{ name = "tracy-client", deny-multiple-versions = true },
# Having multiple versions of this can silently cause images (such as
# the logo in the about dialog) in egui to not appear.
{ name = "image", deny-multiple-versions = true },
]

[sources]
# Lint level for what to happen when a crate from a crate registry that is not
Expand Down

0 comments on commit 3d7e526

Please sign in to comment.