From d712199ddf0ae3e2833f10a5fe742aa08d16f909 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 30 Jun 2024 18:05:03 -0700 Subject: [PATCH] Remove AppConfig module. --- Images/Package.swift | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Images/Package.swift b/Images/Package.swift index 391481d08..17dd61c24 100644 --- a/Images/Package.swift +++ b/Images/Package.swift @@ -13,8 +13,7 @@ let package = Package( dependencies: [ .package(path: "../Core"), .package(path: "../Articles"), - .package(path: "../Account"), - .package(path: "../AppConfig") + .package(path: "../Account") ], targets: [ .target( @@ -22,8 +21,7 @@ let package = Package( dependencies: [ "Core", "Articles", - "Account", - "AppConfig" + "Account" ] // Disabled due to Sendable warnings about RSImage (NSImage). // TODO: check if Swift 6 will allow us to deal with these warnings.