The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of FZUIKit, reference 1.2.5 (59c121), with Swift 6.0 for macOS (SPM) on 16 Mar 2025 10:08:06 UTC.

Swift 6 data race errors: 603

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

    | `- note: add '@retroactive' to silence this warning
184 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
185 |         lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:235:1: warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
233 | }
234 |
235 | extension EdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
236 |     /// An edge insets struct whose top, leading, bottom, and trailing fields are all set to 0.
237 |     public static var zero: EdgeInsets = .init(top: 0, leading: 0, bottom: 0, trailing: 0)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIRectCorner+.swift:66:1: warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
64 | }
65 |
66 | extension NSUIRectCorner: Hashable {
   | |- warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
67 |     public func hash(into hasher: inout Hasher) {
68 |         hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:11:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
 9 | import SwiftUI
10 |
11 | extension AnimatablePair: Comparable where First: Comparable, Second: Comparable {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |     public static func < (lhs: AnimatablePair<First, Second>, rhs: AnimatablePair<First, Second>) -> Bool {
13 |         lhs.first < rhs.first && lhs.second < rhs.second
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:17:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
15 | }
16 |
17 | extension AnimatablePair: MultiplicativeArithmetic where First: MultiplicativeArithmetic, Second: MultiplicativeArithmetic {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |     public static func / (lhs: Self, rhs: Self) -> Self {
19 |         Self(lhs.first / rhs.first, lhs.second / rhs.second)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:27:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Array: Animatable where Element: Animatable {}
   | |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
28 |
[508/655] Compiling FZUIKit UIAlertController+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Stack.swift:47:17: warning: variable 'transform' was never mutated; consider changing to 'let' constant
45 |
46 |             // Create a rotation transform
47 |             var transform = NSAffineTransform()
   |                 `- warning: variable 'transform' was never mutated; consider changing to 'let' constant
