From 274c150982e71e14f9db5a1a6dc63a245bf44702 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Thu, 16 May 2024 23:08:43 +0200 Subject: [PATCH] meta: Deny including multiple versions of `image` To prevent https://github.com/ruffle-rs/ruffle/issues/15836 from reoccurring. --- deny.toml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/deny.toml b/deny.toml index b61ae142c009..736e9ebc2485 100644 --- a/deny.toml +++ b/deny.toml @@ -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