The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftTUI, reference main (537133), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 03:12:59 UTC.

Swift 6 data race errors: 14

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -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

Build Log

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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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 |         }
[21/75] Compiling SwiftTUI Padding.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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 |         }
[22/75] Compiling SwiftTUI SetEnvironment.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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 |         }
[23/75] Compiling SwiftTUI Strikethrough.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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 |         }
[24/75] Compiling SwiftTUI Underline.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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 |         }
[25/75] Compiling SwiftTUI Optional+View.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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 |         }
[26/75] Compiling SwiftTUI Alignment.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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 |         }
[27/75] Compiling SwiftTUI CellAttributes.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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] }
[28/75] Compiling SwiftTUI Color.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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] }
[29/75] Compiling SwiftTUI Edges.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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] }
[30/75] Compiling SwiftTUI Extended.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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] }
[31/75] Compiling SwiftTUI Position.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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] }
[32/75] Compiling SwiftTUI Rect.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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] }
[33/75] Compiling SwiftTUI EscapeSequence.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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 |
/Users/admin/builder/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] }
[34/75] Compiling SwiftTUI Background.swift
[35/75] Compiling SwiftTUI Bold.swift
[36/75] Compiling SwiftTUI Border.swift
[37/75] Compiling SwiftTUI FixedFrame.swift
[38/75] Compiling SwiftTUI FlexibleFrame.swift
[39/75] Compiling SwiftTUI ForegroundColor.swift
[40/75] Compiling SwiftTUI Italic.swift
[41/75] Compiling SwiftTUI Layer.swift
[42/75] Compiling SwiftTUI LayerDrawing.swift
[43/75] Compiling SwiftTUI Renderer.swift
[44/75] Compiling SwiftTUI Size.swift
[45/75] Compiling SwiftTUI Binding.swift
[46/75] Compiling SwiftTUI Environment.swift
[47/75] Compiling SwiftTUI ObservedObject.swift
[48/75] Compiling SwiftTUI Control.swift
/Users/admin/builder/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 {
[49/75] Compiling SwiftTUI Window.swift
/Users/admin/builder/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 {
[50/75] Compiling SwiftTUI Control+logTree.swift
/Users/admin/builder/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 {
[51/75] Compiling SwiftTUI Node+logTree.swift
/Users/admin/builder/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 {
[52/75] Compiling SwiftTUI log.swift
/Users/admin/builder/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 {
[53/75] Compiling SwiftTUI AttributeScopes+SwiftTUIAttributes.swift
/Users/admin/builder/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 {
[54/75] Compiling SwiftTUI Cell.swift
/Users/admin/builder/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 {
[55/75] Compiling SwiftTUI View.swift
[56/75] Compiling SwiftTUI Weak.swift
[57/75] Compiling SwiftTUI WeakSet.swift
[58/75] Compiling SwiftTUI Button.swift
[59/75] Compiling SwiftTUI Color+View.swift
[60/75] Compiling SwiftTUI Divider.swift
[61/75] Compiling SwiftTUI GeometryReader.swift
[62/75] Compiling SwiftTUI ScrollView.swift
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 |                 )
/Users/admin/builder/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 |
[63/75] Compiling SwiftTUI Spacer.swift
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 |                 )
/Users/admin/builder/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 |
[64/75] Compiling SwiftTUI Text.swift
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 |                 )
/Users/admin/builder/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 |
[65/75] Compiling SwiftTUI TextField.swift
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 |                 )
/Users/admin/builder/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 |
[66/75] Compiling SwiftTUI EmptyView.swift
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 |                 )
/Users/admin/builder/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 |
[67/75] Compiling SwiftTUI ForEach.swift
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 |                 )
/Users/admin/builder/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 |
[68/75] Compiling SwiftTUI Group.swift
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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 |                 )
/Users/admin/builder/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 |
[69/75] Compiling SwiftTUI State.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:34: warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                                  `- warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
AppKit.NSApplication.setActivationPolicy:3:24: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @available(macOS 10.6, *)
3 |   @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool}
  |                        |- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
  |                        `- note: main actor isolation inferred from inheritance from class 'NSResponder'
