The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftTUI, reference main (537133), with Swift 6.0 for macOS (SPM) on 28 Nov 2024 22:51:47 UTC.

Swift 6 data race errors: 14

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.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

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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'leading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'trailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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 |         }
[35/75] Compiling SwiftTUI Padding.swift
/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: annotate 'left' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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] }
/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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'leading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'trailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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 |         }
[36/75] Compiling SwiftTUI SetEnvironment.swift
/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: annotate 'left' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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] }
/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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'leading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'trailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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 |         }
[37/75] Compiling SwiftTUI Strikethrough.swift
/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: annotate 'left' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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] }
/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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'leading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'trailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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 |         }
[38/75] Compiling SwiftTUI Underline.swift
/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: annotate 'left' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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] }
/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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'leading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'trailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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 |         }
[39/75] Compiling SwiftTUI Optional+View.swift
/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: annotate 'left' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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] }
/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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'leading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'trailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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 |         }
[40/75] Compiling SwiftTUI Alignment.swift
/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: annotate 'left' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'right' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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] }
/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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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/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: annotate 'top' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottom' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'leading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'topTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'trailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: annotate 'bottomTrailing' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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 |         }
[41/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: annotate 'logStream' with '@MainActor' if property should only be accessed from the main actor
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[42/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: annotate 'logStream' with '@MainActor' if property should only be accessed from the main actor
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[43/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: annotate 'logStream' with '@MainActor' if property should only be accessed from the main actor
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[44/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: annotate 'logStream' with '@MainActor' if property should only be accessed from the main actor
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[45/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: annotate 'logStream' with '@MainActor' if property should only be accessed from the main actor
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[46/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: annotate 'logStream' with '@MainActor' if property should only be accessed from the main actor
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[47/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: annotate 'logStream' with '@MainActor' if property should only be accessed from the main actor
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | struct LogStream: TextOutputStream {
[48/75] Compiling SwiftTUI SwiftTUI.swift
[49/75] Compiling SwiftTUI ComposedView.swift
[50/75] Compiling SwiftTUI GenericView.swift
[51/75] Compiling SwiftTUI LayoutRootView.swift
[52/75] Compiling SwiftTUI ModifierView.swift
[53/75] Compiling SwiftTUI Node.swift
[54/75] Compiling SwiftTUI PrimitiveView.swift
[55/75] Compiling SwiftTUI Layer.swift
[56/75] Compiling SwiftTUI LayerDrawing.swift
[57/75] Compiling SwiftTUI Renderer.swift
[58/75] Compiling SwiftTUI Size.swift
[59/75] Compiling SwiftTUI Binding.swift
[60/75] Compiling SwiftTUI Environment.swift
[61/75] Compiling SwiftTUI ObservedObject.swift
[62/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:79:26: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 77 |     open func activationPolicy() -> NSApplication.ActivationPolicy
 78 |     @available(macOS 10.6, *)
 79 |     @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool
    |                          `- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 80 |     @available(macOS 10.5, *)
 81 |     open var dockTile: NSDockTile { get }
/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
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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:44:26: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 42 |     open func unhideAllApplications(_ sender: Any?)
 43 |     open func finishLaunching()
 44 |     @MainActor open func run()
    |                          `- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 45 |     open func runModal(for window: NSWindow) -> NSApplication.ModalResponse
 46 |     @available(swift, obsoleted: 3, renamed: "runModal(for:)")
/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 |         }
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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 |         }
[63/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:79:26: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 77 |     open func activationPolicy() -> NSApplication.ActivationPolicy
 78 |     @available(macOS 10.6, *)
 79 |     @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool
    |                          `- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 80 |     @available(macOS 10.5, *)
 81 |     open var dockTile: NSDockTile { get }
/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
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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:44:26: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 42 |     open func unhideAllApplications(_ sender: Any?)
 43 |     open func finishLaunching()
 44 |     @MainActor open func run()
    |                          `- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 45 |     open func runModal(for window: NSWindow) -> NSApplication.ModalResponse
 46 |     @available(swift, obsoleted: 3, renamed: "runModal(for:)")
/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 |         }
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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 |         }
[64/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:79:26: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 77 |     open func activationPolicy() -> NSApplication.ActivationPolicy
 78 |     @available(macOS 10.6, *)
 79 |     @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool
    |                          `- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 80 |     @available(macOS 10.5, *)
 81 |     open var dockTile: NSDockTile { get }
/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
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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:44:26: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 42 |     open func unhideAllApplications(_ sender: Any?)
 43 |     open func finishLaunching()
 44 |     @MainActor open func run()
    |                          `- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 45 |     open func runModal(for window: NSWindow) -> NSApplication.ModalResponse
 46 |     @available(swift, obsoleted: 3, renamed: "runModal(for:)")
/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 |         }
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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 |         }
[65/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:79:26: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 77 |     open func activationPolicy() -> NSApplication.ActivationPolicy
 78 |     @available(macOS 10.6, *)
 79 |     @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool
    |                          `- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 80 |     @available(macOS 10.5, *)
 81 |     open var dockTile: NSDockTile { get }
/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
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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:44:26: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 42 |     open func unhideAllApplications(_ sender: Any?)
 43 |     open func finishLaunching()
 44 |     @MainActor open func run()
    |                          `- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 45 |     open func runModal(for window: NSWindow) -> NSApplication.ModalResponse
 46 |     @available(swift, obsoleted: 3, renamed: "runModal(for:)")
/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 |         }
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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 |         }
[66/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:79:26: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 77 |     open func activationPolicy() -> NSApplication.ActivationPolicy
 78 |     @available(macOS 10.6, *)
 79 |     @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool
    |                          `- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 80 |     @available(macOS 10.5, *)
 81 |     open var dockTile: NSDockTile { get }
/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
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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:44:26: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 42 |     open func unhideAllApplications(_ sender: Any?)
 43 |     open func finishLaunching()
 44 |     @MainActor open func run()
    |                          `- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 45 |     open func runModal(for window: NSWindow) -> NSApplication.ModalResponse
 46 |     @available(swift, obsoleted: 3, renamed: "runModal(for:)")
/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 |         }
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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 |         }
[67/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:79:26: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 77 |     open func activationPolicy() -> NSApplication.ActivationPolicy
 78 |     @available(macOS 10.6, *)
 79 |     @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool
    |                          `- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 80 |     @available(macOS 10.5, *)
 81 |     open var dockTile: NSDockTile { get }
/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
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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:44:26: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 42 |     open func unhideAllApplications(_ sender: Any?)
 43 |     open func finishLaunching()
 44 |     @MainActor open func run()
    |                          `- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 45 |     open func runModal(for window: NSWindow) -> NSApplication.ModalResponse
 46 |     @available(swift, obsoleted: 3, renamed: "runModal(for:)")
/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 |         }
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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 |         }
[68/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:79:26: note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 77 |     open func activationPolicy() -> NSApplication.ActivationPolicy
 78 |     @available(macOS 10.6, *)
 79 |     @MainActor open func setActivationPolicy(_ activationPolicy: NSApplication.ActivationPolicy) -> Bool
    |                          `- note: calls to instance method 'setActivationPolicy' from outside of its actor context are implicitly asynchronous
 80 |     @available(macOS 10.5, *)
 81 |     open var dockTile: NSDockTile { get }
/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
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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:44:26: note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 42 |     open func unhideAllApplications(_ sender: Any?)
 43 |     open func finishLaunching()
 44 |     @MainActor open func run()
    |                          `- note: calls to instance method 'run()' from outside of its actor context are implicitly asynchronous
 45 |     open func runModal(for window: NSWindow) -> NSApplication.ModalResponse
 46 |     @available(swift, obsoleted: 3, renamed: "runModal(for:)")
/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 |         }
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/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 |         }
[69/75] Compiling SwiftTUI Axis.swift
/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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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)
[70/75] Compiling SwiftTUI HStack.swift
/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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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)
[71/75] Compiling SwiftTUI VStack.swift
/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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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)
[72/75] Compiling SwiftTUI ZStack.swift
/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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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)
[73/75] Compiling SwiftTUI TupleView.swift
/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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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)
[74/75] Compiling SwiftTUI ViewBuilder.swift
/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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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)
[75/75] Compiling SwiftTUI _ConditionalView.swift
/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: annotate 'topLeading' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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: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: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
   |                       `- 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)
Build complete! (29.53s)
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.