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 SwiftTUI, reference main (537133), with Swift 6.1 for Linux on 27 Apr 2025 03:07:20 UTC.

Swift 6 data race errors: 14

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:29:23: warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:30:23: warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
   |                       |- warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:31:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
33 | }
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:32:23: warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
[6/75] Compiling SwiftTUI ForegroundColor.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Modifiers/OnAppear.swift:48:56: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
46 |             if !didAppear {
47 |                 didAppear = true
48 |                 DispatchQueue.main.async { [action] in action() }
   |                                                        |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
   |                                                        `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
49 |             }
50 |         }
[7/75] Compiling SwiftTUI Italic.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Modifiers/OnAppear.swift:48:56: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
46 |             if !didAppear {
47 |                 didAppear = true
48 |                 DispatchQueue.main.async { [action] in action() }
   |                                                        |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
   |                                                        `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
49 |             }
50 |         }
[8/75] Compiling SwiftTUI OnAppear.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Modifiers/OnAppear.swift:48:56: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
46 |             if !didAppear {
47 |                 didAppear = true
48 |                 DispatchQueue.main.async { [action] in action() }
   |                                                        |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
   |                                                        `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
49 |             }
50 |         }
[9/75] Compiling SwiftTUI Padding.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Modifiers/OnAppear.swift:48:56: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
46 |             if !didAppear {
47 |                 didAppear = true
48 |                 DispatchQueue.main.async { [action] in action() }
   |                                                        |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
   |                                                        `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
49 |             }
50 |         }
[10/75] Compiling SwiftTUI SetEnvironment.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Modifiers/OnAppear.swift:48:56: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
46 |             if !didAppear {
47 |                 didAppear = true
48 |                 DispatchQueue.main.async { [action] in action() }
   |                                                        |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
   |                                                        `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
49 |             }
50 |         }
[11/75] Compiling SwiftTUI Strikethrough.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Modifiers/OnAppear.swift:48:56: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
46 |             if !didAppear {
47 |                 didAppear = true
48 |                 DispatchQueue.main.async { [action] in action() }
   |                                                        |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
   |                                                        `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
49 |             }
50 |         }
[12/75] Compiling SwiftTUI Underline.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Modifiers/OnAppear.swift:48:56: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
46 |             if !didAppear {
47 |                 didAppear = true
48 |                 DispatchQueue.main.async { [action] in action() }
   |                                                        |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
   |                                                        `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
49 |             }
50 |         }
[13/75] Compiling SwiftTUI Optional+View.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Modifiers/OnAppear.swift:48:56: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
46 |             if !didAppear {
47 |                 didAppear = true
48 |                 DispatchQueue.main.async { [action] in action() }
   |                                                        |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
   |                                                        `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
49 |             }
50 |         }
[14/75] Compiling SwiftTUI Weak.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:107:38: warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
105 |                 return Cell(
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
108 |                     backgroundColor: char.backgroundColor,
109 |                     attributes: cellAttributes
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:108:38: warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
108 |                     backgroundColor: char.backgroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
109 |                     attributes: cellAttributes
110 |                 )
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
[15/75] Compiling SwiftTUI WeakSet.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:107:38: warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
105 |                 return Cell(
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
108 |                     backgroundColor: char.backgroundColor,
109 |                     attributes: cellAttributes
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:108:38: warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
108 |                     backgroundColor: char.backgroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
109 |                     attributes: cellAttributes
110 |                 )
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
[16/75] Compiling SwiftTUI Button.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:107:38: warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
105 |                 return Cell(
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
108 |                     backgroundColor: char.backgroundColor,
109 |                     attributes: cellAttributes
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:108:38: warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
108 |                     backgroundColor: char.backgroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
109 |                     attributes: cellAttributes
110 |                 )
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
[17/75] Compiling SwiftTUI Color+View.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:107:38: warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
105 |                 return Cell(
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
108 |                     backgroundColor: char.backgroundColor,
109 |                     attributes: cellAttributes
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:108:38: warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
108 |                     backgroundColor: char.backgroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
109 |                     attributes: cellAttributes
110 |                 )
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
[18/75] Compiling SwiftTUI Divider.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:107:38: warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
105 |                 return Cell(
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
108 |                     backgroundColor: char.backgroundColor,
109 |                     attributes: cellAttributes
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:108:38: warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
108 |                     backgroundColor: char.backgroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
109 |                     attributes: cellAttributes
110 |                 )
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
[19/75] Compiling SwiftTUI GeometryReader.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:107:38: warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
105 |                 return Cell(
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
108 |                     backgroundColor: char.backgroundColor,
109 |                     attributes: cellAttributes
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:108:38: warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
108 |                     backgroundColor: char.backgroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
109 |                     attributes: cellAttributes
110 |                 )
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
[20/75] Compiling SwiftTUI ScrollView.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:107:38: warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
105 |                 return Cell(
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
108 |                     backgroundColor: char.backgroundColor,
109 |                     attributes: cellAttributes
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:108:38: warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
108 |                     backgroundColor: char.backgroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
109 |                     attributes: cellAttributes
110 |                 )
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
[21/75] Compiling SwiftTUI Spacer.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:107:38: warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
105 |                 return Cell(
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
108 |                     backgroundColor: char.backgroundColor,
109 |                     attributes: cellAttributes
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:108:38: warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
108 |                     backgroundColor: char.backgroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
109 |                     attributes: cellAttributes
110 |                 )
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
[22/75] Compiling SwiftTUI Text.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:107:38: warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
105 |                 return Cell(
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.ForegroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
108 |                     backgroundColor: char.backgroundColor,
109 |                     attributes: cellAttributes
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Controls/Text.swift:108:38: warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
106 |                     char: char.characters[char.startIndex],
107 |                     foregroundColor: char.foregroundColor ?? foregroundColor,
108 |                     backgroundColor: char.backgroundColor,
    |                                      `- warning: type 'AttributeScopes.SwiftTUIAttributes.BackgroundColorAttribute.Value' (aka 'Color') does not conform to the 'Sendable' protocol
109 |                     attributes: cellAttributes
110 |                 )
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Color.swift:10:15: note: consider making struct 'Color' conform to the 'Sendable' protocol
  8 | /// The named colors are ANSI colors. In many terminal emulators they are user-defined or part of a
  9 | /// theme, and bold text automatically uses the bright color variant.
 10 | public struct Color: Hashable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 11 |     private let data: Data
 12 |
[23/75] Compiling SwiftTUI TextField.swift
[24/75] Compiling SwiftTUI EmptyView.swift
[25/75] Compiling SwiftTUI ForEach.swift
[26/75] Compiling SwiftTUI Group.swift
[27/75] Compiling SwiftTUI Background.swift
[28/75] Compiling SwiftTUI Bold.swift
[29/75] Compiling SwiftTUI Border.swift
[30/75] Compiling SwiftTUI FixedFrame.swift
[31/75] Compiling SwiftTUI FlexibleFrame.swift
[32/75] Compiling SwiftTUI Binding.swift
/host/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:143:40: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |     func scheduleUpdate() {
142 |         if !updateScheduled {
143 |             DispatchQueue.main.async { self.update() }
    |                                        |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                        `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |             updateScheduled = true
145 |         }
[33/75] Compiling SwiftTUI Environment.swift
/host/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:143:40: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |     func scheduleUpdate() {
142 |         if !updateScheduled {
143 |             DispatchQueue.main.async { self.update() }
    |                                        |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                        `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |             updateScheduled = true
145 |         }
[34/75] Compiling SwiftTUI ObservedObject.swift
/host/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:143:40: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |     func scheduleUpdate() {
142 |         if !updateScheduled {
143 |             DispatchQueue.main.async { self.update() }
    |                                        |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                        `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |             updateScheduled = true
145 |         }
[35/75] Compiling SwiftTUI State.swift
/host/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:143:40: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |     func scheduleUpdate() {
142 |         if !updateScheduled {
143 |             DispatchQueue.main.async { self.update() }
    |                                        |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                        `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |             updateScheduled = true
145 |         }
[36/75] Compiling SwiftTUI View+Environment.swift
/host/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:143:40: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |     func scheduleUpdate() {
142 |         if !updateScheduled {
143 |             DispatchQueue.main.async { self.update() }
    |                                        |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                        `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |             updateScheduled = true
145 |         }
[37/75] Compiling SwiftTUI View+ObservableObject.swift
/host/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:143:40: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |     func scheduleUpdate() {
142 |         if !updateScheduled {
143 |             DispatchQueue.main.async { self.update() }
    |                                        |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                        `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |             updateScheduled = true
145 |         }
[38/75] Compiling SwiftTUI View+State.swift
/host/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:143:40: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |     func scheduleUpdate() {
142 |         if !updateScheduled {
143 |             DispatchQueue.main.async { self.update() }
    |                                        |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                        `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |             updateScheduled = true
145 |         }
[39/75] Compiling SwiftTUI ASCII.swift
/host/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:143:40: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |     func scheduleUpdate() {
142 |         if !updateScheduled {
143 |             DispatchQueue.main.async { self.update() }
    |                                        |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                        `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |             updateScheduled = true
145 |         }
[40/75] Compiling SwiftTUI Application.swift
/host/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:143:40: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |     func scheduleUpdate() {
142 |         if !updateScheduled {
143 |             DispatchQueue.main.async { self.update() }
    |                                        |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                        `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |             updateScheduled = true
145 |         }
[41/75] Compiling SwiftTUI Edges.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 8 |     }
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:12:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
   |                       |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static let right = Edges(rawValue: 1 << 3)
14 |
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:13:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
   |                       |- warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var all: Edges { [.top, .bottom, left, right] }
[42/75] Compiling SwiftTUI Extended.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 8 |     }
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:12:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
   |                       |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static let right = Edges(rawValue: 1 << 3)
14 |
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:13:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
   |                       |- warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var all: Edges { [.top, .bottom, left, right] }
[43/75] Compiling SwiftTUI Position.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 8 |     }
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:12:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
   |                       |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static let right = Edges(rawValue: 1 << 3)
14 |
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:13:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
   |                       |- warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var all: Edges { [.top, .bottom, left, right] }
[44/75] Compiling SwiftTUI Rect.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 8 |     }
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:12:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
   |                       |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static let right = Edges(rawValue: 1 << 3)
