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 OpenSwiftUI, reference 0.1.0 (2b0da4), with Swift 6.0 for macOS (SPM) on 31 Oct 2024 07:07:07 UTC.

Swift 6 data race errors: 71

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

Build Log

 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
    |                           |- warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'displayList' 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
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:103:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
    |                           |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'all' 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
104 |     }
105 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Text/Font/TODO/Font.swift:24:23: warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | @frozen
 4 | public struct Font: Hashable {
   |               `- note: consider making struct 'Font' conform to the 'Sendable' protocol
 5 |     @usableFromInline
 6 |     var provider: AnyFontBox
   :
22 |
23 |     // FIXME
24 |     public static let body = Font(provider: TextStyleProvider(textStyle: .body, design: .default))
   |                       |- warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'body' 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 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Graphic/Color/ColorSchema.swift:17:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | //  ID: 387C753F3FFD2899BCB77252214CFCC6
 8 |
 9 | public enum ColorScheme: Hashable, CaseIterable {
   |             `- note: consider making enum 'ColorScheme' conform to the 'Sendable' protocol
10 |     case light
11 |     case dark
   :
15 |
16 | private struct ColorSchemeKey: EnvironmentKey {
17 |     static let defaultValue: ColorScheme = .light
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/Core/View/View.swift:74:5: warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 72 |     /// see <doc:Declaring-a-Custom-View>.
 73 |     @ViewBuilder
 74 |     @MainActor(unsafe)
    |     `- warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 75 |     var body: Self.Body { get }
 76 | }
[245/252] Compiling OpenSwiftUI Transaction+isContinuous.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SliderStyleKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | private struct SliderStyleKey: EnvironmentKey {
10 |     static let defaultValue = AnySliderStyle.default
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SystemSliderStyle.swift:17:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | extension AnySliderStyle {
17 |     static let `default` = AnySliderStyle(style: SystemSliderStyle())
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:30:24: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
    |                        |- warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'properties' 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 |     private static var isInitialized = false
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:31:24: warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
 31 |     private static var isInitialized = false
    |                        |- warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isInitialized' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isInitialized' 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 |
 33 |     @inline(__always)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:94:27: warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 92 |         }
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
    |                           |- warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'type' 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
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:95:27: warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
    |                           |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'value' 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
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:96:27: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
    |                           |- warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'transform' 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
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:97:27: warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
    |                           |- warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'position' 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
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:98:27: warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
    |                           |- warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'size' 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
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:99:27: warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
    |                           |- warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'environment' 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
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:100:27: warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
    |                           |- warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'phase' 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
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:101:27: warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
    |                           |- warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'layoutComputer' 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
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:102:27: warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
    |                           |- warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'displayList' 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
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:103:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
    |                           |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'all' 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
104 |     }
105 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Text/Font/TODO/Font.swift:24:23: warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | @frozen
 4 | public struct Font: Hashable {
   |               `- note: consider making struct 'Font' conform to the 'Sendable' protocol
 5 |     @usableFromInline
 6 |     var provider: AnyFontBox
   :
22 |
23 |     // FIXME
24 |     public static let body = Font(provider: TextStyleProvider(textStyle: .body, design: .default))
   |                       |- warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'body' 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 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Graphic/Color/ColorSchema.swift:17:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | //  ID: 387C753F3FFD2899BCB77252214CFCC6
 8 |
 9 | public enum ColorScheme: Hashable, CaseIterable {
   |             `- note: consider making enum 'ColorScheme' conform to the 'Sendable' protocol
10 |     case light
11 |     case dark
   :
15 |
16 | private struct ColorSchemeKey: EnvironmentKey {
17 |     static let defaultValue: ColorScheme = .light
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/Core/View/View.swift:74:5: warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 72 |     /// see <doc:Declaring-a-Custom-View>.
 73 |     @ViewBuilder
 74 |     @MainActor(unsafe)
    |     `- warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 75 |     var body: Self.Body { get }
 76 | }
[246/252] Compiling OpenSwiftUI Transaction.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SliderStyleKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | private struct SliderStyleKey: EnvironmentKey {
10 |     static let defaultValue = AnySliderStyle.default
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SystemSliderStyle.swift:17:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | extension AnySliderStyle {
17 |     static let `default` = AnySliderStyle(style: SystemSliderStyle())
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:30:24: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
    |                        |- warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'properties' 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 |     private static var isInitialized = false
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:31:24: warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
 31 |     private static var isInitialized = false
    |                        |- warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isInitialized' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isInitialized' 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 |
 33 |     @inline(__always)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:94:27: warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 92 |         }
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
    |                           |- warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'type' 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
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:95:27: warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
    |                           |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'value' 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
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:96:27: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
    |                           |- warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'transform' 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
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:97:27: warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
    |                           |- warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'position' 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
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:98:27: warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
    |                           |- warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'size' 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
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:99:27: warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
    |                           |- warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'environment' 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
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:100:27: warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
    |                           |- warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'phase' 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
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:101:27: warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
    |                           |- warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'layoutComputer' 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
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:102:27: warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
    |                           |- warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'displayList' 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
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:103:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
    |                           |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'all' 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
104 |     }
105 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Text/Font/TODO/Font.swift:24:23: warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | @frozen
 4 | public struct Font: Hashable {
   |               `- note: consider making struct 'Font' conform to the 'Sendable' protocol
 5 |     @usableFromInline
 6 |     var provider: AnyFontBox
   :
22 |
23 |     // FIXME
24 |     public static let body = Font(provider: TextStyleProvider(textStyle: .body, design: .default))
   |                       |- warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'body' 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 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Graphic/Color/ColorSchema.swift:17:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | //  ID: 387C753F3FFD2899BCB77252214CFCC6
 8 |
 9 | public enum ColorScheme: Hashable, CaseIterable {
   |             `- note: consider making enum 'ColorScheme' conform to the 'Sendable' protocol
10 |     case light
11 |     case dark
   :
15 |
16 | private struct ColorSchemeKey: EnvironmentKey {
17 |     static let defaultValue: ColorScheme = .light
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/Core/View/View.swift:74:5: warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 72 |     /// see <doc:Declaring-a-Custom-View>.
 73 |     @ViewBuilder
 74 |     @MainActor(unsafe)
    |     `- warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 75 |     var body: Self.Body { get }
 76 | }
[247/252] Compiling OpenSwiftUI TransactionHostProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SliderStyleKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | private struct SliderStyleKey: EnvironmentKey {
10 |     static let defaultValue = AnySliderStyle.default
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SystemSliderStyle.swift:17:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | extension AnySliderStyle {
17 |     static let `default` = AnySliderStyle(style: SystemSliderStyle())
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:30:24: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
    |                        |- warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'properties' 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 |     private static var isInitialized = false
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:31:24: warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
 31 |     private static var isInitialized = false
    |                        |- warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isInitialized' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isInitialized' 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 |
 33 |     @inline(__always)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:94:27: warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 92 |         }
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
    |                           |- warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'type' 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
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:95:27: warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
    |                           |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'value' 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
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:96:27: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
    |                           |- warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'transform' 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
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:97:27: warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
    |                           |- warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'position' 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
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:98:27: warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
    |                           |- warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'size' 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
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:99:27: warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
    |                           |- warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'environment' 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
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:100:27: warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
    |                           |- warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'phase' 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
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:101:27: warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
    |                           |- warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'layoutComputer' 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
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:102:27: warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
    |                           |- warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'displayList' 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
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:103:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
    |                           |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'all' 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
104 |     }
105 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Text/Font/TODO/Font.swift:24:23: warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | @frozen
 4 | public struct Font: Hashable {
   |               `- note: consider making struct 'Font' conform to the 'Sendable' protocol
 5 |     @usableFromInline
 6 |     var provider: AnyFontBox
   :
22 |
23 |     // FIXME
24 |     public static let body = Font(provider: TextStyleProvider(textStyle: .body, design: .default))
   |                       |- warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'body' 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 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Graphic/Color/ColorSchema.swift:17:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | //  ID: 387C753F3FFD2899BCB77252214CFCC6
 8 |
 9 | public enum ColorScheme: Hashable, CaseIterable {
   |             `- note: consider making enum 'ColorScheme' conform to the 'Sendable' protocol
10 |     case light
11 |     case dark
   :
15 |
16 | private struct ColorSchemeKey: EnvironmentKey {
17 |     static let defaultValue: ColorScheme = .light
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/Core/View/View.swift:74:5: warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 72 |     /// see <doc:Declaring-a-Custom-View>.
 73 |     @ViewBuilder
 74 |     @MainActor(unsafe)
    |     `- warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 75 |     var body: Self.Body { get }
 76 | }
[248/252] Compiling OpenSwiftUI AnyView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SliderStyleKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | private struct SliderStyleKey: EnvironmentKey {
10 |     static let defaultValue = AnySliderStyle.default
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SystemSliderStyle.swift:17:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | extension AnySliderStyle {
17 |     static let `default` = AnySliderStyle(style: SystemSliderStyle())
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:30:24: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
    |                        |- warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'properties' 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 |     private static var isInitialized = false
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:31:24: warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
 31 |     private static var isInitialized = false
    |                        |- warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isInitialized' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isInitialized' 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 |
 33 |     @inline(__always)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:94:27: warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 92 |         }
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
    |                           |- warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'type' 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
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:95:27: warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
    |                           |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'value' 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
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:96:27: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
    |                           |- warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'transform' 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
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:97:27: warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
    |                           |- warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'position' 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
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:98:27: warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
    |                           |- warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'size' 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
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:99:27: warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
    |                           |- warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'environment' 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
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:100:27: warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
    |                           |- warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'phase' 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
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:101:27: warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
    |                           |- warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'layoutComputer' 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
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:102:27: warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
    |                           |- warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'displayList' 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
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:103:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
    |                           |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'all' 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
104 |     }
105 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Text/Font/TODO/Font.swift:24:23: warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | @frozen
 4 | public struct Font: Hashable {
   |               `- note: consider making struct 'Font' conform to the 'Sendable' protocol
 5 |     @usableFromInline
 6 |     var provider: AnyFontBox
   :
22 |
23 |     // FIXME
24 |     public static let body = Font(provider: TextStyleProvider(textStyle: .body, design: .default))
   |                       |- warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'body' 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 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Graphic/Color/ColorSchema.swift:17:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | //  ID: 387C753F3FFD2899BCB77252214CFCC6
 8 |
 9 | public enum ColorScheme: Hashable, CaseIterable {
   |             `- note: consider making enum 'ColorScheme' conform to the 'Sendable' protocol
10 |     case light
11 |     case dark
   :
15 |
16 | private struct ColorSchemeKey: EnvironmentKey {
17 |     static let defaultValue: ColorScheme = .light
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/Core/View/View.swift:74:5: warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 72 |     /// see <doc:Declaring-a-Custom-View>.
 73 |     @ViewBuilder
 74 |     @MainActor(unsafe)
    |     `- warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 75 |     var body: Self.Body { get }
 76 | }
[249/252] Compiling OpenSwiftUI EmptyView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SliderStyleKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | private struct SliderStyleKey: EnvironmentKey {
10 |     static let defaultValue = AnySliderStyle.default
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SystemSliderStyle.swift:17:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | extension AnySliderStyle {
17 |     static let `default` = AnySliderStyle(style: SystemSliderStyle())
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:30:24: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
    |                        |- warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'properties' 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 |     private static var isInitialized = false
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:31:24: warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
 31 |     private static var isInitialized = false
    |                        |- warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isInitialized' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isInitialized' 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 |
 33 |     @inline(__always)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:94:27: warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 92 |         }
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
    |                           |- warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'type' 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
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:95:27: warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
    |                           |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'value' 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
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:96:27: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
    |                           |- warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'transform' 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
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:97:27: warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
    |                           |- warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'position' 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
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:98:27: warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
    |                           |- warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'size' 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
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:99:27: warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
    |                           |- warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'environment' 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
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:100:27: warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
    |                           |- warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'phase' 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
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:101:27: warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
    |                           |- warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'layoutComputer' 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
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:102:27: warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
    |                           |- warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'displayList' 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
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:103:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
    |                           |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'all' 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
104 |     }
105 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Text/Font/TODO/Font.swift:24:23: warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | @frozen
 4 | public struct Font: Hashable {
   |               `- note: consider making struct 'Font' conform to the 'Sendable' protocol
 5 |     @usableFromInline
 6 |     var provider: AnyFontBox
   :
22 |
23 |     // FIXME
24 |     public static let body = Font(provider: TextStyleProvider(textStyle: .body, design: .default))
   |                       |- warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'body' 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 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Graphic/Color/ColorSchema.swift:17:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | //  ID: 387C753F3FFD2899BCB77252214CFCC6
 8 |
 9 | public enum ColorScheme: Hashable, CaseIterable {
   |             `- note: consider making enum 'ColorScheme' conform to the 'Sendable' protocol
10 |     case light
11 |     case dark
   :
15 |
16 | private struct ColorSchemeKey: EnvironmentKey {
17 |     static let defaultValue: ColorScheme = .light
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/Core/View/View.swift:74:5: warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 72 |     /// see <doc:Declaring-a-Custom-View>.
 73 |     @ViewBuilder
 74 |     @MainActor(unsafe)
    |     `- warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 75 |     var body: Self.Body { get }
 76 | }
[250/252] Compiling OpenSwiftUI TupleView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SliderStyleKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | private struct SliderStyleKey: EnvironmentKey {
10 |     static let defaultValue = AnySliderStyle.default
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SystemSliderStyle.swift:17:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | extension AnySliderStyle {
17 |     static let `default` = AnySliderStyle(style: SystemSliderStyle())
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:30:24: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
    |                        |- warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'properties' 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 |     private static var isInitialized = false
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:31:24: warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
 31 |     private static var isInitialized = false
    |                        |- warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isInitialized' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isInitialized' 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 |
 33 |     @inline(__always)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:94:27: warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 92 |         }
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
    |                           |- warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'type' 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
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:95:27: warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
    |                           |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'value' 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
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:96:27: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
    |                           |- warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'transform' 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
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:97:27: warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
    |                           |- warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'position' 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
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:98:27: warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
    |                           |- warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'size' 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
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:99:27: warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
    |                           |- warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'environment' 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
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:100:27: warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
    |                           |- warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'phase' 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
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:101:27: warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
    |                           |- warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'layoutComputer' 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
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:102:27: warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
    |                           |- warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'displayList' 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
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:103:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
    |                           |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'all' 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
104 |     }
105 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Text/Font/TODO/Font.swift:24:23: warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | @frozen
 4 | public struct Font: Hashable {
   |               `- note: consider making struct 'Font' conform to the 'Sendable' protocol
 5 |     @usableFromInline
 6 |     var provider: AnyFontBox
   :
22 |
23 |     // FIXME
24 |     public static let body = Font(provider: TextStyleProvider(textStyle: .body, design: .default))
   |                       |- warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'body' 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 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Graphic/Color/ColorSchema.swift:17:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | //  ID: 387C753F3FFD2899BCB77252214CFCC6
 8 |
 9 | public enum ColorScheme: Hashable, CaseIterable {
   |             `- note: consider making enum 'ColorScheme' conform to the 'Sendable' protocol
10 |     case light
11 |     case dark
   :
15 |
16 | private struct ColorSchemeKey: EnvironmentKey {
17 |     static let defaultValue: ColorScheme = .light
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/Core/View/View.swift:74:5: warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 72 |     /// see <doc:Declaring-a-Custom-View>.
 73 |     @ViewBuilder
 74 |     @MainActor(unsafe)
    |     `- warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 75 |     var body: Self.Body { get }
 76 | }
[251/252] Compiling OpenSwiftUI UnaryView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SliderStyleKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | private struct SliderStyleKey: EnvironmentKey {
10 |     static let defaultValue = AnySliderStyle.default
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SystemSliderStyle.swift:17:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | extension AnySliderStyle {
17 |     static let `default` = AnySliderStyle(style: SystemSliderStyle())
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:30:24: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
    |                        |- warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'properties' 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 |     private static var isInitialized = false
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:31:24: warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
 31 |     private static var isInitialized = false
    |                        |- warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isInitialized' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isInitialized' 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 |
 33 |     @inline(__always)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:94:27: warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 92 |         }
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
    |                           |- warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'type' 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
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:95:27: warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
    |                           |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'value' 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
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:96:27: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
    |                           |- warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'transform' 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
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:97:27: warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
    |                           |- warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'position' 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
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:98:27: warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
    |                           |- warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'size' 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
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:99:27: warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
    |                           |- warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'environment' 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
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:100:27: warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
    |                           |- warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'phase' 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
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:101:27: warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
    |                           |- warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'layoutComputer' 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
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:102:27: warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
    |                           |- warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'displayList' 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
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:103:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
    |                           |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'all' 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
104 |     }
105 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Text/Font/TODO/Font.swift:24:23: warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | @frozen
 4 | public struct Font: Hashable {
   |               `- note: consider making struct 'Font' conform to the 'Sendable' protocol
 5 |     @usableFromInline
 6 |     var provider: AnyFontBox
   :
22 |
23 |     // FIXME
24 |     public static let body = Font(provider: TextStyleProvider(textStyle: .body, design: .default))
   |                       |- warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'body' 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 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Graphic/Color/ColorSchema.swift:17:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | //  ID: 387C753F3FFD2899BCB77252214CFCC6
 8 |
 9 | public enum ColorScheme: Hashable, CaseIterable {
   |             `- note: consider making enum 'ColorScheme' conform to the 'Sendable' protocol
10 |     case light
11 |     case dark
   :
15 |
16 | private struct ColorSchemeKey: EnvironmentKey {
17 |     static let defaultValue: ColorScheme = .light
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/Core/View/View.swift:74:5: warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 72 |     /// see <doc:Declaring-a-Custom-View>.
 73 |     @ViewBuilder
 74 |     @MainActor(unsafe)
    |     `- warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 75 |     var body: Self.Body { get }
 76 | }
[252/252] Compiling OpenSwiftUI _VariadicView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SliderStyleKey.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | private struct SliderStyleKey: EnvironmentKey {
10 |     static let defaultValue = AnySliderStyle.default
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/SystemSliderStyle.swift:17:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | extension AnySliderStyle {
17 |     static let `default` = AnySliderStyle(style: SystemSliderStyle())
   |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AnySliderStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'default' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Control/Slider/AnySliderStyle.swift:32:8: note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
30 | }
31 |
32 | struct AnySliderStyle: SliderStyle {
   |        `- note: consider making struct 'AnySliderStyle' conform to the 'Sendable' protocol
33 |     private let box: AnyStyleBox
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:30:24: warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
    |                        |- warning: static property 'properties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'properties' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'properties' 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 |     private static var isInitialized = false
 32 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:31:24: warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | extension _ViewDebug {
 30 |     private static var properties = Properties()
 31 |     private static var isInitialized = false
    |                        |- warning: static property 'isInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isInitialized' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isInitialized' 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 |
 33 |     @inline(__always)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:94:27: warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 92 |         }
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
    |                           |- warning: static property 'type' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'type' 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
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:95:27: warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 93 |
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
    |                           |- warning: static property 'value' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'value' 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
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:96:27: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 94 |         public static let type = Properties(rawValue: 1 << Property.type.rawValue)
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
    |                           |- warning: static property 'transform' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'transform' 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
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:97:27: warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 95 |         public static let value = Properties(rawValue: 1 << Property.value.rawValue)
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
    |                           |- warning: static property 'position' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'position' 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
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:98:27: warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 96 |         public static let transform = Properties(rawValue: 1 << Property.transform.rawValue)
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
    |                           |- warning: static property 'size' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'size' 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
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:99:27: warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 97 |         public static let position = Properties(rawValue: 1 << Property.position.rawValue)
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
    |                           |- warning: static property 'environment' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'environment' 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
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:100:27: warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 98 |         public static let size = Properties(rawValue: 1 << Property.size.rawValue)
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
    |                           |- warning: static property 'phase' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'phase' 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
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:101:27: warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
 99 |         public static let environment = Properties(rawValue: 1 << Property.environment.rawValue)
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
    |                           |- warning: static property 'layoutComputer' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'layoutComputer' 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
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:102:27: warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
100 |         public static let phase = Properties(rawValue: 1 << Property.phase.rawValue)
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
    |                           |- warning: static property 'displayList' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'displayList' 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
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Debug/TODO/ViewDebug.swift:103:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |     }
 87 |
 88 |     public struct Properties: OptionSet {
    |                   `- note: consider making struct 'Properties' conform to the 'Sendable' protocol
 89 |         public let rawValue: UInt32
 90 |         public init(rawValue: UInt32) {
    :
101 |         public static let layoutComputer = Properties(rawValue: 1 << Property.layoutComputer.rawValue)
102 |         public static let displayList = Properties(rawValue: 1 << Property.displayList.rawValue)
103 |         public static let all = Properties(rawValue: 0xFFFF_FFFF)
    |                           |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '_ViewDebug.Properties' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'all' 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
104 |     }
105 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Text/Font/TODO/Font.swift:24:23: warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | @frozen
 4 | public struct Font: Hashable {
   |               `- note: consider making struct 'Font' conform to the 'Sendable' protocol
 5 |     @usableFromInline
 6 |     var provider: AnyFontBox
   :
22 |
23 |     // FIXME
24 |     public static let body = Font(provider: TextStyleProvider(textStyle: .body, design: .default))
   |                       |- warning: static property 'body' is not concurrency-safe because non-'Sendable' type 'Font' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'body' 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 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/View/Graphic/Color/ColorSchema.swift:17:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | //  ID: 387C753F3FFD2899BCB77252214CFCC6
 8 |
 9 | public enum ColorScheme: Hashable, CaseIterable {
   |             `- note: consider making enum 'ColorScheme' conform to the 'Sendable' protocol
10 |     case light
11 |     case dark
   :
15 |
16 | private struct ColorSchemeKey: EnvironmentKey {
17 |     static let defaultValue: ColorScheme = .light
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ColorScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenSwiftUI/Core/View/View.swift:74:5: warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 72 |     /// see <doc:Declaring-a-Custom-View>.
 73 |     @ViewBuilder
 74 |     @MainActor(unsafe)
    |     `- warning: '(unsafe)' global actors are deprecated; use '@preconcurrency' instead; this is an error in the Swift 6 language mode
 75 |     var body: Self.Body { get }
 76 | }
Build complete! (17.48s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-testing",
      "requirement" : {
        "exact" : [
          "0.6.0"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-testing"
    },
    {
      "identity" : "opengraph",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/OpenSwiftUIProject/OpenGraph"
    }
  ],
  "manifest_display_name" : "OpenSwiftUI",
  "name" : "OpenSwiftUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "OpenSwiftUI",
      "targets" : [
        "OpenSwiftUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "OpenSwiftUITests",
      "module_type" : "SwiftTarget",
      "name" : "OpenSwiftUITests",
      "path" : "Tests/OpenSwiftUITests",
      "product_dependencies" : [
        "AttributeGraph",
        "Testing"
      ],
      "sources" : [
        "Accessibility/internal/AccessibilityBoundedNumberTests.swift",
        "COpenSwiftUI/MovableLockTests.swift",
        "Core/Data/BloomFilterTests.swift",
        "Core/Data/Boxes/MutableBoxTests.swift",
        "Core/Data/Location/ConstantLocationTests.swift",
        "Core/Data/Location/FunctionalLocationTests.swift",
        "Core/Data/Location/LocationBoxTests.swift",
        "Core/Data/Location/LocationProjectionCacheTests.swift",
        "Core/Data/Location/LocationTests.swift",
        "Core/Data/LockedPointerTests.swift",
        "Core/Data/Property/PropertyListTests.swift",
        "Core/Data/UnsafeLockedPointerTests.swift",
        "Core/Data/VersionSeedTests.swift",
        "Core/Util/ProtocolDescriptorTests.swift",
        "Data/Environment/EnvironmentValuesOpenURLTests.swift",
        "Data/Model/Binding/BindingOperationsTests.swift",
        "Data/Model/Binding/BindingTests.swift",
        "Data/Model/DynamicProperty/DynamicPropertyCacheTests.swift",
        "Data/Model/DynamicProperty/DynamicPropertyTests.swift",
        "Data/Preference/HostPreferencesKeyTests.swift",
        "Data/Preference/PreferenceKeyTests.swift",
        "Data/Preference/PreferenceListTests.swift",
        "Layout/LayoutAdjustments/Alignment/AlignmentIDTests.swift",
        "Layout/LayoutFundamentals/ProposedSizeTests.swift",
        "Scaffolding.swift",
        "View/Control/Slider/SliderTests.swift",
        "View/Core/Debug/ViewDebugTests.swift",
        "View/Core/InterfaceIdiomTests.swift",
        "View/Graphic/AngleTests.swift",
        "View/Graphic/AxisTests.swift"
      ],
      "target_dependencies" : [
        "OpenSwiftUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenSwiftUITempTests",
      "module_type" : "SwiftTarget",
      "name" : "OpenSwiftUITempTests",
      "path" : "Tests/OpenSwiftUITempTests",
      "product_dependencies" : [
        "AttributeGraph",
        "Testing"
      ],
      "sources" : [
        "Scaffolding.swift"
      ],
      "target_dependencies" : [
        "OpenSwiftUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenSwiftUICompatibilityTests",
      "module_type" : "SwiftTarget",
      "name" : "OpenSwiftUICompatibilityTests",
      "path" : "Tests/OpenSwiftUICompatibilityTests",
      "product_dependencies" : [
        "AttributeGraph",
        "Testing"
      ],
      "sources" : [
        "Data/Environment/EnvironmentValuesTest.swift",
        "Export.swift",
        "Scaffolding.swift",
        "View/View/AnyViewTests.swift"
      ],
      "target_dependencies" : [
        "OpenSwiftUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenSwiftUI",
      "module_type" : "SwiftTarget",
      "name" : "OpenSwiftUI",
      "path" : "Sources/OpenSwiftUI",
      "product_dependencies" : [
        "OpenGraphShims",
        "AttributeGraph"
      ],
      "product_memberships" : [
        "OpenSwiftUI"
      ],
      "sources" : [
        "Accessibility/Modifier/internal/AccessibilityButtonShapeModifier.swift",
        "Accessibility/Modifier/internal/AccessibilityConfigurationModifier.swift",
        "Accessibility/Modifier/internal/AccessibilityLabelModifier.swift",
        "Accessibility/internal/AccessibilityBoundedNumber.swift",
        "Accessibility/internal/AccessibilityNumber.swift",
        "Accessibility/internal/AccessibilityNumeric.swift",
        "Accessibility/internal/AccessibilityPlatformSafe.swift",
        "Accessibility/internal/AccessibilitySliderValue.swift",
        "Accessibility/internal/AccessibilityValue.swift",
        "Accessibility/internal/AccessibilityValueByProxy.swift",
        "Accessibility/internal/AnyAccessibilityValue.swift",
        "Accessibility/internal/AnyAccessibilityValueType.swift",
        "Accessibility/internal/ClosedRange+AccessibilityNumeric.swift",
        "App/App.swift",
        "App/AppDelegate.swift",
        "App/AppGraph.swift",
        "App/FallbackDelegateBox.swift",
        "App/FinishLaunchTestAction.swift",
        "App/LegacyApp.swift",
        "App/OpenSwiftUIApplication.swift",
        "App/ScenePhase.swift",
        "Core/Attribute/AsyncAttribute.swift",
        "Core/Attribute/InvalidatableAttribute.swift",
        "Core/Attribute/RemovableAttribute.swift",
        "Core/BodyAccessor/BodyAccessor.swift",
        "Core/BodyAccessor/BodyAccessorRule.swift",
        "Core/BodyAccessor/ViewBodyAccessor.swift",
        "Core/Codable/CodableProxy.swift",
        "Core/Data/BloomFilter.swift",
        "Core/Data/Boxes/Box.swift",
        "Core/Data/Boxes/HashableWeakBox.swift",
        "Core/Data/Boxes/Indirect.swift",
        "Core/Data/Boxes/MutableBox.swift",
        "Core/Data/Boxes/WeakBox.swift",
        "Core/Data/Destroy/Destroyable.swift",
        "Core/Data/Destroy/DestroyableBox.swift",
        "Core/Data/Location/AnyLocation.swift",
        "Core/Data/Location/ConstantLocation.swift",
        "Core/Data/Location/FunctionalLocation.swift",
        "Core/Data/Location/Location.swift",
        "Core/Data/Location/LocationBox.swift",
        "Core/Data/Location/LocationProjectionCache.swift",
        "Core/Data/Location/ObservableObjectLocation.swift",
        "Core/Data/Location/TODO/StoredLocationBase.swift",
        "Core/Data/LockedPointer.swift",
        "Core/Data/Property/DerivedPropertyKey.swift",
        "Core/Data/Property/PropertyKey.swift",
        "Core/Data/Property/PropertyList.swift",
        "Core/Data/Property/Unmanaged+Extension.swift",
        "Core/Data/UniqueID.swift",
        "Core/Data/UnsafeLockedPointer.swift",
        "Core/Data/VersionSeed.swift",
        "Core/Graph/Extensions/OGGraph.swift",
        "Core/Graph/Extensions/OGSubgraph.swift",
        "Core/Graph/Graph.swift",
        "Core/Graph/GraphDelegate.swift",
        "Core/Graph/GraphHost.swift",
        "Core/Graph/GraphInput.swift",
        "Core/Graph/GraphInputs.swift",
        "Core/Graph/GraphInputsModifier.swift",
        "Core/Graph/GraphMutation.swift",
        "Core/Graph/GraphValue.swift",
        "Core/Log/Log.swift",
        "Core/Log/Signpost.swift",
        "Core/Modifier/SceneModifier/PrimitiveSceneModifier.swift",
        "Core/Modifier/SceneModifier/TODO/_SceneModifier.swift",
        "Core/Modifier/SceneModifier/TODO/_SceneModifier_Content.swift",
        "Core/Modifier/TODO/EmptyModifier.swift",
        "Core/Modifier/TODO/ModifiedContent.swift",
        "Core/Modifier/TODO/StaticIf.swift",
        "Core/Modifier/ViewModifier/PrimitiveViewModifier.swift",
        "Core/Modifier/ViewModifier/SafeAreaInsetsModifier.swift",
        "Core/Modifier/ViewModifier/TODO/ViewModifier.swift",
        "Core/Modifier/ViewModifier/TODO/_EnvironmentKeyWritingModifier.swift",
        "Core/Modifier/ViewModifier/TODO/_ViewModifier_Content.swift",
        "Core/Modifier/ViewModifier/ViewInputPredicate.swift",
        "Core/Render/DisplayLink.swift",
        "Core/Render/DisplayList.swift",
        "Core/Runtime/ProtocolDescriptor.swift",
        "Core/Runtime/TypeConformance.swift",
        "Core/Semantic/Feature.swift",
        "Core/Semantic/SemanticFeature.swift",
        "Core/Semantic/Semantics.swift",
        "Core/Update/Update.swift",
        "Core/Util/Comparable+Extension.swift",
        "Core/Util/Defaultable.swift",
        "Core/Util/EnvironmentHelper.swift",
        "Core/Util/Time.swift",
        "Core/Util/Tracing.swift",
        "Core/Util/Utils.swift",
        "Core/View/CustomView.swift",
        "Core/View/IdentifiedViewProxy.swift",
        "Core/View/InterfaceIdiom.swift",
        "Core/View/PrimitiveView.swift",
        "Core/View/TODO/ViewInputBoolFlag.swift",
        "Core/View/TODO/_ConditionalContent.swift",
        "Core/View/TODO/_ViewListCountInputs.swift",
        "Core/View/TODO/_ViewListInputs.swift",
        "Core/View/TODO/_ViewListOutputs.swift",
        "Core/View/View.swift",
        "Core/View/ViewAlias.swift",
        "Core/View/ViewBuilder.swift",
        "Core/View/ViewGraph.swift",
        "Core/View/ViewGraphDelegate.swift",
        "Core/View/ViewInput.swift",
        "Core/View/ViewInputs.swift",
        "Core/View/ViewOutputs.swift",
        "Core/View/ViewRendererHost.swift",
        "Core/View/ViewVisitor.swift",
        "Data/Environment/CachedEnvironment.swift",
        "Data/Environment/DerivedEnvironmentKey.swift",
        "Data/Environment/Environment.swift",
        "Data/Environment/EnvironmentKey.swift",
        "Data/Environment/EnvironmentKeyTransformModifier.swift",
        "Data/Environment/EnvironmentValues.swift",
        "Data/Model/Binding/Binding.swift",
        "Data/Model/Binding/BindingOperations.swift",
        "Data/Model/Binding/Projection.swift",
        "Data/Model/DynamicProperty/DynamicProperty.swift",
        "Data/Model/DynamicProperty/DynamicPropertyBehaviors.swift",
        "Data/Model/DynamicProperty/DynamicPropertyBox.swift",
        "Data/Model/DynamicProperty/DynamicPropertyBuffer.swift",
        "Data/Model/DynamicProperty/DynamicPropertyCache.swift",
        "Data/Model/State/ObservedObject.swift",
        "Data/Model/State/State.swift",
        "Data/Model/State/StateObject.swift",
        "Data/Preference/AnyPreferenceKey.swift",
        "Data/Preference/HostPreferencesKey.swift",
        "Data/Preference/PreferenceBridge.swift",
        "Data/Preference/PreferenceKey.swift",
        "Data/Preference/PreferenceKeyVisitor.swift",
        "Data/Preference/PreferenceKeys.swift",
        "Data/Preference/PreferenceList.swift",
        "Data/Preference/PreferencesCombiner.swift",
        "Data/Preference/PreferencesInputs.swift",
        "Data/Preference/PreferencesOutputs.swift",
        "Data/Preference/TODO/_PreferenceTransformModifier.swift",
        "Data/Preference/TODO/_PreferenceWritingModifier.swift",
        "Data/Preference/View_Preference.swift",
        "EventHandling/Focus/FocusState.swift",
        "EventHandling/Focus/FocusStore.swift",
        "EventHandling/Focus/FocusStoreLocation.swift",
        "EventHandling/Focus/FocusedValueKey.swift",
        "EventHandling/InputEvent/KeyboardShortcut/EventModifiers.swift",
        "EventHandling/InputEvent/KeyboardShortcut/KeyEquivalent.swift",
        "EventHandling/InputEvent/KeyboardShortcut/TODO/KeyboardShortcut.swift",
        "EventHandling/SystemEvent/OpenURLAction.swift",
        "Integration/UIKit/AnyUIHostingView.swift",
        "Integration/UIKit/UIGraphicsView.swift",
        "Integration/UIKit/UIHostingController.swift",
        "Integration/UIKit/UIHostingView.swift",
        "Integration/UIKit/UIHostingViewable.swift",
        "Layout/LayoutAdjustments/Alignment/AlignmentID.swift",
        "Layout/LayoutAdjustments/Alignment/AlignmentKey.swift",
        "Layout/LayoutAdjustments/Alignment/HorizontalAlignment.swift",
        "Layout/LayoutAdjustments/Alignment/VerticalAlignment.swift",
        "Layout/LayoutAdjustments/Alignment/ViewDimensions.swift",
        "Layout/LayoutAdjustments/Direction/LayoutDirection.swift",
        "Layout/LayoutAdjustments/Edge/Edge.swift",
        "Layout/LayoutAdjustments/Edge/EdgeInsets.swift",
        "Layout/LayoutAdjustments/Edge/SafeAreaInsets.swift",
        "Layout/LayoutAdjustments/Edge/SafeAreaRegions.swift",
        "Layout/LayoutFundamentals/Separators/Divider.swift",
        "Layout/LayoutFundamentals/Separators/Spacer.swift",
        "Layout/LayoutFundamentals/Stack/HStack.swift",
        "Layout/LayoutFundamentals/Stack/_HStackLayout.swift",
        "Layout/LayoutFundamentals/internal/LayoutComputer.swift",
        "Layout/LayoutFundamentals/internal/ProjectionTransform.swift",
        "Layout/LayoutFundamentals/internal/ProposedSize.swift",
        "Layout/LayoutFundamentals/internal/SizeThatFitsObserver.swift",
        "Layout/LayoutFundamentals/internal/Spacing.swift",
        "Layout/LayoutFundamentals/internal/ViewFrame.swift",
        "Layout/LayoutFundamentals/internal/ViewGeometry.swift",
        "Layout/LayoutFundamentals/internal/ViewOrigin.swift",
        "Layout/LayoutFundamentals/internal/ViewSize.swift",
        "Layout/LayoutFundamentals/internal/ViewTransform.swift",
        "Scene/Core/PrimitiveScene.swift",
        "Scene/Core/Scene.swift",
        "Scene/Core/SceneBuilder.swift",
        "Scene/Core/SceneInput.swift",
        "Scene/Core/_SceneInputs.swift",
        "Scene/Core/_SceneOutputs.swift",
        "Scene/WindowGroup.swift",
        "Test/TestApp.swift",
        "Test/TestIDView.swift",
        "Test/TestingAppDelegate.swift",
        "Test/_Benchmark.swift",
        "Test/_BenchmarkHost.swift",
        "Test/_PerformanceTest.swift",
        "Test/_Test.swift",
        "View/Animation/AnimatablePair.swift",
        "View/Animation/EmptyAnimatableData.swift",
        "View/Animation/TODO/Animatable.swift",
        "View/Animation/TODO/AnimatableModifier.swift",
        "View/Animation/TODO/Animation.swift",
        "View/Animation/TODO/_AnimatableView.swift",
        "View/Animation/VectorArithmetic.swift",
        "View/Animation/_VectorMath.swift",
        "View/Control/Button/Button.swift",
        "View/Control/Button/ButtonStyle/ButtonDefaultRenderingModeModifier.swift",
        "View/Control/Button/ButtonStyle/ButtonRole.swift",
        "View/Control/Button/ButtonStyle/ButtonStyle.swift",
        "View/Control/Button/ButtonStyle/ButtonStyleConfiguration.swift",
        "View/Control/Button/ButtonStyle/ButtonStyleConvertible.swift",
        "View/Control/Button/ButtonStyle/PrimitiveButtonStyle.swift",
        "View/Control/Button/ButtonStyle/PrimitiveButtonStyleConfiguration.swift",
        "View/Control/Button/ButtonStyle/TODO/BorderlessButtonStyle.swift",
        "View/Control/Button/ButtonStyle/TODO/PlainButtonStyle.swift",
        "View/Control/ControlSize/ControlSize.swift",
        "View/Control/ControlSize/ControlSizeKey.swift",
        "View/Control/EnabledKey.swift",
        "View/Control/Link/Link.swift",
        "View/Control/Link/LinkDestination.swift",
        "View/Control/Link/OpenURLActionKey.swift",
        "View/Control/Slider/AnySliderStyle.swift",
        "View/Control/Slider/Slider.swift",
        "View/Control/Slider/SliderStyleKey.swift",
        "View/Control/Slider/SystemSliderStyle.swift",
        "View/Debug/TODO/CustomViewDebugValueConvertible.swift",
        "View/Debug/TODO/ViewDebug.swift",
        "View/Debug/TODO/printChange.swift",
        "View/Extension/View_Font.swift",
        "View/Extension/View_Opacity.swift",
        "View/Graphic/Color/ColorSchema.swift",
        "View/Graphic/Data/Angle.swift",
        "View/Graphic/Data/Axis.swift",
        "View/Shape/Path.swift",
        "View/Text/Font/TODO/Font.swift",
        "View/Text/Text/TODO/AnyTextStorage.swift",
        "View/Text/Text/TODO/Text.swift",
        "View/Transaction/Transaction+Animation.swift",
        "View/Transaction/Transaction+isContinuous.swift",
        "View/Transaction/Transaction.swift",
        "View/Transaction/TransactionHostProvider.swift",
        "View/View/AnyView.swift",
        "View/View/EmptyView.swift",
        "View/View/TupleView.swift",
        "View/View/UnaryView.swift",
        "View/View/_VariadicView.swift"
      ],
      "target_dependencies" : [
        "COpenSwiftUI",
        "CoreServices"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreServices",
      "module_type" : "BinaryTarget",
      "name" : "CoreServices",
      "path" : "PrivateFrameworks/CoreServices.xcframework",
      "product_memberships" : [
        "OpenSwiftUI"
      ],
      "sources" : [
      ],
      "type" : "binary"
    },
    {
      "c99name" : "COpenSwiftUI",
      "module_type" : "ClangTarget",
      "name" : "COpenSwiftUI",
      "path" : "Sources/COpenSwiftUI",
      "product_memberships" : [
        "OpenSwiftUI"
      ],
      "sources" : [
        "LockedPointer.c",
        "MovableLock.c",
        "ProtocolDescriptor.c",
        "TLS.c",
        "dyld_Private.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CGTK",
      "module_type" : "SystemLibraryTarget",
      "name" : "CGTK",
      "path" : "Sources/CGTK",
      "sources" : [
      ],
      "type" : "system-target"
    }
  ],
  "tools_version" : "5.10"
}
Done.