From 241a6adadaf3ef3ed6afe27862735c82bde8225e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Wed, 20 Nov 2024 12:52:55 +0100 Subject: [PATCH] chore: Deny idna_adapter >=1.1, unicode-normalization, and icu_normalizer deps --- deny.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/deny.toml b/deny.toml index d7d6dc5fc003..9b8cac4e91b1 100644 --- a/deny.toml +++ b/deny.toml @@ -62,6 +62,14 @@ deny = [ # 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 }, + # Force using the 1.0.x series, with no actual IDNA support. We don't + # need it (Flash Player didn't support it), so it would just add bloat. + # See: https://crates.io/crates/idna_adapter/ + "idna_adapter:>=1.1", + # Would be used by the 1.1 series of idna_adapter. + "unicode-normalization", + # Would be used by the 1.2 series of idna_adapter. + "icu_normalizer", ] [sources]