14 |
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:13:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
   |                       |- warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var all: Edges { [.top, .bottom, left, right] }
[45/75] Compiling SwiftTUI EscapeSequence.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 8 |     }
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:12:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
   |                       |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static let right = Edges(rawValue: 1 << 3)
14 |
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:13:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
   |                       |- warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var all: Edges { [.top, .bottom, left, right] }
[46/75] Compiling SwiftTUI Layer.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 8 |     }
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:12:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
   |                       |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static let right = Edges(rawValue: 1 << 3)
14 |
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:13:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
   |                       |- warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var all: Edges { [.top, .bottom, left, right] }
[47/75] Compiling SwiftTUI LayerDrawing.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 8 |     }
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:12:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
   |                       |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static let right = Edges(rawValue: 1 << 3)
14 |
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:13:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
   |                       |- warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var all: Edges { [.top, .bottom, left, right] }
[48/75] Compiling SwiftTUI Renderer.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 8 |     }
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:12:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
   |                       |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static let right = Edges(rawValue: 1 << 3)
14 |
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:13:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
   |                       |- warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var all: Edges { [.top, .bottom, left, right] }
[49/75] Compiling SwiftTUI Size.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:10:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 8 |     }
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:11:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
 9 |
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:12:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
10 |     public static let top = Edges(rawValue: 1 << 0)
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
   |                       |- warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static let right = Edges(rawValue: 1 << 3)