48 |             transform.translateX(by: currentOffset.x, yBy: currentOffset.y)
49 |             transform.rotate(byDegrees: angle)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:80:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 78 | }
 79 |
 80 | extension NSUIEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 81 |     public static func == (lhs: NSUIEdgeInsets, rhs: NSUIEdgeInsets) -> Bool {
 82 |         lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:183:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
181 | }
182 |
183 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
184 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
185 |         lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:235:1: warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
233 | }
234 |
235 | extension EdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
236 |     /// An edge insets struct whose top, leading, bottom, and trailing fields are all set to 0.
237 |     public static var zero: EdgeInsets = .init(top: 0, leading: 0, bottom: 0, trailing: 0)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIRectCorner+.swift:66:1: warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
64 | }
65 |
66 | extension NSUIRectCorner: Hashable {
   | |- warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
67 |     public func hash(into hasher: inout Hasher) {
68 |         hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:11:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
 9 | import SwiftUI
10 |
11 | extension AnimatablePair: Comparable where First: Comparable, Second: Comparable {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |     public static func < (lhs: AnimatablePair<First, Second>, rhs: AnimatablePair<First, Second>) -> Bool {
13 |         lhs.first < rhs.first && lhs.second < rhs.second
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:17:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
15 | }
16 |
17 | extension AnimatablePair: MultiplicativeArithmetic where First: MultiplicativeArithmetic, Second: MultiplicativeArithmetic {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |     public static func / (lhs: Self, rhs: Self) -> Self {
19 |         Self(lhs.first / rhs.first, lhs.second / rhs.second)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:27:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Array: Animatable where Element: Animatable {}
   | |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
28 |
[509/655] Compiling FZUIKit UIConfigurationStateCustomKey+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Stack.swift:47:17: warning: variable 'transform' was never mutated; consider changing to 'let' constant
45 |
46 |             // Create a rotation transform
47 |             var transform = NSAffineTransform()
   |                 `- warning: variable 'transform' was never mutated; consider changing to 'let' constant
48 |             transform.translateX(by: currentOffset.x, yBy: currentOffset.y)
49 |             transform.rotate(byDegrees: angle)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:80:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 78 | }
 79 |
 80 | extension NSUIEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 81 |     public static func == (lhs: NSUIEdgeInsets, rhs: NSUIEdgeInsets) -> Bool {
 82 |         lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:183:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
181 | }
182 |
183 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
184 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
185 |         lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:235:1: warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
233 | }
234 |
235 | extension EdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
236 |     /// An edge insets struct whose top, leading, bottom, and trailing fields are all set to 0.
237 |     public static var zero: EdgeInsets = .init(top: 0, leading: 0, bottom: 0, trailing: 0)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIRectCorner+.swift:66:1: warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
64 | }
65 |
66 | extension NSUIRectCorner: Hashable {
   | |- warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
67 |     public func hash(into hasher: inout Hasher) {
68 |         hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:11:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
 9 | import SwiftUI
10 |
11 | extension AnimatablePair: Comparable where First: Comparable, Second: Comparable {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |     public static func < (lhs: AnimatablePair<First, Second>, rhs: AnimatablePair<First, Second>) -> Bool {
13 |         lhs.first < rhs.first && lhs.second < rhs.second
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:17:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
15 | }
16 |
17 | extension AnimatablePair: MultiplicativeArithmetic where First: MultiplicativeArithmetic, Second: MultiplicativeArithmetic {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |     public static func / (lhs: Self, rhs: Self) -> Self {
19 |         Self(lhs.first / rhs.first, lhs.second / rhs.second)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:27:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Array: Animatable where Element: Animatable {}
   | |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
28 |
[510/655] Compiling FZUIKit UIContentConfiguration+Stateless.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Stack.swift:47:17: warning: variable 'transform' was never mutated; consider changing to 'let' constant
45 |
46 |             // Create a rotation transform
47 |             var transform = NSAffineTransform()
   |                 `- warning: variable 'transform' was never mutated; consider changing to 'let' constant
48 |             transform.translateX(by: currentOffset.x, yBy: currentOffset.y)
49 |             transform.rotate(byDegrees: angle)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:80:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 78 | }
 79 |
 80 | extension NSUIEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 81 |     public static func == (lhs: NSUIEdgeInsets, rhs: NSUIEdgeInsets) -> Bool {
 82 |         lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:183:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
181 | }
182 |
183 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
184 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
185 |         lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:235:1: warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
233 | }
234 |
235 | extension EdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
236 |     /// An edge insets struct whose top, leading, bottom, and trailing fields are all set to 0.
237 |     public static var zero: EdgeInsets = .init(top: 0, leading: 0, bottom: 0, trailing: 0)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIRectCorner+.swift:66:1: warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
64 | }
65 |
66 | extension NSUIRectCorner: Hashable {
   | |- warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
67 |     public func hash(into hasher: inout Hasher) {
68 |         hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:11:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
 9 | import SwiftUI
10 |
11 | extension AnimatablePair: Comparable where First: Comparable, Second: Comparable {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |     public static func < (lhs: AnimatablePair<First, Second>, rhs: AnimatablePair<First, Second>) -> Bool {
13 |         lhs.first < rhs.first && lhs.second < rhs.second
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:17:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
15 | }
16 |
17 | extension AnimatablePair: MultiplicativeArithmetic where First: MultiplicativeArithmetic, Second: MultiplicativeArithmetic {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |     public static func / (lhs: Self, rhs: Self) -> Self {
19 |         Self(lhs.first / rhs.first, lhs.second / rhs.second)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:27:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Array: Animatable where Element: Animatable {}
   | |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
28 |
[511/655] Compiling FZUIKit AnimatablePair+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Stack.swift:47:17: warning: variable 'transform' was never mutated; consider changing to 'let' constant
45 |
46 |             // Create a rotation transform
47 |             var transform = NSAffineTransform()
   |                 `- warning: variable 'transform' was never mutated; consider changing to 'let' constant
48 |             transform.translateX(by: currentOffset.x, yBy: currentOffset.y)
49 |             transform.rotate(byDegrees: angle)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:80:1: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 78 | }
 79 |
 80 | extension NSUIEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 81 |     public static func == (lhs: NSUIEdgeInsets, rhs: NSUIEdgeInsets) -> Bool {
 82 |         lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:183:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
181 | }
182 |
183 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
184 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
185 |         lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIEdgeInset+.swift:235:1: warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
233 | }
234 |
235 | extension EdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'EdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
236 |     /// An edge insets struct whose top, leading, bottom, and trailing fields are all set to 0.
237 |     public static var zero: EdgeInsets = .init(top: 0, leading: 0, bottom: 0, trailing: 0)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Misc/NSUIRectCorner+.swift:66:1: warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
64 | }
65 |
66 | extension NSUIRectCorner: Hashable {
   | |- warning: extension declares a conformance of imported type 'NSRectCorner' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'FZSwiftUtils' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
67 |     public func hash(into hasher: inout Hasher) {
68 |         hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:11:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
 9 | import SwiftUI
10 |
11 | extension AnimatablePair: Comparable where First: Comparable, Second: Comparable {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |     public static func < (lhs: AnimatablePair<First, Second>, rhs: AnimatablePair<First, Second>) -> Bool {
13 |         lhs.first < rhs.first && lhs.second < rhs.second
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:17:1: warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
15 | }
16 |
17 | extension AnimatablePair: MultiplicativeArithmetic where First: MultiplicativeArithmetic, Second: MultiplicativeArithmetic {
   | |- warning: extension declares a conformance of imported type 'AnimatablePair' to imported protocol 'MultiplicativeArithmetic'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |     public static func / (lhs: Self, rhs: Self) -> Self {
19 |         Self(lhs.first / rhs.first, lhs.second / rhs.second)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/SwiftUI/AnimatablePair+.swift:27:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Array: Animatable where Element: Animatable {}
   | |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
28 |
[512/655] Compiling FZUIKit CGVector4.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[513/655] Compiling FZUIKit Interpolatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[514/655] Compiling FZUIKit Perspective.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[515/655] Compiling FZUIKit SIMDConvenienceExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[516/655] Compiling FZUIKit SIMDDecomposed.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[517/655] Compiling FZUIKit NSFont+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[518/655] Compiling FZUIKit NSFont+FontFamily.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[519/655] Compiling FZUIKit NSUIFont+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[520/655] Compiling FZUIKit NSUIFontDescriptor+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[521/655] Compiling FZUIKit NSBitmapImageRep+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[522/655] Compiling FZUIKit NSImage+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[523/655] Compiling FZUIKit NSImage+Animated.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[524/655] Compiling FZUIKit NSImage+Thumbnail.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[525/655] Compiling FZUIKit CGImage+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[526/655] Compiling FZUIKit CIImage+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[527/655] Compiling FZUIKit NSUIImage+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[528/655] Compiling FZUIKit NSUIImage+Animated.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[529/655] Compiling FZUIKit NSUIImage+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[530/655] Compiling FZUIKit NSUIImage+Combine.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[531/655] Compiling FZUIKit NSUIImage+ContourPath.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[532/655] Compiling FZUIKit NSUIImage+Modify.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[533/655] Compiling FZUIKit NSUIImage+NonAlpha.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[534/655] Compiling FZUIKit NSUIImage+RecognizedText.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[535/655] Compiling FZUIKit NSUIImage+Shadow.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/AppKit/NSFont+.swift:13:5: warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 11 |
 12 |     @available(macOS 11.0, *)
 13 |     extension NSFont.TextStyle: CaseIterable {
    |     |- warning: extension declares a conformance of imported type 'TextStyle' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 14 |         /// A collection of all text style values.
 15 |         public static var allCases: [Self] {
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Font/NSUIFontDescriptor+.swift:140:1: warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
138 | }
139 |
140 | extension NSUIFontDescriptor.SymbolicTraits: Hashable {
    | |- warning: extension declares a conformance of imported type 'SymbolicTraits' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
141 |     static var nsUIBold: Self {
142 |         #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/Image/NSUIImage+Shadow.swift:20:14: warning: property is accessed but result is unused
18 |         guard let color = shadow.resolvedColor()?.cgColor, color.alpha >= 0.0 else { return self }
19 |
20 |         self.nonAlphaRect
   |              `- warning: property is accessed but result is unused
21 |
22 |         let repImages = representations.compactMap({ ($0 as? NSBitmapImageRep)?.cgImage?.withShadow(shadow) })
[536/655] Compiling FZUIKit EditiableView.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[537/655] Compiling FZUIKit NSGestureRecognizer+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[538/655] Compiling FZUIKit NSMagnificationGestureRecognizer+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[539/655] Compiling FZUIKit NSRotationGestureRecognizer+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[540/655] Compiling FZUIKit NSBox+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[541/655] Compiling FZUIKit AdvanceConfiguration+View.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[542/655] Compiling FZUIKit AdvanceConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[543/655] Compiling FZUIKit Configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[544/655] Compiling FZUIKit NSButton+Configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[545/655] Compiling FZUIKit NSButton+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[546/655] Compiling FZUIKit NSPopUpButton+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[547/655] Compiling FZUIKit NSClipView+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[548/655] Compiling FZUIKit NSColorPanel+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[549/655] Compiling FZUIKit NSColorWell+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[550/655] Compiling FZUIKit NSControl+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[551/655] Compiling FZUIKit NSDatePicker+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[552/655] Compiling FZUIKit GridColumn.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[553/655] Compiling FZUIKit GridRow.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[554/655] Compiling FZUIKit NSGridCell+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[555/655] Compiling FZUIKit NSGridColumn+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[556/655] Compiling FZUIKit NSGridRow+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[557/655] Compiling FZUIKit NSGridView+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[558/655] Compiling FZUIKit NSImageView+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[559/655] Compiling FZUIKit NSLevelIndicator+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/View/AppKit/NSControl+.swift:106:1: warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
104 | }
105 |
106 | extension NSControl.StateValue: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'StateValue' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
107 |     public init(booleanLiteral value: Bool) {
108 |         self = value ? .on : .off
[560/655] Compiling FZUIKit NSUICollectionViewLayout+Column.swift
[561/655] Compiling FZUIKit NSUICollectionViewLayout+Comp.swift
[562/655] Compiling FZUIKit NSUICollectionViewLayout+Pinch.swift
[563/655] Compiling FZUIKit UICollectionView+.swift
[564/655] Compiling FZUIKit UICollectionViewCell+.swift
[565/655] Compiling FZUIKit UICollectionViewDiffableDataSource+.swift
[566/655] Compiling FZUIKit UICollectionViewLayout+Layout.swift
[567/655] Compiling FZUIKit NSUIControl+.swift
[568/655] Compiling FZUIKit NSUIHostingController+.swift
[569/655] Compiling FZUIKit NSUIHostingController+AutoHeight.swift
[570/655] Compiling FZUIKit NSUIStackView+.swift
[571/655] Compiling FZUIKit NSUITextField+.swift
[572/655] Compiling FZUIKit NSUITextView+.swift
[573/655] Compiling FZUIKit NSUIView+.swift
[574/655] Compiling FZUIKit NSUIView+BackgroundColor.swift
[575/655] Compiling FZUIKit NSUIView+Constraints.swift
[576/655] Compiling FZUIKit NSUIView+Drag.swift
[577/655] Compiling FZUIKit NSUIView+Material.swift
[578/655] Compiling FZUIKit NSUIView+PinEdges.swift
[579/655] Compiling FZUIKit NSUIView+RenderedImage.swift
[580/655] Compiling FZUIKit NSUIView+Shakable.swift
[581/655] Compiling FZUIKit NSUIView+VisualEffect.swift
[582/655] Compiling FZUIKit NSUIView+isEnabled.swift
[583/655] Compiling FZUIKit NSViewProtocol.swift
[584/655] Compiling FZUIKit NSView+BackgroundStyle.swift
[585/655] Compiling FZUIKit NSView+Drag.swift
[586/655] Compiling FZUIKit NSView+Drop.swift
[587/655] Compiling FZUIKit NSView+FirstResponder.swift
[588/655] Compiling FZUIKit NSView+Handlers.swift
[589/655] Compiling FZUIKit NSView+Observer.swift
[590/655] Compiling FZUIKit NSView+Resize.swift
[591/655] Compiling FZUIKit NSView+SizeThatFits.swift
[592/655] Compiling FZUIKit NSView+SystemLayoutSizeFitting.swift
[593/655] Compiling FZUIKit NSView+TrackingArea.swift
[594/655] Compiling FZUIKit NSViewController+.swift
[595/655] Compiling FZUIKit NSVisualEffectView+.swift
[596/655] Compiling FZUIKit NSCollectionView+.swift
[597/655] Compiling FZUIKit NSCollectionView+DisplayingItems.swift
[598/655] Compiling FZUIKit NSCollectionView+EmptyView.swift
[599/655] Compiling FZUIKit NSCollectionView+ItemDropTargetGapIndicator.swift
[600/655] Compiling FZUIKit NSCollectionViewItem++SelfSizing.swift
[601/655] Compiling FZUIKit NSCollectionViewItem+.swift
[602/655] Compiling FZUIKit NSCollectionViewLayoutAttributes+.swift
[603/655] Compiling FZUIKit NSCollectionLayoutBoundarySupplementaryItem+.swift
[604/655] Compiling FZUIKit NSCollectionLayoutSection+.swift
[605/655] Compiling FZUIKit NSUICollectionView+.swift
[606/655] Compiling FZUIKit NSUICollectionViewDiffableDataSource+.swift
[607/655] Compiling FZUIKit NSUICollectionViewLayout+.swift
[608/655] Compiling FZUIKit NSUIColor+HSL.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[609/655] Compiling FZUIKit NSUIColor+Hex.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[610/655] Compiling FZUIKit NSUIColor+Image.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[611/655] Compiling FZUIKit NSUIColor+Luminosity.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[612/655] Compiling FZUIKit NSUIColor+Mixing.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[613/655] Compiling FZUIKit NSUIColor+RGB.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[614/655] Compiling FZUIKit UIColor+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[615/655] Compiling FZUIKit CAAnimation+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[616/655] Compiling FZUIKit CACornerMask+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[617/655] Compiling FZUIKit CADisplayLink+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[618/655] Compiling FZUIKit CAFrameRateRange+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[619/655] Compiling FZUIKit CALayer+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[620/655] Compiling FZUIKit CAMediaTimingFunction+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[621/655] Compiling FZUIKit CAPropertyAnimation+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[622/655] Compiling FZUIKit CAPropertyAnimation+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[623/655] Compiling FZUIKit CASpringAnimation+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[624/655] Compiling FZUIKit CATransaction+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[625/655] Compiling FZUIKit CATransform3D+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[626/655] Compiling FZUIKit CATransition+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[627/655] Compiling FZUIKit CALayerExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[628/655] Compiling FZUIKit CATransform3DConvenienceExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[629/655] Compiling FZUIKit CATransform3DExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[630/655] Compiling FZUIKit CGQuaternion.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[631/655] Compiling FZUIKit CGVector3.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CACornerMask+.swift:74:5: warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
72 |     }
73 |
74 |     extension CACornerMask: Hashable {
   |     |- warning: extension declares a conformance of imported type 'CACornerMask' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
75 |         public func hash(into hasher: inout Hasher) {
76 |             hasher.combine(rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/CATransform3D+.swift:13:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
11 |     import QuartzCore
12 |
13 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
14 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
15 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Extensions/CoreAnimation/Decomposed/CGQuaternion.swift:89:1: warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
 87 | @available(iOS, obsoleted: 17.0, message: "iOS 17 provides Hashable")
 88 | @available(tvOS, obsoleted: 17.0, message: "tvOS 17 provides Hashable")
 89 | extension simd_quatd: Hashable {
    | |- warning: extension declares a conformance of imported type 'simd_quatd' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'simd' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 90 |     public func hash(into hasher: inout Hasher) {
 91 |         hasher.combine(vector)
[632/655] Compiling FZUIKit NSMatrix+.swift
[633/655] Compiling FZUIKit NSProgressIndicator+.swift
[634/655] Compiling FZUIKit NSScrollView+.swift
[635/655] Compiling FZUIKit NSScroller+.swift
[636/655] Compiling FZUIKit NSSegmentedControl+.swift
[637/655] Compiling FZUIKit NSSegmentedControl+Builder.swift
[638/655] Compiling FZUIKit NSSegmentedControl+Segment.swift
[639/655] Compiling FZUIKit NSSlider+.swift
[640/655] Compiling FZUIKit NSSplitViewController+.swift
[641/655] Compiling FZUIKit NSStackView+.swift
[642/655] Compiling FZUIKit NSStepper+.swift
[643/655] Compiling FZUIKit NSSwitch+.swift
[644/655] Compiling FZUIKit NSTextField+.swift
[645/655] Compiling FZUIKit NSTextField+AdjustFont.swift
[646/655] Compiling FZUIKit NSTextField+Colors.swift
[647/655] Compiling FZUIKit NSTextField+Editing.swift
[648/655] Compiling FZUIKit NSTextField+ExtendedCell.swift
[649/655] Compiling FZUIKit NSTextField+Resizing.swift
[650/655] Compiling FZUIKit NSTextField+TextLayout.swift
[651/655] Compiling FZUIKit NSTextFieldCell+.swift
[652/655] Compiling FZUIKit TextLine.swift
[653/655] Compiling FZUIKit NSTextView+.swift
[654/655] Compiling FZUIKit NSView+.swift
[655/655] Compiling FZUIKit NSView+Animate.swift
Build complete! (13.57s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "fzswiftutils",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/flocked/FZSwiftUtils.git"
    }
  ],
  "manifest_display_name" : "FZUIKit",
  "name" : "FZUIKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15.1"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "FZUIKit",
      "targets" : [
        "FZUIKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "_ObjectProxy",
      "module_type" : "ClangTarget",
      "name" : "_ObjectProxy",
      "path" : "Sources/FZUIKit+ObjC/ObjectProxy",
      "product_memberships" : [
        "FZUIKit"
      ],
      "sources" : [
        "_ObjectProxy.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_DelegateProxy",
      "module_type" : "ClangTarget",
      "name" : "_DelegateProxy",
      "path" : "Sources/FZUIKit+ObjC/DelegateProxy",
      "product_memberships" : [
        "FZUIKit"
      ],
      "sources" : [
        "_DelegateProxy.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FZUIKit",
      "module_type" : "SwiftTarget",
      "name" : "FZUIKit",
      "path" : "Sources/FZUIKit",
      "product_dependencies" : [
        "FZSwiftUtils"
      ],
      "product_memberships" : [
        "FZUIKit"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/countingdownhand.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/countingdownhand.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/countingupandownhand.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/countingupandownhand.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/countinguphand.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/countinguphand.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/move.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/move.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizeeast.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizeeast.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizeeastwest.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizeeastwest.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenorth.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenorth.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenortheast.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenortheast.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenortheastsouthwest.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenortheastsouthwest.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenorthsouth.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenorthsouth.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenorthwest.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenorthwest.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenorthwestsoutheast.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizenorthwestsoutheast.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizesouth.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizesouth.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizesoutheast.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizesoutheast.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizesouthwest.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizesouthwest.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizewest.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/resizewest.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/zoomin.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/zoomin.plist",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/zoomout.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FZUIKit/Resources/Cursors/zoomout.plist",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Classes/AppKit/DockTile.swift",
        "Classes/AppKit/FontManager/FontManager.swift",
        "Classes/AppKit/FontManager/FontManagerAlt.swift",
        "Classes/AppKit/FontManager/FontMenuItemView.swift",
        "Classes/AppKit/FontManager/VerticallyCenteredTextField.swift",
        "Classes/AppKit/GestureRecognizer/ActionGestureRecognizer.swift",
        "Classes/AppKit/GestureRecognizer/SwipeTouchGestureRecognizer.swift",
        "Classes/AppKit/GraphicsRenderer/GraphicsRenderer.swift",
        "Classes/AppKit/GraphicsRenderer/GraphicsRendererContext.swift",
        "Classes/AppKit/GraphicsRenderer/GraphicsRendererFormat.swift",
        "Classes/AppKit/GraphicsRenderer/Image/ImageRenderer.swift",
        "Classes/AppKit/GraphicsRenderer/Image/ImageRendererContext.swift",
        "Classes/AppKit/GraphicsRenderer/Image/ImageRendererFormat.swift",
        "Classes/AppKit/GraphicsRenderer/PDF/PDFDocumentInfo.swift",
        "Classes/AppKit/GraphicsRenderer/PDF/PDFRenderer.swift",
        "Classes/AppKit/GraphicsRenderer/PDF/PDFRendererContext.swift",
        "Classes/AppKit/GraphicsRenderer/PDF/PDFRendererFormat.swift",
        "Classes/AppKit/HostingPopover.swift",
        "Classes/AppKit/LaunchAtLogin.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSBackgroundConfiguration/NSBackgroundConfiguration.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSBackgroundConfiguration/NSBackgroundContentView.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSContentUnavailableConfiguration/ Unused/NSContentUnavailableConfigurationState.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSContentUnavailableConfiguration/ Unused/NSView+ContentUnavailable.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSContentUnavailableConfiguration/NSContentUnavailableConfiguration.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSContentUnavailableConfiguration/NSContentUnavailableView.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSContentUnavailableConfiguration/Properties/UnavailableConfiguration+Button.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSContentUnavailableConfiguration/Properties/UnavailableConfiguration+Image.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSContentUnavailableConfiguration/Properties/UnavailableConfiguration+Text.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSHostingConfiguration/NSHostingConfiguration.swift",
        "Classes/AppKit/NSContentConfiguration/Configurations/NSHostingConfiguration/NSHostingContentView.swift",
        "Classes/AppKit/NSContentConfiguration/ContentConfigurationView.swift",
        "Classes/AppKit/NSContentConfiguration/ControlConfigurationState.swift",
        "Classes/AppKit/NSContentConfiguration/NSViewConfigurationState.swift",
        "Classes/AppKit/NSContentConfiguration/Protocols/NSConfigurationState.swift",
        "Classes/AppKit/NSContentConfiguration/Protocols/NSContentConfiguration.swift",
        "Classes/AppKit/NSContentConfiguration/Protocols/NSContentView.swift",
        "Classes/AppKit/NSTextSuggestionsDelegate/Suggestion+Item.swift",
        "Classes/AppKit/NSTextSuggestionsDelegate/Suggestion+Response.swift",
        "Classes/AppKit/NSTextSuggestionsDelegate/Suggestion+Section.swift",
        "Classes/AppKit/NSTextSuggestionsDelegate/SuggestionItem.swift",
        "Classes/AppKit/NSTextSuggestionsDelegate/SuggestionResponse.swift",
        "Classes/AppKit/NSTextSuggestionsDelegate/SuggestionSection.swift",
        "Classes/AppKit/NSTextSuggestionsDelegate/TextSuggestionsDelegate.swift",
        "Classes/AppKit/PageController/NSPageController+.swift",
        "Classes/AppKit/PageController/PageController.swift",
        "Classes/AppKit/PageController/PagingView.swift",
        "Classes/AppKit/TextFormatter.swift",
        "Classes/Content Configurations/BorderConfiguration.swift",
        "Classes/Content Configurations/ImageConfiguration.swift",
        "Classes/Content Configurations/ImageSymbolConfiguration.swift",
        "Classes/Content Configurations/ShadowConfiguration.swift",
        "Classes/Content Configurations/ShapeConfiguration.swift",
        "Classes/Content Configurations/TextConfiguration.swift",
        "Classes/Content Configurations/ViewConfiguration.swift",
        "Classes/Content Configurations/VisualEffectConfiguration.swift",
        "Classes/Content Transforms/ContentTransform+Border.swift",
        "Classes/Content Transforms/ContentTransform+Color.swift",
        "Classes/Content Transforms/ContentTransform+Image.swift",
        "Classes/Content Transforms/ContentTransform+Shadow.swift",
        "Classes/Content Transforms/ContentTransform+String.swift",
        "Classes/Content Transforms/ContentTransform+TextAttributes.swift",
        "Classes/Content Transforms/ContentTransform.swift",
        "Classes/DelegateProxy/DelegateProxy.swift",
        "Classes/DelegateProxy/DelegateProxyPublisher.swift",
        "Classes/DelegateProxy/DelegateProxyType.swift",
        "Classes/DisplayLink/DisplayLink+Combine.swift",
        "Classes/DisplayLink/DisplayLink+SwiftUI.swift",
        "Classes/DisplayLink/DisplayLinkTimer+Publisher.swift",
        "Classes/DisplayLink/DisplayLinkTimer+SwiftUI.swift",
        "Classes/DisplayLink/DisplayLinkTimer.swift",
        "Classes/Layer/DashedBorderLayer.swift",
        "Classes/Layer/EmphasizedBorderLayer.swift",
        "Classes/Layer/EmphasizedBorderView.swift",
        "Classes/Layer/ImageLayer.swift",
        "Classes/Layer/InnerShadowLayer.swift",
        "Classes/Layer/InverseMaskLayer.swift",
        "Classes/Misc/HTMLStringLoadingTask.swift",
        "Classes/Misc/Rubberband.swift",
        "Classes/SwiftUI/BarProgressStyle.swift",
        "Classes/SwiftUI/ContainerView.swift",
        "Classes/SwiftUI/EditableText.swift",
        "Classes/SwiftUI/IrregularGradient/IrregularGradient+ColorBlob.swift",
        "Classes/SwiftUI/IrregularGradient/IrregularGradient+Modifiers.swift",
        "Classes/SwiftUI/IrregularGradient/IrregularGradient.swift",
        "Classes/SwiftUI/QuicklookPreview.swift",
        "Classes/SwiftUI/SegmentedControl.swift",
        "Classes/SwiftUI/SimpleImageView.swift",
        "Classes/SwiftUI/TextFieldAdvanced.swift",
        "Classes/SwiftUI/VisualEffectView.swift",
        "Classes/View/AppKit/CenteredClipView.swift",
        "Classes/View/AppKit/FZScrollView.swift",
        "Classes/View/AppKit/ImageView/ImageView.swift",
        "Classes/View/AppKit/ImageView/MagnifyImageView.swift",
        "Classes/View/AppKit/MediaView/MagnifyMediaView.swift",
        "Classes/View/AppKit/MediaView/MediaView.swift",
        "Classes/View/AppKit/ScrollPlayerView.swift",
        "Classes/View/ColorPickerView.swift",
        "Classes/View/DashedBorderView.swift",
        "Classes/View/DateTextFieldLabel.swift",
        "Classes/View/FZWebView.swift",
        "Classes/View/GradientView/Gradient+Preset.swift",
        "Classes/View/GradientView/Gradient.swift",
        "Classes/View/GradientView/GradientLayer.swift",
        "Classes/View/GradientView/GradientView.swift",
        "Classes/View/NumberTextField.swift",
        "Classes/View/PullRefreshableScrollView.swift",
        "Classes/View/ResizingTextField.swift",
        "Classes/View/ShapeView/NSUIView+CornerShape.swift",
        "Classes/View/ShapeView/ShapedLayer.swift",
        "Classes/View/ShapeView/ShapedView.swift",
        "Classes/View/StackView/SimpleStackView.swift",
        "Classes/View/StackView/SpacerView.swift",
        "Classes/View/StackView/StackView.swift",
        "Extensions/AVKit/AVAsset+.swift",
        "Extensions/AVKit/AVAssetImageGenerator+.swift",
        "Extensions/AVKit/AVAssetReaderOutput+.swift",
        "Extensions/AVKit/AVAsynchronousKeyValueLoading+.swift",
        "Extensions/AVKit/AVAsynchronousKeyValueLoading+Values.swift",
        "Extensions/AVKit/AVPlayer+.swift",
        "Extensions/AVKit/AVPlayerItem+.swift",
        "Extensions/AVKit/AVPlayerView+.swift",
        "Extensions/AVKit/AVPlayerViewController+.swift",
        "Extensions/AVKit/CMTime+.swift",
        "Extensions/AVKit/CVImageBuffer+.swift",
        "Extensions/AppKit/AXUIElement/AXAction.swift",
        "Extensions/AppKit/AXUIElement/AXAttribute.swift",
        "Extensions/AppKit/AXUIElement/AXError.swift",
        "Extensions/AppKit/AXUIElement/AXLogger.swift",
        "Extensions/AppKit/AXUIElement/AXNotification.swift",
        "Extensions/AppKit/AXUIElement/AXNotificationObserver.swift",
        "Extensions/AppKit/AXUIElement/AXNotificationToken.swift",
        "Extensions/AppKit/AXUIElement/AXObserver+.swift",
        "Extensions/AppKit/AXUIElement/AXParameterizedAttribute.swift",
        "Extensions/AppKit/AXUIElement/AXRole.swift",
        "Extensions/AppKit/AXUIElement/AXSubrole.swift",
        "Extensions/AppKit/AXUIElement/AXUIElement+.swift",
        "Extensions/AppKit/AXUIElement/AXUIElementValues.swift",
        "Extensions/AppKit/Application/NSApplication+.swift",
        "Extensions/AppKit/Application/NSRunningApplication+.swift",
        "Extensions/AppKit/Event/NSEvent+.swift",
        "Extensions/AppKit/Event/NSEvent+KeyCode.swift",
        "Extensions/AppKit/Event/NSEvent+Monitor.swift",
        "Extensions/AppKit/Menu/MenuBuilder/NSMenu+AnyMenuItem.swift",
        "Extensions/AppKit/Menu/MenuBuilder/NSMenu+IndentGroup.swift",
        "Extensions/AppKit/Menu/MenuBuilder/NSMenu+MenuBuilder.swift",
        "Extensions/AppKit/Menu/MenuBuilder/NSMenu+MenuItem.swift",
        "Extensions/AppKit/Menu/MenuBuilder/NSMenu+SepereatorItem.swift",
        "Extensions/AppKit/Menu/MenuItemView+Alt.swift",
        "Extensions/AppKit/Menu/MenuItemView+SwiftUI.swift",
        "Extensions/AppKit/Menu/MenuItemView.swift",
        "Extensions/AppKit/Menu/NSColorMenuItem.swift",
        "Extensions/AppKit/Menu/NSMenu+.swift",
        "Extensions/AppKit/Menu/NSMenuItem+.swift",
        "Extensions/AppKit/Menu/NSStatusItem+.swift",
        "Extensions/AppKit/Misc/NSAlert+.swift",
        "Extensions/AppKit/Misc/NSAnimatablePropertyContainer+.swift",
        "Extensions/AppKit/Misc/NSAnimationContext+.swift",
        "Extensions/AppKit/Misc/NSAppearance+.swift",
        "Extensions/AppKit/Misc/NSCursor+.swift",
        "Extensions/AppKit/Misc/NSFontManager+.swift",
        "Extensions/AppKit/Misc/NSOpenPanel+.swift",
        "Extensions/AppKit/Misc/NSPopover+.swift",
        "Extensions/AppKit/Misc/NSPredicateEditor+.swift",
        "Extensions/AppKit/Misc/NSPredicateEditorRowTemplate+.swift",
        "Extensions/AppKit/Misc/NSResponder+.swift",
        "Extensions/AppKit/Misc/NSSavePanel+.swift",
        "Extensions/AppKit/Misc/NSScreen+.swift",
        "Extensions/AppKit/Misc/NSSound+.swift",
        "Extensions/AppKit/Misc/NSTouch+.swift",
        "Extensions/AppKit/Misc/NSUserInterfaceItemIdentifier+.swift",
        "Extensions/AppKit/Misc/NSWorkspace+.swift",
        "Extensions/AppKit/Pasteboard/DragPreview.swift",
        "Extensions/AppKit/Pasteboard/DropInfo.swift",
        "Extensions/AppKit/Pasteboard/NSDragOperation+.swift",
        "Extensions/AppKit/Pasteboard/NSDraggingImageComponent+.swift",
        "Extensions/AppKit/Pasteboard/NSDraggingInfo+.swift",
        "Extensions/AppKit/Pasteboard/NSDraggingItem+.swift",
        "Extensions/AppKit/Pasteboard/NSDraggingSession+.swift",
        "Extensions/AppKit/Pasteboard/NSFilePromiseProvider+.swift",
        "Extensions/AppKit/Pasteboard/NSPasteboard+.swift",
        "Extensions/AppKit/Pasteboard/NSPasteboardItem+.swift",
        "Extensions/AppKit/Pasteboard/PasteboardContent.swift",
        "Extensions/AppKit/Pasteboard/PasteboardReading.swift",
        "Extensions/AppKit/Pasteboard/PasteboardWriting.swift",
        "Extensions/AppKit/Toolbar/NSToolbarItem+.swift",
        "Extensions/AppKit/Toolbar/NSToolbarItem+Validation.swift",
        "Extensions/AppKit/Toolbar/NSToolbarItemGroup+.swift",
        "Extensions/AppKit/Toolbar/Toolbar/Toolbar+Builder.swift",
        "Extensions/AppKit/Toolbar/Toolbar/Toolbar.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+Button.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+Custom.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+Group.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+Menu.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+PopUpButton.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+PopoverButton.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+Search.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+Segmented.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+Seperator.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+SharingServicePicker.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+Standard.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+View.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem+item.swift",
        "Extensions/AppKit/Toolbar/ToolbarItem/ToolbarItem.swift",
        "Extensions/AppKit/Window/NSViewController+WindowController.swift",
        "Extensions/AppKit/Window/NSWindow+.swift",
        "Extensions/AppKit/Window/NSWindowController+.swift",
        "Extensions/AppKit/Window/NSWindowController+TabbableWindow.swift",
        "Extensions/AppKit/Window/NSWindowTabGroup+.swift",
        "Extensions/Color/AppKit/NSColor+.swift",
        "Extensions/Color/CGColor+.swift",
        "Extensions/Color/CGColorSpace+.swift",
        "Extensions/Color/CGColorSpaceName.swift",
        "Extensions/Color/NSColorSpace+.swift",
        "Extensions/Color/NSUIColor+.swift",
        "Extensions/Color/NSUIColor+Codable.swift",
        "Extensions/Color/NSUIColor+Editing.swift",
        "Extensions/Color/NSUIColor+HSB.swift",
        "Extensions/Color/NSUIColor+HSL.swift",
        "Extensions/Color/NSUIColor+Hex.swift",
        "Extensions/Color/NSUIColor+Image.swift",
        "Extensions/Color/NSUIColor+Luminosity.swift",
        "Extensions/Color/NSUIColor+Mixing.swift",
        "Extensions/Color/NSUIColor+RGB.swift",
        "Extensions/Color/UIKit/UIColor+.swift",
        "Extensions/CoreAnimation/CAAnimation+.swift",
        "Extensions/CoreAnimation/CACornerMask+.swift",
        "Extensions/CoreAnimation/CADisplayLink+.swift",
        "Extensions/CoreAnimation/CAFrameRateRange+.swift",
        "Extensions/CoreAnimation/CALayer+.swift",
        "Extensions/CoreAnimation/CAMediaTimingFunction+.swift",
        "Extensions/CoreAnimation/CAPropertyAnimation+.swift",
        "Extensions/CoreAnimation/CAPropertyAnimation+Key.swift",
        "Extensions/CoreAnimation/CASpringAnimation+.swift",
        "Extensions/CoreAnimation/CATransaction+.swift",
        "Extensions/CoreAnimation/CATransform3D+.swift",
        "Extensions/CoreAnimation/CATransition+.swift",
        "Extensions/CoreAnimation/Decomposed/CALayerExtensions.swift",
        "Extensions/CoreAnimation/Decomposed/CATransform3DConvenienceExtensions.swift",
        "Extensions/CoreAnimation/Decomposed/CATransform3DExtensions.swift",
        "Extensions/CoreAnimation/Decomposed/CGQuaternion.swift",
        "Extensions/CoreAnimation/Decomposed/CGVector3.swift",
        "Extensions/CoreAnimation/Decomposed/CGVector4.swift",
        "Extensions/CoreAnimation/Decomposed/Interpolatable.swift",
        "Extensions/CoreAnimation/Decomposed/Perspective.swift",
        "Extensions/CoreAnimation/Decomposed/SIMDConvenienceExtensions.swift",
        "Extensions/CoreAnimation/Decomposed/SIMDDecomposed.swift",
        "Extensions/Font/AppKit/NSFont+.swift",
        "Extensions/Font/AppKit/NSFont+FontFamily.swift",
        "Extensions/Font/NSUIFont+.swift",
        "Extensions/Font/NSUIFontDescriptor+.swift",
        "Extensions/Image/AppKit/NSBitmapImageRep+.swift",
        "Extensions/Image/AppKit/NSImage+.swift",
        "Extensions/Image/AppKit/NSImage+Animated.swift",
        "Extensions/Image/AppKit/NSImage+Thumbnail.swift",
        "Extensions/Image/CGImage+.swift",
        "Extensions/Image/CIImage+.swift",
        "Extensions/Image/NSUIImage+.swift",
        "Extensions/Image/NSUIImage+Animated.swift",
        "Extensions/Image/NSUIImage+Codable.swift",
        "Extensions/Image/NSUIImage+Combine.swift",
        "Extensions/Image/NSUIImage+ContourPath.swift",
        "Extensions/Image/NSUIImage+Modify.swift",
        "Extensions/Image/NSUIImage+NonAlpha.swift",
        "Extensions/Image/NSUIImage+RecognizedText.swift",
        "Extensions/Image/NSUIImage+Shadow.swift",
        "Extensions/Image/NSUIImage+Stack.swift",
        "Extensions/Image/NSUIImage+SymbolConfiguration.swift",
        "Extensions/Image/NSUIImage+Tiles.swift",
        "Extensions/Misc/ActionBlock.swift",
        "Extensions/Misc/NSDiffableDataSourceSnapshot+.swift",
        "Extensions/Misc/NSLayoutConstraint+.swift",
        "Extensions/Misc/NSLayoutGuide+.swift",
        "Extensions/Misc/NSLayoutManager+.swift",
        "Extensions/Misc/NSObject+.swift",
        "Extensions/Misc/NSShadow+.swift",
        "Extensions/Misc/NSSortDescriptor+.swift",
        "Extensions/Misc/NSUIBezierPath+Shape.swift",
        "Extensions/Misc/NSUIBezierPath+String.swift",
        "Extensions/Misc/NSUIBezierpath+.swift",
        "Extensions/Misc/NSUIEdgeInset+.swift",
        "Extensions/Misc/NSUIGestureRecognizer+.swift",
        "Extensions/Misc/NSUINib+.swift",
        "Extensions/Misc/NSUIRectCorner+.swift",
        "Extensions/Misc/NSUIStoryboard+.swift",
        "Extensions/Misc/QLThumbnailGenerator+.swift",
        "Extensions/Misc/UIKit/UIAlertController+.swift",
        "Extensions/Misc/UIKit/UIConfigurationStateCustomKey+.swift",
        "Extensions/Misc/UIKit/UIContentConfiguration+Stateless.swift",
        "Extensions/SwiftUI/AnimatablePair+.swift",
        "Extensions/SwiftUI/Button+.swift",
        "Extensions/SwiftUI/Color+.swift",
        "Extensions/SwiftUI/Font+.swift",
        "Extensions/SwiftUI/Image+.swift",
        "Extensions/SwiftUI/Material+.swift",
        "Extensions/SwiftUI/Path+.swift",
        "Extensions/SwiftUI/ProcessInfo+.swift",
        "Extensions/SwiftUI/Shape/RoundedCornerRectangle.swift",
        "Extensions/SwiftUI/Shape/Shape+.swift",
        "Extensions/SwiftUI/Shape/Shape+Star.swift",
        "Extensions/SwiftUI/Shape/ShapeBuilder/BuiltShape.swift",
        "Extensions/SwiftUI/Shape/ShapeBuilder/EitherShape.swift",
        "Extensions/SwiftUI/Shape/ShapeBuilder/EmptyShape.swift",
        "Extensions/SwiftUI/Shape/ShapeBuilder/InsettableShapeBuilder.swift",
        "Extensions/SwiftUI/Shape/ShapeBuilder/ShapeBuilder.swift",
        "Extensions/SwiftUI/Shape/ShapeStyle+.swift",
        "Extensions/SwiftUI/Shape/UnevenRoundedRectangle+.swift",
        "Extensions/SwiftUI/Spring+.swift",
        "Extensions/SwiftUI/Text+.swift",
        "Extensions/SwiftUI/VectorArithmetic+.swift",
        "Extensions/SwiftUI/View/View+.swift",
        "Extensions/SwiftUI/View/View+Optional.swift",
        "Extensions/SwiftUI/View/View+SkeumorphBorder.swift",
        "Extensions/SwiftUI/View/View+TextAlignment.swift",
        "Extensions/View/AppKit/EditiableView.swift",
        "Extensions/View/AppKit/GestureRecognizer/NSGestureRecognizer+.swift",
        "Extensions/View/AppKit/GestureRecognizer/NSMagnificationGestureRecognizer+.swift",
        "Extensions/View/AppKit/GestureRecognizer/NSRotationGestureRecognizer+.swift",
        "Extensions/View/AppKit/NSBox+.swift",
        "Extensions/View/AppKit/NSButton/Configuration/AdvanceConfiguration+View.swift",
        "Extensions/View/AppKit/NSButton/Configuration/AdvanceConfiguration.swift",
        "Extensions/View/AppKit/NSButton/Configuration/Configuration.swift",
        "Extensions/View/AppKit/NSButton/Configuration/NSButton+Configuration.swift",
        "Extensions/View/AppKit/NSButton/NSButton+.swift",
        "Extensions/View/AppKit/NSButton/NSPopUpButton+.swift",
        "Extensions/View/AppKit/NSClipView+.swift",
        "Extensions/View/AppKit/NSColorPanel+.swift",
        "Extensions/View/AppKit/NSColorWell+.swift",
        "Extensions/View/AppKit/NSControl+.swift",
        "Extensions/View/AppKit/NSDatePicker+.swift",
        "Extensions/View/AppKit/NSGridView/GridColumn.swift",
        "Extensions/View/AppKit/NSGridView/GridRow.swift",
        "Extensions/View/AppKit/NSGridView/NSGridCell+.swift",
        "Extensions/View/AppKit/NSGridView/NSGridColumn+.swift",
        "Extensions/View/AppKit/NSGridView/NSGridRow+.swift",
        "Extensions/View/AppKit/NSGridView/NSGridView+.swift",
        "Extensions/View/AppKit/NSImageView+.swift",
        "Extensions/View/AppKit/NSLevelIndicator+.swift",
        "Extensions/View/AppKit/NSMatrix+.swift",
        "Extensions/View/AppKit/NSProgressIndicator+.swift",
        "Extensions/View/AppKit/NSScrollView+.swift",
        "Extensions/View/AppKit/NSScroller+.swift",
        "Extensions/View/AppKit/NSSegmentedControl/NSSegmentedControl+.swift",
        "Extensions/View/AppKit/NSSegmentedControl/NSSegmentedControl+Builder.swift",
        "Extensions/View/AppKit/NSSegmentedControl/NSSegmentedControl+Segment.swift",
        "Extensions/View/AppKit/NSSlider+.swift",
        "Extensions/View/AppKit/NSSplitViewController+.swift",
        "Extensions/View/AppKit/NSStackView+.swift",
        "Extensions/View/AppKit/NSStepper+.swift",
        "Extensions/View/AppKit/NSSwitch+.swift",
        "Extensions/View/AppKit/NSTextField/NSTextField+.swift",
        "Extensions/View/AppKit/NSTextField/NSTextField+AdjustFont.swift",
        "Extensions/View/AppKit/NSTextField/NSTextField+Colors.swift",
        "Extensions/View/AppKit/NSTextField/NSTextField+Editing.swift",
        "Extensions/View/AppKit/NSTextField/NSTextField+ExtendedCell.swift",
        "Extensions/View/AppKit/NSTextField/NSTextField+Resizing.swift",
        "Extensions/View/AppKit/NSTextField/NSTextField+TextLayout.swift",
        "Extensions/View/AppKit/NSTextField/NSTextFieldCell+.swift",
        "Extensions/View/AppKit/NSTextField/TextLine.swift",
        "Extensions/View/AppKit/NSTextView+.swift",
        "Extensions/View/AppKit/NSView+.swift",
        "Extensions/View/AppKit/NSView+Animate.swift",
        "Extensions/View/AppKit/NSView+BackgroundStyle.swift",
        "Extensions/View/AppKit/NSView+Drag.swift",
        "Extensions/View/AppKit/NSView+Drop.swift",
        "Extensions/View/AppKit/NSView+FirstResponder.swift",
        "Extensions/View/AppKit/NSView+Handlers.swift",
        "Extensions/View/AppKit/NSView+Observer.swift",
        "Extensions/View/AppKit/NSView+Resize.swift",
        "Extensions/View/AppKit/NSView+SizeThatFits.swift",
        "Extensions/View/AppKit/NSView+SystemLayoutSizeFitting.swift",
        "Extensions/View/AppKit/NSView+TrackingArea.swift",
        "Extensions/View/AppKit/NSViewController+.swift",
        "Extensions/View/AppKit/NSVisualEffectView+.swift",
        "Extensions/View/CollectionView/AppKit/NSCollectionView+.swift",
        "Extensions/View/CollectionView/AppKit/NSCollectionView+DisplayingItems.swift",
        "Extensions/View/CollectionView/AppKit/NSCollectionView+EmptyView.swift",
        "Extensions/View/CollectionView/AppKit/NSCollectionView+ItemDropTargetGapIndicator.swift",
        "Extensions/View/CollectionView/AppKit/NSCollectionViewItem++SelfSizing.swift",
        "Extensions/View/CollectionView/AppKit/NSCollectionViewItem+.swift",
        "Extensions/View/CollectionView/AppKit/NSCollectionViewLayoutAttributes+.swift",
        "Extensions/View/CollectionView/NSCollectionLayoutBoundarySupplementaryItem+.swift",
        "Extensions/View/CollectionView/NSCollectionLayoutSection+.swift",
        "Extensions/View/CollectionView/NSUICollectionView+.swift",
        "Extensions/View/CollectionView/NSUICollectionViewDiffableDataSource+.swift",
        "Extensions/View/CollectionView/NSUICollectionViewLayout+.swift",
        "Extensions/View/CollectionView/NSUICollectionViewLayout+Column.swift",
        "Extensions/View/CollectionView/NSUICollectionViewLayout+Comp.swift",
        "Extensions/View/CollectionView/NSUICollectionViewLayout+Pinch.swift",
        "Extensions/View/CollectionView/UIKit/UICollectionView+.swift",
        "Extensions/View/CollectionView/UIKit/UICollectionViewCell+.swift",
        "Extensions/View/CollectionView/UIKit/UICollectionViewDiffableDataSource+.swift",
        "Extensions/View/CollectionView/UIKit/UICollectionViewLayout+Layout.swift",
        "Extensions/View/NSUIControl+.swift",
        "Extensions/View/NSUIHostingController+.swift",
        "Extensions/View/NSUIHostingController+AutoHeight.swift",
        "Extensions/View/NSUIStackView+.swift",
        "Extensions/View/NSUITextField+.swift",
        "Extensions/View/NSUITextView+.swift",
        "Extensions/View/NSUIView+.swift",
        "Extensions/View/NSUIView+BackgroundColor.swift",
        "Extensions/View/NSUIView+Constraints.swift",
        "Extensions/View/NSUIView+Drag.swift",
        "Extensions/View/NSUIView+Material.swift",
        "Extensions/View/NSUIView+PinEdges.swift",
        "Extensions/View/NSUIView+RenderedImage.swift",
        "Extensions/View/NSUIView+Shakable.swift",
        "Extensions/View/NSUIView+VisualEffect.swift",
        "Extensions/View/NSUIView+isEnabled.swift",
        "Extensions/View/NSViewProtocol.swift",
        "Extensions/View/Nibloadable.swift",
        "Extensions/View/TableView/AppKit/NSOutlineView+.swift",
        "Extensions/View/TableView/AppKit/NSTableCellView+.swift",
        "Extensions/View/TableView/AppKit/NSTableColumn+.swift",
        "Extensions/View/TableView/AppKit/NSTableRowView+.swift",
        "Extensions/View/TableView/AppKit/NSTableView+.swift",
        "Extensions/View/TableView/AppKit/NSTableView+EmptyView.swift",
        "Extensions/View/TableView/AppKit/NSTableViewRowAction+.swift",
        "Extensions/View/TableView/NSUITableViewDiffableDataSource+.swift",
        "Extensions/View/TableView/UIKit/Registration/UITableView+CellRegistration.swift",
        "Extensions/View/TableView/UIKit/Registration/UITableView+HeaderFooterRegistration.swift",
        "Extensions/View/TableView/UIKit/UIContextualAction+.swift",
        "Extensions/View/TableView/UIKit/UITableView+.swift",
        "Extensions/View/TableView/UIKit/UITableView+Handlers.swift",
        "Extensions/View/TableView/UIKit/UITableViewCell+.swift",
        "Extensions/View/UIKit/UIContentView+.swift",
        "Extensions/View/UIKit/UIHostingView.swift",
        "Extensions/View/UIKit/UILabel+.swift",
        "Extensions/View/UIKit/UIScrollView+.swift",
        "Extensions/View/UIKit/UIStackView+.swift",
        "Extensions/View/UIKit/UIView+.swift",
        "Extensions/View/WKWebView+.swift",
        "NSUI Typealias.swift"
      ],
      "target_dependencies" : [
        "_DelegateProxy",
        "_ObjectProxy"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.