Build Information
Successful build of CrystalViewUtilities, reference 0.12.1 (76fb61), with Swift 6.2 for macOS (SPM) on 20 Jun 2025 01:07:55 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/robhasacamera/CrystalViewUtilities.git
Reference: 0.12.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/robhasacamera/CrystalViewUtilities
* tag 0.12.1 -> FETCH_HEAD
HEAD is now at 76fb613 Merge pull request #20 from robhasacamera/0.12.1
Cloned https://github.com/robhasacamera/CrystalViewUtilities.git
Revision (git rev-parse @):
76fb6130c996bb6e5fbaba3579c48ef359691e52
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/robhasacamera/CrystalViewUtilities.git at 0.12.1
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/robhasacamera/CrystalViewUtilities.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/20] Compiling CrystalViewUtilities GeometryProxy_extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/GeometryProxy_extension.swift:29:1: warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
27 | import SwiftUI
28 |
29 | extension GeometryProxy: Equatable {
| |- warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 | // MARK: - Comparing `GeometryProxy`
31 |
[4/20] Compiling CrystalViewUtilities Image_Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/GeometryProxy_extension.swift:29:1: warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
27 | import SwiftUI
28 |
29 | extension GeometryProxy: Equatable {
| |- warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 | // MARK: - Comparing `GeometryProxy`
31 |
[5/21] Compiling CrystalViewUtilities UIScreen_Extension.swift
[6/21] Compiling CrystalViewUtilities View_Extension.swift
[7/21] Compiling CrystalViewUtilities TypeAliases.swift
[8/21] Compiling CrystalViewUtilities CUIAdaptiveStackView.swift
[9/21] Compiling CrystalViewUtilities CUITitledGroup.swift
[10/21] Compiling CrystalViewUtilities CUIFlowLayout.swift
[11/21] Compiling CrystalViewUtilities CUICorner.swift
[12/21] Compiling CrystalViewUtilities CUIChildGeometryReader.swift
[13/21] Compiling CrystalViewUtilities CUIChildSizeReader.swift
[14/21] Compiling CrystalViewUtilities CUIBezierPath_Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/CUIBezierPath_Extension.swift:347:13: warning: switch must be exhaustive
345 | for i in 0 ..< elementCount {
346 | let type = element(at: i, associatedPoints: &points)
347 | switch type {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.cubicCurveTo'
| |- note: add missing case: '.quadraticCurveTo'
| `- note: add missing cases
348 | case .moveTo: path.move(to: points[0])
349 | case .lineTo: path.addLine(to: points[0])
[15/21] Compiling CrystalViewUtilities Color_Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/CUIBezierPath_Extension.swift:347:13: warning: switch must be exhaustive
345 | for i in 0 ..< elementCount {
346 | let type = element(at: i, associatedPoints: &points)
347 | switch type {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.cubicCurveTo'
| |- note: add missing case: '.quadraticCurveTo'
| `- note: add missing cases
348 | case .moveTo: path.move(to: points[0])
349 | case .lineTo: path.addLine(to: points[0])
[16/21] Compiling CrystalViewUtilities Alignment_Extension.swift
[17/21] Compiling CrystalViewUtilities CGFloat_Extension.swift
[18/21] Compiling CrystalViewUtilities CUIRoundedCornerShape.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:34:9: warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUICorner'; this is an error in the Swift 6 language mode
32 | public struct CUIRoundedCornerShape: Shape {
33 | var radius: CGFloat
34 | var corners: CUICorner
| `- warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUICorner'; this is an error in the Swift 6 language mode
35 |
36 | private var cutPositionSet: CUIPositionSet? = nil
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/OptionSets/CUICorner.swift:30:15: note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
28 |
29 | /// A wrapper around `UIRectCorner` that adapts corners to leading and trailing terminology.
30 | public struct CUICorner: OptionSet {
| `- note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
31 | @Environment(\.layoutDirection) var direction
32 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:36:17: warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUIPositionSet?'; this is an error in the Swift 6 language mode
34 | var corners: CUICorner
35 |
36 | private var cutPositionSet: CUIPositionSet? = nil
| `- warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUIPositionSet?'; this is an error in the Swift 6 language mode
37 | private var cutLength: CGFloat? = nil
38 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Structs/CUIPositionSet.swift:32:13: note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
30 | ///
31 | /// The position is described using a combination of an edge and the alignment along that edge.
32 | public enum CUIPositionSet {
| `- note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
33 | @Environment(\.layoutDirection)
34 | static var layoutDirection
[19/21] Compiling CrystalViewUtilities CUIPositionSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:34:9: warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUICorner'; this is an error in the Swift 6 language mode
32 | public struct CUIRoundedCornerShape: Shape {
33 | var radius: CGFloat
34 | var corners: CUICorner
| `- warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUICorner'; this is an error in the Swift 6 language mode
35 |
36 | private var cutPositionSet: CUIPositionSet? = nil
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/OptionSets/CUICorner.swift:30:15: note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
28 |
29 | /// A wrapper around `UIRectCorner` that adapts corners to leading and trailing terminology.
30 | public struct CUICorner: OptionSet {
| `- note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
31 | @Environment(\.layoutDirection) var direction
32 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:36:17: warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUIPositionSet?'; this is an error in the Swift 6 language mode
34 | var corners: CUICorner
35 |
36 | private var cutPositionSet: CUIPositionSet? = nil
| `- warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUIPositionSet?'; this is an error in the Swift 6 language mode
37 | private var cutLength: CGFloat? = nil
38 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Structs/CUIPositionSet.swift:32:13: note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
30 | ///
31 | /// The position is described using a combination of an edge and the alignment along that edge.
32 | public enum CUIPositionSet {
| `- note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
33 | @Environment(\.layoutDirection)
34 | static var layoutDirection
[20/21] Emitting module CrystalViewUtilities
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/GeometryProxy_extension.swift:29:1: warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
27 | import SwiftUI
28 |
29 | extension GeometryProxy: Equatable {
| |- warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 | // MARK: - Comparing `GeometryProxy`
31 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:34:9: warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUICorner'; this is an error in the Swift 6 language mode
32 | public struct CUIRoundedCornerShape: Shape {
33 | var radius: CGFloat
34 | var corners: CUICorner
| `- warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUICorner'; this is an error in the Swift 6 language mode
35 |
36 | private var cutPositionSet: CUIPositionSet? = nil
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/OptionSets/CUICorner.swift:30:15: note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
28 |
29 | /// A wrapper around `UIRectCorner` that adapts corners to leading and trailing terminology.
30 | public struct CUICorner: OptionSet {
| `- note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
31 | @Environment(\.layoutDirection) var direction
32 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:36:17: warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUIPositionSet?'; this is an error in the Swift 6 language mode
34 | var corners: CUICorner
35 |
36 | private var cutPositionSet: CUIPositionSet? = nil
| `- warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-sendable type 'CUIPositionSet?'; this is an error in the Swift 6 language mode
37 | private var cutLength: CGFloat? = nil
38 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Structs/CUIPositionSet.swift:32:13: note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
30 | ///
31 | /// The position is described using a combination of an edge and the alignment along that edge.
32 | public enum CUIPositionSet {
| `- note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
33 | @Environment(\.layoutDirection)
34 | static var layoutDirection
[21/21] Compiling CrystalViewUtilities CUITitledGroupTextLabel.swift
Build complete! (9.45s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CrystalViewUtilities",
"name" : "CrystalViewUtilities",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "CrystalViewUtilities",
"targets" : [
"CrystalViewUtilities"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CrystalViewUtilitiesTests",
"module_type" : "SwiftTarget",
"name" : "CrystalViewUtilitiesTests",
"path" : "Tests/CrystalViewUtilitiesTests",
"sources" : [
"View_ExtensionTests.swift"
],
"target_dependencies" : [
"CrystalViewUtilities"
],
"type" : "test"
},
{
"c99name" : "CrystalViewUtilities",
"module_type" : "SwiftTarget",
"name" : "CrystalViewUtilities",
"path" : "Sources/CrystalViewUtilities",
"product_memberships" : [
"CrystalViewUtilities"
],
"sources" : [
"Extensions/Alignment_Extension.swift",
"Extensions/CGFloat_Extension.swift",
"Extensions/CUIBezierPath_Extension.swift",
"Extensions/Color_Extension.swift",
"Extensions/GeometryProxy_extension.swift",
"Extensions/Image_Extension.swift",
"Extensions/UIScreen_Extension.swift",
"Extensions/View_Extension.swift",
"Layout/CUIFlowLayout.swift",
"OptionSets/CUICorner.swift",
"Shapes/CUIRoundedCornerShape.swift",
"Structs/CUIPositionSet.swift",
"TypeAliases.swift",
"Views/CUIAdaptiveStackView.swift",
"Views/CUIChildGeometryReader.swift",
"Views/CUIChildSizeReader.swift",
"Views/CUITitledGroup.swift",
"Views/CUITitledGroupTextLabel.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.