14 |
/host/spi-builder-workspace/Sources/SwiftTUI/Drawing/Edges.swift:13:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct Edges: OptionSet {
   |               `- note: consider making struct 'Edges' conform to the 'Sendable' protocol
 4 |     public let rawValue: UInt8
 5 |
   :
11 |     public static let bottom  = Edges(rawValue: 1 << 1)
12 |     public static let left = Edges(rawValue: 1 << 2)
13 |     public static let right = Edges(rawValue: 1 << 3)
   |                       |- warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'Edges' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var all: Edges { [.top, .bottom, left, right] }
[50/75] Compiling SwiftTUI ArrowKeyParser.swift
[51/75] Compiling SwiftTUI SwiftTUI.swift
[52/75] Compiling SwiftTUI ComposedView.swift
[53/75] Compiling SwiftTUI GenericView.swift
[54/75] Compiling SwiftTUI LayoutRootView.swift
[55/75] Compiling SwiftTUI ModifierView.swift
[56/75] Compiling SwiftTUI Node.swift
[57/75] Compiling SwiftTUI PrimitiveView.swift
[58/75] Compiling SwiftTUI View.swift
[59/75] Compiling SwiftTUI Alignment.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:24:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
22 |     }
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:25:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:26:23: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
   |                       |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:27:23: warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
   |                       |- warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:28:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:29:23: warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:30:23: warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
   |                       |- warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:31:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
33 | }
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:32:23: warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
[60/75] Compiling SwiftTUI Axis.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:24:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
22 |     }
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:25:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:26:23: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
   |                       |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:27:23: warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
   |                       |- warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:28:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:29:23: warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:30:23: warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
   |                       |- warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:31:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
33 | }
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:32:23: warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
[61/75] Compiling SwiftTUI HStack.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:24:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
22 |     }
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:25:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:26:23: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
   |                       |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:27:23: warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
   |                       |- warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:28:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:29:23: warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:30:23: warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
   |                       |- warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:31:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
33 | }
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:32:23: warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
[62/75] Compiling SwiftTUI VStack.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:24:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
22 |     }
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:25:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:26:23: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
   |                       |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:27:23: warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
   |                       |- warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:28:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:29:23: warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:30:23: warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
   |                       |- warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:31:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
33 | }
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:32:23: warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
[63/75] Compiling SwiftTUI ZStack.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:24:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
22 |     }
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:25:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:26:23: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
   |                       |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:27:23: warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
   |                       |- warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:28:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:29:23: warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:30:23: warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
   |                       |- warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:31:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
33 | }
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:32:23: warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
[64/75] Compiling SwiftTUI TupleView.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:24:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
22 |     }
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:25:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:26:23: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
   |                       |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:27:23: warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
   |                       |- warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:28:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:29:23: warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:30:23: warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
   |                       |- warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:31:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
33 | }
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:32:23: warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
[65/75] Compiling SwiftTUI ViewBuilder.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:24:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
22 |     }
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:25:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:26:23: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
   |                       |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:27:23: warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
   |                       |- warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:28:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:29:23: warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:30:23: warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
   |                       |- warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:31:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
33 | }
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:32:23: warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
[66/75] Compiling SwiftTUI _ConditionalView.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:24:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
22 |     }
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
   |                       |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:25:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
23 |
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:26:23: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
24 |     public static let top = Alignment(horizontalAlignment: .center, verticalAlignment: .top)
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
   |                       |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:27:23: warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
25 |     public static let bottom = Alignment(horizontalAlignment: .center, verticalAlignment: .bottom)
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
   |                       |- warning: static property 'topLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:28:23: warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
26 |     public static let center = Alignment(horizontalAlignment: .center, verticalAlignment: .center)
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
   |                       |- warning: static property 'leading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'leading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:29:23: warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
27 |     public static let topLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .top)
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomLeading' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomLeading' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:30:23: warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
28 |     public static let leading = Alignment(horizontalAlignment: .leading, verticalAlignment: .center)
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
   |                       |- warning: static property 'topTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'topTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:31:23: warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
29 |     public static let bottomLeading = Alignment(horizontalAlignment: .leading, verticalAlignment: .bottom)
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
   |                       |- warning: static property 'trailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'trailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
33 | }
/host/spi-builder-workspace/Sources/SwiftTUI/Views/Stacks/Alignment.swift:32:23: warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | public struct Alignment {
   |               `- note: consider making struct 'Alignment' conform to the 'Sendable' protocol
16 |     public var horizontalAlignment: HorizontalAlignment
17 |     public var verticalAlignment: VerticalAlignment
   :
30 |     public static let topTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .top)
31 |     public static let trailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .center)
32 |     public static let bottomTrailing = Alignment(horizontalAlignment: .trailing, verticalAlignment: .bottom)
   |                       |- warning: static property 'bottomTrailing' is not concurrency-safe because non-'Sendable' type 'Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'bottomTrailing' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | }
