From 7404987095a2aadbd3e89dd157e9fba9b238c082 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 4 Sep 2024 18:26:03 -0500 Subject: [PATCH] Allow `UniformTypeIdentifiers.framework` to be dynamically linked --- src/validation.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/validation.rs b/src/validation.rs index 292a3c56..0a59d7a8 100644 --- a/src/validation.rs +++ b/src/validation.rs @@ -349,6 +349,11 @@ static DARWIN_ALLOWED_DYLIBS: Lazy> = Lazy::new(|| { max_compatibility_version: "1.0.0".try_into().unwrap(), required: true, }, + MachOAllowedDylib { + name: "/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers".to_string(), + max_compatibility_version: "1.0.0".try_into().unwrap(), + required: true, + }, MachOAllowedDylib { name: "/usr/lib/libedit.3.dylib".to_string(), max_compatibility_version: "2.0.0".try_into().unwrap(),