diff --git a/IceCubesApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/IceCubesApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 3f75e205..c5e1ea79 100644 --- a/IceCubesApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/IceCubesApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -15,7 +15,7 @@ "location" : "https://github.com/evgenyneu/keychain-swift", "state" : { "branch" : "master", - "revision" : "32a99b537d1c6f3529a08257c28a5feb70c0c5af" + "revision" : "e43f9b99b172ae6a7253047f8ba95c7a0b05b99f" } }, { @@ -23,8 +23,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/kean/Nuke", "state" : { - "revision" : "1e7395a8931ad19659fd1e10137a862b9c1e2a38", - "version" : "11.5.0" + "revision" : "81f6a3dea0c8ce3b87389c241c48601be07af0b1", + "version" : "11.5.1" } }, { diff --git a/Packages/Account/Sources/Account/AccountDetailHeaderView.swift b/Packages/Account/Sources/Account/AccountDetailHeaderView.swift index fc4f0512..3e91d929 100644 --- a/Packages/Account/Sources/Account/AccountDetailHeaderView.swift +++ b/Packages/Account/Sources/Account/AccountDetailHeaderView.swift @@ -3,7 +3,6 @@ import Models import DesignSystem import Env import Shimmer -import Nuke import NukeUI struct AccountDetailHeaderView: View { diff --git a/Packages/DesignSystem/Sources/DesignSystem/AccountExt.swift b/Packages/DesignSystem/Sources/DesignSystem/AccountExt.swift index 31f57a9e..6153fc33 100644 --- a/Packages/DesignSystem/Sources/DesignSystem/AccountExt.swift +++ b/Packages/DesignSystem/Sources/DesignSystem/AccountExt.swift @@ -1,6 +1,5 @@ import Foundation import SwiftUI -import Nuke import NukeUI import Models @@ -29,7 +28,7 @@ extension Account { ProgressView() } } - .processors([ImageProcessors.Resize(size: .init(width: 20, height: 20))]) + .processors([.resize(size: .init(width: 20, height: 20))]) .frame(width: 20, height: 20) } else { Text(part.value) diff --git a/Packages/DesignSystem/Sources/DesignSystem/Views/AvatarView.swift b/Packages/DesignSystem/Sources/DesignSystem/Views/AvatarView.swift index 52772aa8..fb4b2ac8 100644 --- a/Packages/DesignSystem/Sources/DesignSystem/Views/AvatarView.swift +++ b/Packages/DesignSystem/Sources/DesignSystem/Views/AvatarView.swift @@ -1,7 +1,6 @@ import SwiftUI import Shimmer import NukeUI -import Nuke public struct AvatarView: View { public enum Size { @@ -56,8 +55,7 @@ public struct AvatarView: View { placeholderView } } - .processors([ImageProcessors.Resize(size: size.size), - ImageProcessors.RoundedCorners(radius: size.cornerRadius)]) + .processors([.resize(size: size.size), .roundedCorners(radius: size.cornerRadius)]) .frame(width: size.size.width, height: size.size.height) } } diff --git a/Packages/Status/Sources/Status/Row/StatusCardView.swift b/Packages/Status/Sources/Status/Row/StatusCardView.swift index ac7694c1..4a54ee2f 100644 --- a/Packages/Status/Sources/Status/Row/StatusCardView.swift +++ b/Packages/Status/Sources/Status/Row/StatusCardView.swift @@ -1,7 +1,6 @@ import SwiftUI import Models import Shimmer -import Nuke import NukeUI public struct StatusCardView: View { diff --git a/Packages/Status/Sources/Status/Row/StatusMediaPreviewView.swift b/Packages/Status/Sources/Status/Row/StatusMediaPreviewView.swift index ab528f69..c702d4a3 100644 --- a/Packages/Status/Sources/Status/Row/StatusMediaPreviewView.swift +++ b/Packages/Status/Sources/Status/Row/StatusMediaPreviewView.swift @@ -2,7 +2,6 @@ import SwiftUI import Models import Env import Shimmer -import Nuke import NukeUI import DesignSystem