34 |
[67/75] Compiling SwiftTUI Control.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Debug/log.swift:14:5: warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | }
13 |
14 | var logStream = LogStream()
   |     |- warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'logStream' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'logStream' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[68/75] Compiling SwiftTUI Window.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Debug/log.swift:14:5: warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | }
13 |
14 | var logStream = LogStream()
   |     |- warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'logStream' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'logStream' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[69/75] Compiling SwiftTUI Control+logTree.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Debug/log.swift:14:5: warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | }
13 |
14 | var logStream = LogStream()
   |     |- warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'logStream' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'logStream' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[70/75] Compiling SwiftTUI Node+logTree.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Debug/log.swift:14:5: warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | }
13 |
14 | var logStream = LogStream()
   |     |- warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'logStream' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'logStream' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[71/75] Compiling SwiftTUI log.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Debug/log.swift:14:5: warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | }
13 |
14 | var logStream = LogStream()
   |     |- warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'logStream' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'logStream' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[72/75] Compiling SwiftTUI AttributeScopes+SwiftTUIAttributes.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Debug/log.swift:14:5: warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | }
13 |
14 | var logStream = LogStream()
   |     |- warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'logStream' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'logStream' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[73/75] Compiling SwiftTUI Cell.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Debug/log.swift:14:5: warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | }
