The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build VDKit, reference 1.197.0 (479b07), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 10:48:10 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dankinsoid/VDKit.git
Reference: 1.197.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/dankinsoid/VDKit
 * tag               1.197.0    -> FETCH_HEAD
HEAD is now at 479b079 1.197.0
Cloned https://github.com/dankinsoid/VDKit.git
Revision (git rev-parse @):
479b079ef914ce3b01bb1f8a40891ac6e0b09982
SUCCESS checkout https://github.com/dankinsoid/VDKit.git at 1.197.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/dankinsoid/VDKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/27] Write sources
[22/27] Write swift-version-1EA4D86E10B52AF.txt
[23/45] Compiling VDKitRuntimeObjc _VD.m
[24/45] Compiling VDKitRuntimeObjc _VDKVOObserver.m
[25/47] Compiling VDKitRuntimeObjc _VDDelegateProxy.m
[26/47] Compiling VDKitRuntimeObjc _VDObjCRuntime.m
[28/49] Emitting module VDBuilders
[29/49] Compiling VDBuilders ComposeBuilder.swift
[30/49] Compiling VDBuilders ArrayBuilder.swift
[31/49] Compiling VDBuilders SingleBuilder.swift
[32/49] Compiling VDOptional UnwrapOperator.swift
[33/49] Emitting module VDOptional
[34/49] Compiling VDMirror Mirror++.swift
[35/49] Emitting module VDMirror
[36/49] Compiling VDKitRuntime Runtime++.swift
[37/49] Emitting module VDKitRuntime
[38/96] Compiling VDDates DateFormat.swift
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/DateFormat.swift:241:1: warning: extension declares a conformance of imported type 'UnitsStyle' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
239 | }
240 |
241 | extension DateComponentsFormatter.UnitsStyle: Decodable {}
    | |- warning: extension declares a conformance of imported type 'UnitsStyle' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 | extension DateComponentsFormatter.UnitsStyle: Encodable {}
243 |
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/DateFormat.swift:242:1: warning: extension declares a conformance of imported type 'UnitsStyle' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
240 |
241 | extension DateComponentsFormatter.UnitsStyle: Decodable {}
242 | extension DateComponentsFormatter.UnitsStyle: Encodable {}
    | |- warning: extension declares a conformance of imported type 'UnitsStyle' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