4 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:34: warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                                  `- warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
AppKit.NSApplication.run:2:22: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func run()}
  |                      |- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/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 |         }
[70/75] Compiling SwiftTUI View+Environment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:34: warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                                  `- warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
AppKit.NSApplication.setActivationPolicy:3:24: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @available(macOS 10.6, *)
3 |   @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool}
  |                        |- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
  |                        `- note: main actor isolation inferred from inheritance from class 'NSResponder'
4 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:34: warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                                  `- warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
AppKit.NSApplication.run:2:22: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func run()}
  |                      |- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/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 |         }
[71/75] Compiling SwiftTUI View+ObservableObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:34: warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                                  `- warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
AppKit.NSApplication.setActivationPolicy:3:24: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @available(macOS 10.6, *)
3 |   @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool}
  |                        |- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
  |                        `- note: main actor isolation inferred from inheritance from class 'NSResponder'
4 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:34: warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                                  `- warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
AppKit.NSApplication.run:2:22: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func run()}
  |                      |- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/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 |         }
[72/75] Compiling SwiftTUI View+State.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:34: warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                                  `- warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
AppKit.NSApplication.setActivationPolicy:3:24: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @available(macOS 10.6, *)
3 |   @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool}
  |                        |- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
  |                        `- note: main actor isolation inferred from inheritance from class 'NSResponder'
4 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:34: warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                                  `- warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
AppKit.NSApplication.run:2:22: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func run()}
  |                      |- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/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 |         }
[73/75] Compiling SwiftTUI ASCII.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:34: warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                                  `- warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
AppKit.NSApplication.setActivationPolicy:3:24: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @available(macOS 10.6, *)
3 |   @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool}
  |                        |- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
  |                        `- note: main actor isolation inferred from inheritance from class 'NSResponder'
4 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:34: warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                                  `- warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
AppKit.NSApplication.run:2:22: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func run()}
  |                      |- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/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 |         }
[74/75] Compiling SwiftTUI Application.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:34: warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                                  `- warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
AppKit.NSApplication.setActivationPolicy:3:24: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @available(macOS 10.6, *)
3 |   @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool}
  |                        |- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
  |                        `- note: main actor isolation inferred from inheritance from class 'NSResponder'
4 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:34: warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                                  `- warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
AppKit.NSApplication.run:2:22: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func run()}
  |                      |- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/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 |         }
[75/75] Compiling SwiftTUI ArrowKeyParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:34: warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                                  `- warning: call to main actor-isolated instance method 'setActivationPolicy' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
AppKit.NSApplication.setActivationPolicy:3:24: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @available(macOS 10.6, *)
3 |   @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool}
  |                        |- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
  |                        `- note: main actor isolation inferred from inheritance from class 'NSResponder'
4 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:79:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 77 |         #if os(macOS)
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 80 |             NSApplication.shared.run()
 81 |         #endif
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:34: warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                                  `- warning: call to main actor-isolated instance method 'run()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
AppKit.NSApplication.run:2:22: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
1 | class NSApplication {
2 | @MainActor open func run()}
  |                      |- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
  |                      `- note: main actor isolation inferred from inheritance from class 'NSResponder'
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTUI/RunLoop/Application.swift:80:27: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 52 |     }
 53 |
 54 |     public func start() {
    |                 `- note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
 55 |         setInputMode()
 56 |         updateWindowSize()
    :
 78 |         case .cocoa:
 79 |             NSApplication.shared.setActivationPolicy(.accessory)
 80 |             NSApplication.shared.run()
    |                           `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 81 |         #endif
 82 |         }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSApplication.h:193:61: note: class property declared here
191 | APPKIT_EXTERN __kindof NSApplication * _Null_unspecified NSApp NS_SWIFT_UI_ACTOR;
192 |
193 | @property (class, readonly, strong) __kindof NSApplication *sharedApplication;
    |                                                             `- note: class property declared here
194 | @property (nullable, weak) id<NSApplicationDelegate> delegate;
195 |
/Users/admin/builder/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 |         }
Build complete! (18.85s)
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" : "/Users/admin/builder/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"
}
Done.