13 |
14 | var logStream = LogStream()
   |     |- warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'logStream' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'logStream' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[74/75] Compiling SwiftTUI CellAttributes.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Debug/log.swift:14:5: warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | }
13 |
14 | var logStream = LogStream()
   |     |- warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'logStream' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'logStream' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[75/75] Compiling SwiftTUI Color.swift
/host/spi-builder-workspace/Sources/SwiftTUI/Debug/log.swift:14:5: warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | }
13 |
14 | var logStream = LogStream()
   |     |- warning: var 'logStream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'logStream' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'logStream' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
Build complete! (22.79s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "SwiftTUI",
  "name" : "SwiftTUI",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftTUI",
      "targets" : [
        "SwiftTUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftTUITests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftTUITests",
      "path" : "Tests/SwiftTUITests",
      "sources" : [
        "PositionTests.swift",
        "RectTests.swift",
        "SwiftTUITests.swift",
        "ViewBuildTests.swift"
      ],
      "target_dependencies" : [
        "SwiftTUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftTUI",
      "module_type" : "SwiftTarget",
      "name" : "SwiftTUI",
      "path" : "Sources/SwiftTUI",
      "product_memberships" : [
        "SwiftTUI"
      ],
      "sources" : [
        "Controls/Control.swift",
        "Controls/Window.swift",
        "Debug/Control+logTree.swift",
        "Debug/Node+logTree.swift",
        "Debug/log.swift",
        "Drawing/AttributeScopes+SwiftTUIAttributes.swift",
        "Drawing/Cell.swift",
        "Drawing/CellAttributes.swift",
        "Drawing/Color.swift",
        "Drawing/Edges.swift",
        "Drawing/Extended.swift",
        "Drawing/Position.swift",
        "Drawing/Rect.swift",
        "Drawing/Rendering/EscapeSequence.swift",
        "Drawing/Rendering/Layer.swift",
        "Drawing/Rendering/LayerDrawing.swift",
        "Drawing/Rendering/Renderer.swift",
        "Drawing/Size.swift",
        "PropertyWrappers/Binding.swift",
        "PropertyWrappers/Environment.swift",
        "PropertyWrappers/ObservedObject.swift",
        "PropertyWrappers/State.swift",
        "PropertyWrappers/View+Environment.swift",
        "PropertyWrappers/View+ObservableObject.swift",
        "PropertyWrappers/View+State.swift",
        "RunLoop/ASCII.swift",
        "RunLoop/Application.swift",
        "RunLoop/ArrowKeyParser.swift",
        "SwiftTUI.swift",
        "ViewGraph/ComposedView.swift",
        "ViewGraph/GenericView.swift",
        "ViewGraph/LayoutRootView.swift",
        "ViewGraph/ModifierView.swift",
        "ViewGraph/Node.swift",
        "ViewGraph/PrimitiveView.swift",
        "ViewGraph/View.swift",
        "ViewGraph/Weak.swift",
        "ViewGraph/WeakSet.swift",
        "Views/Controls/Button.swift",
        "Views/Controls/Color+View.swift",
        "Views/Controls/Divider.swift",
        "Views/Controls/GeometryReader.swift",
        "Views/Controls/ScrollView.swift",
        "Views/Controls/Spacer.swift",
        "Views/Controls/Text.swift",
        "Views/Controls/TextField.swift",
        "Views/EmptyView.swift",
        "Views/ForEach.swift",
        "Views/Group.swift",
        "Views/Modifiers/Background.swift",
        "Views/Modifiers/Bold.swift",
        "Views/Modifiers/Border.swift",
        "Views/Modifiers/FixedFrame.swift",
        "Views/Modifiers/FlexibleFrame.swift",
        "Views/Modifiers/ForegroundColor.swift",
        "Views/Modifiers/Italic.swift",
        "Views/Modifiers/OnAppear.swift",
        "Views/Modifiers/Padding.swift",
        "Views/Modifiers/SetEnvironment.swift",
        "Views/Modifiers/Strikethrough.swift",
        "Views/Modifiers/Underline.swift",
        "Views/Optional+View.swift",
        "Views/Stacks/Alignment.swift",
        "Views/Stacks/Axis.swift",
        "Views/Stacks/HStack.swift",
        "Views/Stacks/VStack.swift",
        "Views/Stacks/ZStack.swift",
        "Views/TupleView.swift",
        "Views/ViewBuilder.swift",
        "Views/_ConditionalView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.