243 |
244 | extension DateFormat {
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/DateFormat.swift:98:5: warning: switch must be exhaustive
 96 | 				return format
 97 | 			case .component(let component, let style):
 98 | 				switch component {
    |     |- warning: switch must be exhaustive
    |     |- note: add missing case: '.isLeapMonth'
    |     |- note: add missing case: '.dayOfYear'
    |     `- note: add missing cases
 99 | 				case .era:
100 | 					switch style {
[39/96] Compiling VDDates CalendarComponent++.swift
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/CalendarComponent++.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocols 'CaseIterable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
  8 | import Foundation
  9 |
 10 | extension Calendar.Component: CaseIterable, Comparable {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocols 'CaseIterable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 11 | 	public typealias AllCases = Set<Calendar.Component>
 12 |
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/CalendarComponent++.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocols 'RawRepresentable', 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
114 | }
115 |
116 | extension Calendar.Component: Codable, RawRepresentable, CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocols 'RawRepresentable', 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 | 	public var rawValue: String {
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/CalendarComponent++.swift:29:3: warning: switch must be exhaustive
 27 |
 28 | 	public var smaller: Calendar.Component? {
 29 | 		switch self {
    |   |- warning: switch must be exhaustive
    |   |- note: add missing case: '.isLeapMonth'
    |   |- note: add missing case: '.dayOfYear'
    |   `- note: add missing cases
 30 | 		case .era:                  return .year
 31 | 		case .year:                 return .month
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/CalendarComponent++.swift:61:3: warning: switch must be exhaustive
 59 |
 60 | 	public var larger: Calendar.Component? {
 61 | 		switch self {
    |   |- warning: switch must be exhaustive
    |   |- note: add missing case: '.isLeapMonth'
    |   |- note: add missing case: '.dayOfYear'
    |   `- note: add missing cases
 62 | 		case .era:                  return nil
 63 | 		case .year:                 return .era
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/CalendarComponent++.swift:83:3: warning: switch must be exhaustive
 81 |
 82 | 	public var inSeconds: TimeInterval {
 83 | 		switch self {
    |   |- warning: switch must be exhaustive
    |   |- note: add missing case: '.isLeapMonth'
    |   |- note: add missing case: '.dayOfYear'
    |   `- note: add missing cases
 84 | 		case .era:                  return .infinity
 85 | 		case .year:                 return 365.2425 * Calendar.Component.day.inSeconds
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/CalendarComponent++.swift:119:3: warning: switch must be exhaustive
117 |
118 | 	public var rawValue: String {
119 | 		switch self {
    |   |- warning: switch must be exhaustive
    |   |- note: add missing case: '.isLeapMonth'
    |   |- note: add missing case: '.dayOfYear'
    |   `- note: add missing cases
120 | 		case .era: return "era"
121 | 		case .year: return "year"
[40/96] Emitting module VDDates
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/CalendarComponent++.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocols 'CaseIterable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
  8 | import Foundation
  9 |
 10 | extension Calendar.Component: CaseIterable, Comparable {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocols 'CaseIterable', 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 11 | 	public typealias AllCases = Set<Calendar.Component>
 12 |
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/CalendarComponent++.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocols 'RawRepresentable', 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
114 | }
115 |
116 | extension Calendar.Component: Codable, RawRepresentable, CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocols 'RawRepresentable', 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 | 	public var rawValue: String {
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/Date++.swift:39:1: warning: extension declares a conformance of imported type 'DateComponents' to imported protocols 'RawRepresentable', 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 37 | }
 38 |
 39 | extension DateComponents: RawRepresentable, ExpressibleByDictionaryLiteral {
    | |- warning: extension declares a conformance of imported type 'DateComponents' to imported protocols 'RawRepresentable', 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 | 	public static func era(_ value: Int) -> DateComponents { .current(era: value) }
 41 | 	public static func year(_ value: Int) -> DateComponents { .current(year: value) }
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/DateFormat.swift:241:1: warning: extension declares a conformance of imported type 'UnitsStyle' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
239 | }
240 |
241 | extension DateComponentsFormatter.UnitsStyle: Decodable {}
    | |- warning: extension declares a conformance of imported type 'UnitsStyle' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 | extension DateComponentsFormatter.UnitsStyle: Encodable {}
243 |
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/DateFormat.swift:242:1: warning: extension declares a conformance of imported type 'UnitsStyle' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
240 |
241 | extension DateComponentsFormatter.UnitsStyle: Decodable {}
242 | extension DateComponentsFormatter.UnitsStyle: Encodable {}
    | |- warning: extension declares a conformance of imported type 'UnitsStyle' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
243 |
244 | extension DateFormat {
[41/96] Compiling VDDates Date++.swift
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/Date++.swift:39:1: warning: extension declares a conformance of imported type 'DateComponents' to imported protocols 'RawRepresentable', 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 37 | }
 38 |
 39 | extension DateComponents: RawRepresentable, ExpressibleByDictionaryLiteral {
    | |- warning: extension declares a conformance of imported type 'DateComponents' to imported protocols 'RawRepresentable', 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 | 	public static func era(_ value: Int) -> DateComponents { .current(era: value) }
 41 | 	public static func year(_ value: Int) -> DateComponents { .current(year: value) }
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/Date++.swift:401:3: warning: switch must be exhaustive
399 |
400 | 	public func name(of component: Calendar.Component, locale: Locale = .default, timeZone: TimeZone = .default) -> String {
401 | 		switch component {
    |   |- warning: switch must be exhaustive
    |   |- note: add missing case: '.isLeapMonth'
    |   |- note: add missing case: '.dayOfYear'
    |   `- note: add missing cases
402 | 		case .era:                  return string("GGGG", locale: locale, timeZone: timeZone)
403 | 		case .year:                 return string("yyyy", locale: locale, timeZone: timeZone)
/Users/admin/builder/spi-builder-workspace/Sources/VDDates/Date++.swift:511:9: warning: switch must be exhaustive
509 |
510 | 	public func setting(_ value: Int, _ component: Calendar.Component, calendar: Calendar = .default) -> Date? {
511 |         switch component {
    |         |- warning: switch must be exhaustive
    |         |- note: add missing case: '.isLeapMonth'
    |         |- note: add missing case: '.dayOfYear'
    |         `- note: add missing cases
512 |         case .nanosecond, .second, .minute, .hour:
513 |             var comps = components(calendar: calendar)
[42/96] Compiling UIKitEnvironment UIViewEnvironment.swift
[43/96] Emitting module UIKitEnvironment
[44/96] Compiling WrappedDefaults WrappedDefault.swift
[45/96] Emitting module WrappedDefaults
[46/96] Compiling VDSwiftUICommon StateOrBinding.swift
[47/96] Compiling VDSwiftUICommon StateSubject.swift
[48/97] Compiling VDSwiftUICommon OnFirstAppear.swift
[49/97] Compiling VDSwiftUICommon Popover.swift
[50/97] Compiling VDSwiftUICommon PullToRefresh.swift
[51/97] Compiling VDSwiftUICommon Rounded.swift
[52/97] Emitting module VDCommon
/Users/admin/builder/spi-builder-workspace/Sources/VDCommon/AttributedString++.swift:24:1: warning: extension declares a conformance of imported type 'NSAttributedString' to imported protocols 'Collection', 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 22 | }
 23 |
 24 | extension NSAttributedString: Collection {
    | |- warning: extension declares a conformance of imported type 'NSAttributedString' to imported protocols 'Collection', 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 25 |
 26 | 	public typealias Index = Int
error: emit-module command failed with exit code 1 (use -v to see invocation)
[55/99] Emitting module VDSwiftUICommon
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/VDSwiftUICommon/Color++.swift:17:1: warning: extension declares a conformance of imported type 'Color' to imported protocol '_ExpressibleByColorLiteral'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
 15 |
 16 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
 17 | extension Color: _ExpressibleByColorLiteral {
    | |- warning: extension declares a conformance of imported type 'Color' to imported protocol '_ExpressibleByColorLiteral'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 18 |
 19 | 	public init(_colorLiteralRed red: Float, green: Float, blue: Float, alpha: Float) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/VDSwiftUICommon/Color++.swift:261:1: warning: extension declares a conformance of imported type 'Color' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
259 |
260 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
261 | extension Color: Decodable {
    | |- warning: extension declares a conformance of imported type 'Color' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
262 |
263 |   public init(from decoder: Decoder) throws {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/VDSwiftUICommon/Color++.swift:274:1: warning: extension declares a conformance of imported type 'Color' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
272 |
273 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
274 | extension Color: Encodable {
    | |- warning: extension declares a conformance of imported type 'Color' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
275 |
276 |   public func encode(to encoder: Encoder) throws {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/VDSwiftUICommon/Image++.swift:11:1: warning: extension declares a conformance of imported type 'Image' to imported protocol '_ExpressibleByImageLiteral'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
 9 |
10 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
11 | extension Image: _ExpressibleByImageLiteral {
   | |- warning: extension declares a conformance of imported type 'Image' to imported protocol '_ExpressibleByImageLiteral'; 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 init(imageLiteralResourceName path: String) {
13 | 		self = Image(path)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/VDSwiftUICommon/StateSubject.swift:35:3: error: 'StateObject' is only available in macOS 11.0 or newer
 33 | 		}
 34 | 	}
 35 | 	@StateObject private var object = Object()
    |   `- error: 'StateObject' is only available in macOS 11.0 or newer
 36 | 	private let create: () -> S
 37 | 	private let defaultValue: Output
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/VDSwiftUICommon/StateSubject.swift:59:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 15 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
 16 | @propertyWrapper
 17 | public struct StateSubject<S: Subject>: DynamicProperty, Publisher where S.Failure == Never {
    |                            `- note: 'S' previously declared here
 18 | 	public typealias Failure = Never
 19 | 	public typealias Output = S.Output
    :
 57 | 	}
 58 |
 59 | 	public func receive<S>(subscriber: S) where S : Subscriber, Failure == S.Failure, Output == S.Input {
    |                      `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 60 | 		subject.receive(subscriber: subscriber)
 61 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/VDSwiftUICommon/StateSubject.swift:109:3: error: 'StateObject' is only available in macOS 11.0 or newer
107 | 		return object.value ?? defaultValue
108 | 	}
109 | 	@StateObject private var object = Object()
    |   `- error: 'StateObject' is only available in macOS 11.0 or newer
110 | 	private let create: () -> P
111 | 	private let defaultValue: P.Output
[56/99] Compiling VDSwiftUICommon Font++.swift
[57/99] Compiling VDSwiftUICommon Menu.swift
[58/99] Compiling VDSwiftUICommon Envionment++.swift
[59/99] Compiling VDSwiftUICommon EnvironmentViewBuilder.swift
[60/99] Compiling VDSwiftUICommon Backdrop.swift
[61/99] Compiling VDSwiftUICommon Binding++.swift
[62/99] Compiling VDSwiftUICommon Hosting++.swift
[63/99] Compiling VDSwiftUICommon Image++.swift
[64/99] Compiling VDSwiftUICommon EdgeInsets++.swift
[65/99] Compiling VDSwiftUICommon AdditionalSafeArea.swift
[66/99] Compiling VDSwiftUICommon Blur.swift
/Users/admin/builder/spi-builder-workspace/Sources/VDCommon/AttributedString++.swift:24:1: warning: extension declares a conformance of imported type 'NSAttributedString' to imported protocols 'Collection', 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 22 | }
 23 |
 24 | extension NSAttributedString: Collection {
    | |- warning: extension declares a conformance of imported type 'NSAttributedString' to imported protocols 'Collection', 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 25 |
 26 | 	public typealias Index = Int
[67/99] Compiling VDSwiftUICommon Color++.swift
/Users/admin/builder/spi-builder-workspace/Sources/VDCommon/AttributedString++.swift:24:1: warning: extension declares a conformance of imported type 'NSAttributedString' to imported protocols 'Collection', 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 22 | }
 23 |
 24 | extension NSAttributedString: Collection {
    | |- warning: extension declares a conformance of imported type 'NSAttributedString' to imported protocols 'Collection', 'Sequence'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 25 |
 26 | 	public typealias Index = Int
[68/99] Compiling WrappedDefaults UserDefaults+Extensions.swift
[69/99] Compiling WrappedDefaults UserDefaultsSerializable.swift
[70/99] Compiling VDCommon Union.swift
[71/99] Compiling VDCoreGraphics CGAffineTransform++.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[72/99] Emitting module EnvironmentStateObject
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/EnvironmentStateObject/EnvironmentStateObject.swift:13:6: error: 'StateObject' is only available in macOS 11.0 or newer
 11 | public struct EnvironmentStateObject<Model: ObservableObject>: DynamicProperty {
 12 |
 13 |     @StateObject private var object = Object()
    |      `- error: 'StateObject' is only available in macOS 11.0 or newer
 14 |     @State private var updater = false
 15 |     @Environment(\.environmentModel) private var environment
[73/99] Compiling EnvironmentStateObject EnvironmentStateObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/EnvironmentStateObject/EnvironmentStateObject.swift:13:6: error: 'StateObject' is only available in macOS 11.0 or newer
 11 | public struct EnvironmentStateObject<Model: ObservableObject>: DynamicProperty {
 12 |
 13 |     @StateObject private var object = Object()
    |      `- error: 'StateObject' is only available in macOS 11.0 or newer
 14 |     @State private var updater = false
 15 |     @Environment(\.environmentModel) private var environment
[74/99] Emitting module BindGeometry
[75/99] Emitting module VDCoreGraphics
/Users/admin/builder/spi-builder-workspace/Sources/VDCoreGraphics/CA++.swift:116:1: 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
114 | }
115 |
116 | 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
117 |
118 | 	private var ms: [CGFloat] { [m11, m12, m13, m14, m21, m22, m23, m24, m31, m32, m33, m34, m41, m42, m43, m44] }
/Users/admin/builder/spi-builder-workspace/Sources/VDCoreGraphics/CG++.swift:194:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
192 | }
193 |
194 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
195 |
196 | 	public func hash(into hasher: inout Hasher) {
/Users/admin/builder/spi-builder-workspace/Sources/VDCoreGraphics/CG++.swift:202:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
200 | }
201 |
202 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
203 |
204 | 	public func hash(into hasher: inout Hasher) {
[76/99] Compiling VDCoreGraphics CA++.swift
/Users/admin/builder/spi-builder-workspace/Sources/VDCoreGraphics/CA++.swift:116:1: 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
114 | }
115 |
116 | 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
117 |
118 | 	private var ms: [CGFloat] { [m11, m12, m13, m14, m21, m22, m23, m24, m31, m32, m33, m34, m41, m42, m43, m44] }
/Users/admin/builder/spi-builder-workspace/Sources/VDCoreGraphics/CG++.swift:194:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
192 | }
193 |
194 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
195 |
196 | 	public func hash(into hasher: inout Hasher) {
BUILD FAILURE 6.2 macosSpm