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 SkiaKit, reference main (bad7d4), with Swift 6.1 for iOS using Xcode 16.3 on 27 Apr 2025 15:57:20 UTC.

Swift 6 data race errors: 149

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SkiaKit -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: note: add '@MainActor' to make static property 'normal' part of global actor 'MainActor'
    public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:59:23: warning: static property 'bold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:59:23: note: convert 'bold' to a 'let' constant to make 'Sendable' shared state immutable
    public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:59:23: note: add '@MainActor' to make static property 'bold' part of global actor 'MainActor'
    public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:61:23: warning: static property 'italic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:61:23: note: convert 'italic' to a 'let' constant to make 'Sendable' shared state immutable
    public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:61:23: note: add '@MainActor' to make static property 'italic' part of global actor 'MainActor'
    public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:63:23: warning: static property 'boldItalic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:63:23: note: convert 'boldItalic' to a 'let' constant to make 'Sendable' shared state immutable
    public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:63:23: note: add '@MainActor' to make static property 'boldItalic' part of global actor 'MainActor'
    public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: note: add '@MainActor' to make static property 'defaultTypeface' part of global actor 'MainActor'
    static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Data.swift,\ Definitions.swift,\ Font.swift,\ FontManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Data.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Definitions.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Font.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontManager.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Data.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Definitions.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Font.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontManager.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:25:23: warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:25:23: note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
    public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:25:23: note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
    public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/FontManager.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Color.swift,\ ColorFilter.swift,\ ColorSpace.swift,\ Colors.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/ColorFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/ColorSpace.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Color.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/ColorFilter.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/ColorSpace.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:16:23: warning: static property 'empty' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var empty = Color (0x00000000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:16:23: note: convert 'empty' to a 'let' constant to make 'Sendable' shared state immutable
    public static var empty = Color (0x00000000)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:16:23: note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
    public static var empty = Color (0x00000000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var empty = Color (0x00000000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:17:23: warning: static property 'aliceBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var aliceBlue = Color (0xFFF0F8FF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:17:23: note: convert 'aliceBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var aliceBlue = Color (0xFFF0F8FF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:17:23: note: add '@MainActor' to make static property 'aliceBlue' part of global actor 'MainActor'
    public static var aliceBlue = Color (0xFFF0F8FF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var aliceBlue = Color (0xFFF0F8FF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:18:23: warning: static property 'antiqueWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var antiqueWhite = Color (0xFFFAEBD7)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:18:23: note: convert 'antiqueWhite' to a 'let' constant to make 'Sendable' shared state immutable
    public static var antiqueWhite = Color (0xFFFAEBD7)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:18:23: note: add '@MainActor' to make static property 'antiqueWhite' part of global actor 'MainActor'
    public static var antiqueWhite = Color (0xFFFAEBD7)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var antiqueWhite = Color (0xFFFAEBD7)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:19:23: warning: static property 'aqua' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var aqua = Color (0xFF00FFFF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:19:23: note: convert 'aqua' to a 'let' constant to make 'Sendable' shared state immutable
    public static var aqua = Color (0xFF00FFFF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:19:23: note: add '@MainActor' to make static property 'aqua' part of global actor 'MainActor'
    public static var aqua = Color (0xFF00FFFF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var aqua = Color (0xFF00FFFF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:20:23: warning: static property 'aquamarine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var aquamarine = Color (0xFF7FFFD4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:20:23: note: convert 'aquamarine' to a 'let' constant to make 'Sendable' shared state immutable
    public static var aquamarine = Color (0xFF7FFFD4)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:20:23: note: add '@MainActor' to make static property 'aquamarine' part of global actor 'MainActor'
    public static var aquamarine = Color (0xFF7FFFD4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var aquamarine = Color (0xFF7FFFD4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:21:23: warning: static property 'azure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var azure = Color (0xFFF0FFFF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:21:23: note: convert 'azure' to a 'let' constant to make 'Sendable' shared state immutable
    public static var azure = Color (0xFFF0FFFF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:21:23: note: add '@MainActor' to make static property 'azure' part of global actor 'MainActor'
    public static var azure = Color (0xFFF0FFFF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var azure = Color (0xFFF0FFFF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:22:23: warning: static property 'beige' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var beige = Color (0xFFF5F5DC)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:22:23: note: convert 'beige' to a 'let' constant to make 'Sendable' shared state immutable
    public static var beige = Color (0xFFF5F5DC)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:22:23: note: add '@MainActor' to make static property 'beige' part of global actor 'MainActor'
    public static var beige = Color (0xFFF5F5DC)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var beige = Color (0xFFF5F5DC)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:23:23: warning: static property 'bisque' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var bisque = Color (0xFFFFE4C4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:23:23: note: convert 'bisque' to a 'let' constant to make 'Sendable' shared state immutable
    public static var bisque = Color (0xFFFFE4C4)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:23:23: note: add '@MainActor' to make static property 'bisque' part of global actor 'MainActor'
    public static var bisque = Color (0xFFFFE4C4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var bisque = Color (0xFFFFE4C4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:24:23: warning: static property 'black' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var black = Color (0xFF000000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:24:23: note: convert 'black' to a 'let' constant to make 'Sendable' shared state immutable
    public static var black = Color (0xFF000000)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:24:23: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
    public static var black = Color (0xFF000000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var black = Color (0xFF000000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:25:23: warning: static property 'blanchedAlmond' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var blanchedAlmond = Color (0xFFFFEBCD)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:25:23: note: convert 'blanchedAlmond' to a 'let' constant to make 'Sendable' shared state immutable
    public static var blanchedAlmond = Color (0xFFFFEBCD)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:25:23: note: add '@MainActor' to make static property 'blanchedAlmond' part of global actor 'MainActor'
    public static var blanchedAlmond = Color (0xFFFFEBCD)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var blanchedAlmond = Color (0xFFFFEBCD)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:26:23: warning: static property 'blue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var blue = Color (0xFF0000FF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:26:23: note: convert 'blue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var blue = Color (0xFF0000FF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:26:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static var blue = Color (0xFF0000FF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var blue = Color (0xFF0000FF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:27:23: warning: static property 'blueViolet' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var blueViolet = Color (0xFF8A2BE2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:27:23: note: convert 'blueViolet' to a 'let' constant to make 'Sendable' shared state immutable
    public static var blueViolet = Color (0xFF8A2BE2)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:27:23: note: add '@MainActor' to make static property 'blueViolet' part of global actor 'MainActor'
    public static var blueViolet = Color (0xFF8A2BE2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var blueViolet = Color (0xFF8A2BE2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:28:23: warning: static property 'brown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var brown = Color (0xFFA52A2A)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:28:23: note: convert 'brown' to a 'let' constant to make 'Sendable' shared state immutable
    public static var brown = Color (0xFFA52A2A)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:28:23: note: add '@MainActor' to make static property 'brown' part of global actor 'MainActor'
    public static var brown = Color (0xFFA52A2A)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var brown = Color (0xFFA52A2A)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:29:23: warning: static property 'burlyWood' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var burlyWood = Color (0xFFDEB887)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:29:23: note: convert 'burlyWood' to a 'let' constant to make 'Sendable' shared state immutable
    public static var burlyWood = Color (0xFFDEB887)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:29:23: note: add '@MainActor' to make static property 'burlyWood' part of global actor 'MainActor'
    public static var burlyWood = Color (0xFFDEB887)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var burlyWood = Color (0xFFDEB887)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:30:23: warning: static property 'cadetBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var cadetBlue = Color (0xFF5F9EA0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:30:23: note: convert 'cadetBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var cadetBlue = Color (0xFF5F9EA0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:30:23: note: add '@MainActor' to make static property 'cadetBlue' part of global actor 'MainActor'
    public static var cadetBlue = Color (0xFF5F9EA0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var cadetBlue = Color (0xFF5F9EA0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:31:23: warning: static property 'chartreuse' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var chartreuse = Color (0xFF7FFF00)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:31:23: note: convert 'chartreuse' to a 'let' constant to make 'Sendable' shared state immutable
    public static var chartreuse = Color (0xFF7FFF00)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:31:23: note: add '@MainActor' to make static property 'chartreuse' part of global actor 'MainActor'
    public static var chartreuse = Color (0xFF7FFF00)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var chartreuse = Color (0xFF7FFF00)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:32:23: warning: static property 'chocolate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var chocolate = Color (0xFFD2691E)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:32:23: note: convert 'chocolate' to a 'let' constant to make 'Sendable' shared state immutable
    public static var chocolate = Color (0xFFD2691E)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:32:23: note: add '@MainActor' to make static property 'chocolate' part of global actor 'MainActor'
    public static var chocolate = Color (0xFFD2691E)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var chocolate = Color (0xFFD2691E)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:33:23: warning: static property 'coral' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var coral = Color (0xFFFF7F50)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:33:23: note: convert 'coral' to a 'let' constant to make 'Sendable' shared state immutable
    public static var coral = Color (0xFFFF7F50)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:33:23: note: add '@MainActor' to make static property 'coral' part of global actor 'MainActor'
    public static var coral = Color (0xFFFF7F50)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var coral = Color (0xFFFF7F50)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:34:23: warning: static property 'cornflowerBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var cornflowerBlue = Color (0xFF6495ED)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:34:23: note: convert 'cornflowerBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var cornflowerBlue = Color (0xFF6495ED)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:34:23: note: add '@MainActor' to make static property 'cornflowerBlue' part of global actor 'MainActor'
    public static var cornflowerBlue = Color (0xFF6495ED)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var cornflowerBlue = Color (0xFF6495ED)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:35:23: warning: static property 'cornsilk' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var cornsilk = Color (0xFFFFF8DC)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:35:23: note: convert 'cornsilk' to a 'let' constant to make 'Sendable' shared state immutable
    public static var cornsilk = Color (0xFFFFF8DC)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:35:23: note: add '@MainActor' to make static property 'cornsilk' part of global actor 'MainActor'
    public static var cornsilk = Color (0xFFFFF8DC)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var cornsilk = Color (0xFFFFF8DC)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:36:23: warning: static property 'crimson' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var crimson = Color (0xFFDC143C)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:36:23: note: convert 'crimson' to a 'let' constant to make 'Sendable' shared state immutable
    public static var crimson = Color (0xFFDC143C)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:36:23: note: add '@MainActor' to make static property 'crimson' part of global actor 'MainActor'
    public static var crimson = Color (0xFFDC143C)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var crimson = Color (0xFFDC143C)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:37:23: warning: static property 'cyan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var cyan = Color (0xFF00FFFF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:37:23: note: convert 'cyan' to a 'let' constant to make 'Sendable' shared state immutable
    public static var cyan = Color (0xFF00FFFF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:37:23: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
    public static var cyan = Color (0xFF00FFFF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var cyan = Color (0xFF00FFFF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:38:23: warning: static property 'darkBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkBlue = Color (0xFF00008b)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:38:23: note: convert 'darkBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkBlue = Color (0xFF00008b)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:38:23: note: add '@MainActor' to make static property 'darkBlue' part of global actor 'MainActor'
    public static var darkBlue = Color (0xFF00008b)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkBlue = Color (0xFF00008b)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:39:23: warning: static property 'darkCyan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkCyan = Color (0xFF008B8B)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:39:23: note: convert 'darkCyan' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkCyan = Color (0xFF008B8B)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:39:23: note: add '@MainActor' to make static property 'darkCyan' part of global actor 'MainActor'
    public static var darkCyan = Color (0xFF008B8B)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkCyan = Color (0xFF008B8B)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:40:23: warning: static property 'darkGoldenrod' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkGoldenrod = Color (0xFFB8860B)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:40:23: note: convert 'darkGoldenrod' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkGoldenrod = Color (0xFFB8860B)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:40:23: note: add '@MainActor' to make static property 'darkGoldenrod' part of global actor 'MainActor'
    public static var darkGoldenrod = Color (0xFFB8860B)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkGoldenrod = Color (0xFFB8860B)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:41:23: warning: static property 'darkGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkGray = Color (0xFFA9A9A9)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:41:23: note: convert 'darkGray' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkGray = Color (0xFFA9A9A9)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:41:23: note: add '@MainActor' to make static property 'darkGray' part of global actor 'MainActor'
    public static var darkGray = Color (0xFFA9A9A9)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkGray = Color (0xFFA9A9A9)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:42:23: warning: static property 'darkGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkGreen = Color (0xFF006400)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:42:23: note: convert 'darkGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkGreen = Color (0xFF006400)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:42:23: note: add '@MainActor' to make static property 'darkGreen' part of global actor 'MainActor'
    public static var darkGreen = Color (0xFF006400)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkGreen = Color (0xFF006400)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:43:23: warning: static property 'darkKhaki' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkKhaki = Color (0xFFBDB76B)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:43:23: note: convert 'darkKhaki' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkKhaki = Color (0xFFBDB76B)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:43:23: note: add '@MainActor' to make static property 'darkKhaki' part of global actor 'MainActor'
    public static var darkKhaki = Color (0xFFBDB76B)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkKhaki = Color (0xFFBDB76B)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:44:23: warning: static property 'darkMagenta' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkMagenta = Color (0xFF8B008B)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:44:23: note: convert 'darkMagenta' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkMagenta = Color (0xFF8B008B)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:44:23: note: add '@MainActor' to make static property 'darkMagenta' part of global actor 'MainActor'
    public static var darkMagenta = Color (0xFF8B008B)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkMagenta = Color (0xFF8B008B)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:45:23: warning: static property 'darkOliveGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkOliveGreen = Color (0xFF556B2F)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:45:23: note: convert 'darkOliveGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkOliveGreen = Color (0xFF556B2F)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:45:23: note: add '@MainActor' to make static property 'darkOliveGreen' part of global actor 'MainActor'
    public static var darkOliveGreen = Color (0xFF556B2F)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkOliveGreen = Color (0xFF556B2F)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:46:23: warning: static property 'darkOrange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkOrange = Color (0xFFFF8C00)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:46:23: note: convert 'darkOrange' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkOrange = Color (0xFFFF8C00)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:46:23: note: add '@MainActor' to make static property 'darkOrange' part of global actor 'MainActor'
    public static var darkOrange = Color (0xFFFF8C00)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkOrange = Color (0xFFFF8C00)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:47:23: warning: static property 'darkOrchid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkOrchid = Color (0xFF9932CC)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:47:23: note: convert 'darkOrchid' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkOrchid = Color (0xFF9932CC)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:47:23: note: add '@MainActor' to make static property 'darkOrchid' part of global actor 'MainActor'
    public static var darkOrchid = Color (0xFF9932CC)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkOrchid = Color (0xFF9932CC)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:48:23: warning: static property 'darkRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkRed = Color (0xFF8B0000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:48:23: note: convert 'darkRed' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkRed = Color (0xFF8B0000)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:48:23: note: add '@MainActor' to make static property 'darkRed' part of global actor 'MainActor'
    public static var darkRed = Color (0xFF8B0000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkRed = Color (0xFF8B0000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:49:23: warning: static property 'darkSalmon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkSalmon = Color (0xFFE9967A)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:49:23: note: convert 'darkSalmon' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkSalmon = Color (0xFFE9967A)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:49:23: note: add '@MainActor' to make static property 'darkSalmon' part of global actor 'MainActor'
    public static var darkSalmon = Color (0xFFE9967A)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkSalmon = Color (0xFFE9967A)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:50:23: warning: static property 'darkSeaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkSeaGreen = Color (0xFF8FBC8B)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:50:23: note: convert 'darkSeaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkSeaGreen = Color (0xFF8FBC8B)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:50:23: note: add '@MainActor' to make static property 'darkSeaGreen' part of global actor 'MainActor'
    public static var darkSeaGreen = Color (0xFF8FBC8B)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkSeaGreen = Color (0xFF8FBC8B)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:51:23: warning: static property 'darkSlateBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkSlateBlue = Color (0xFF483D8B)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:51:23: note: convert 'darkSlateBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkSlateBlue = Color (0xFF483D8B)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:51:23: note: add '@MainActor' to make static property 'darkSlateBlue' part of global actor 'MainActor'
    public static var darkSlateBlue = Color (0xFF483D8B)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkSlateBlue = Color (0xFF483D8B)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:52:23: warning: static property 'darkSlateGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkSlateGray = Color (0xFF2F4F4F)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:52:23: note: convert 'darkSlateGray' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkSlateGray = Color (0xFF2F4F4F)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:52:23: note: add '@MainActor' to make static property 'darkSlateGray' part of global actor 'MainActor'
    public static var darkSlateGray = Color (0xFF2F4F4F)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkSlateGray = Color (0xFF2F4F4F)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:53:23: warning: static property 'darkTurquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkTurquoise = Color (0xFF00CED1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:53:23: note: convert 'darkTurquoise' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkTurquoise = Color (0xFF00CED1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:53:23: note: add '@MainActor' to make static property 'darkTurquoise' part of global actor 'MainActor'
    public static var darkTurquoise = Color (0xFF00CED1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkTurquoise = Color (0xFF00CED1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:54:23: warning: static property 'darkViolet' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var darkViolet = Color (0xFF9400D3)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:54:23: note: convert 'darkViolet' to a 'let' constant to make 'Sendable' shared state immutable
    public static var darkViolet = Color (0xFF9400D3)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:54:23: note: add '@MainActor' to make static property 'darkViolet' part of global actor 'MainActor'
    public static var darkViolet = Color (0xFF9400D3)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var darkViolet = Color (0xFF9400D3)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:55:23: warning: static property 'deepPink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var deepPink = Color (0xFFFF1493)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:55:23: note: convert 'deepPink' to a 'let' constant to make 'Sendable' shared state immutable
    public static var deepPink = Color (0xFFFF1493)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:55:23: note: add '@MainActor' to make static property 'deepPink' part of global actor 'MainActor'
    public static var deepPink = Color (0xFFFF1493)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var deepPink = Color (0xFFFF1493)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:56:23: warning: static property 'deepSkyBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var deepSkyBlue = Color (0xFF00BFFF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:56:23: note: convert 'deepSkyBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var deepSkyBlue = Color (0xFF00BFFF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:56:23: note: add '@MainActor' to make static property 'deepSkyBlue' part of global actor 'MainActor'
    public static var deepSkyBlue = Color (0xFF00BFFF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var deepSkyBlue = Color (0xFF00BFFF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:57:23: warning: static property 'dimGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var dimGray = Color (0xFF696969)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:57:23: note: convert 'dimGray' to a 'let' constant to make 'Sendable' shared state immutable
    public static var dimGray = Color (0xFF696969)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:57:23: note: add '@MainActor' to make static property 'dimGray' part of global actor 'MainActor'
    public static var dimGray = Color (0xFF696969)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var dimGray = Color (0xFF696969)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:58:23: warning: static property 'dodgerBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var dodgerBlue = Color (0xFF1E90FF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:58:23: note: convert 'dodgerBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var dodgerBlue = Color (0xFF1E90FF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:58:23: note: add '@MainActor' to make static property 'dodgerBlue' part of global actor 'MainActor'
    public static var dodgerBlue = Color (0xFF1E90FF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var dodgerBlue = Color (0xFF1E90FF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:59:23: warning: static property 'firebrick' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var firebrick = Color (0xFFB22222)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:59:23: note: convert 'firebrick' to a 'let' constant to make 'Sendable' shared state immutable
    public static var firebrick = Color (0xFFB22222)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:59:23: note: add '@MainActor' to make static property 'firebrick' part of global actor 'MainActor'
    public static var firebrick = Color (0xFFB22222)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var firebrick = Color (0xFFB22222)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:60:23: warning: static property 'floralWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var floralWhite = Color (0xFFFFFAF0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:60:23: note: convert 'floralWhite' to a 'let' constant to make 'Sendable' shared state immutable
    public static var floralWhite = Color (0xFFFFFAF0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:60:23: note: add '@MainActor' to make static property 'floralWhite' part of global actor 'MainActor'
    public static var floralWhite = Color (0xFFFFFAF0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var floralWhite = Color (0xFFFFFAF0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:61:23: warning: static property 'forestGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var forestGreen = Color (0xFF228B22)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:61:23: note: convert 'forestGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var forestGreen = Color (0xFF228B22)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:61:23: note: add '@MainActor' to make static property 'forestGreen' part of global actor 'MainActor'
    public static var forestGreen = Color (0xFF228B22)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var forestGreen = Color (0xFF228B22)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:62:23: warning: static property 'fuchsia' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var fuchsia = Color (0xFFFF00FF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:62:23: note: convert 'fuchsia' to a 'let' constant to make 'Sendable' shared state immutable
    public static var fuchsia = Color (0xFFFF00FF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:62:23: note: add '@MainActor' to make static property 'fuchsia' part of global actor 'MainActor'
    public static var fuchsia = Color (0xFFFF00FF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var fuchsia = Color (0xFFFF00FF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:63:23: warning: static property 'gainsboro' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var gainsboro = Color (0xFFDCDCDC)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:63:23: note: convert 'gainsboro' to a 'let' constant to make 'Sendable' shared state immutable
    public static var gainsboro = Color (0xFFDCDCDC)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:63:23: note: add '@MainActor' to make static property 'gainsboro' part of global actor 'MainActor'
    public static var gainsboro = Color (0xFFDCDCDC)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var gainsboro = Color (0xFFDCDCDC)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:64:23: warning: static property 'ghostWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var ghostWhite = Color (0xFFF8F8FF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:64:23: note: convert 'ghostWhite' to a 'let' constant to make 'Sendable' shared state immutable
    public static var ghostWhite = Color (0xFFF8F8FF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:64:23: note: add '@MainActor' to make static property 'ghostWhite' part of global actor 'MainActor'
    public static var ghostWhite = Color (0xFFF8F8FF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var ghostWhite = Color (0xFFF8F8FF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:65:23: warning: static property 'gold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var gold = Color (0xFFFFD700)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:65:23: note: convert 'gold' to a 'let' constant to make 'Sendable' shared state immutable
    public static var gold = Color (0xFFFFD700)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:65:23: note: add '@MainActor' to make static property 'gold' part of global actor 'MainActor'
    public static var gold = Color (0xFFFFD700)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var gold = Color (0xFFFFD700)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:66:23: warning: static property 'goldenrod' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var goldenrod = Color (0xFFDAA520)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:66:23: note: convert 'goldenrod' to a 'let' constant to make 'Sendable' shared state immutable
    public static var goldenrod = Color (0xFFDAA520)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:66:23: note: add '@MainActor' to make static property 'goldenrod' part of global actor 'MainActor'
    public static var goldenrod = Color (0xFFDAA520)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var goldenrod = Color (0xFFDAA520)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:67:23: warning: static property 'gray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var gray = Color (0xFF808080)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:67:23: note: convert 'gray' to a 'let' constant to make 'Sendable' shared state immutable
    public static var gray = Color (0xFF808080)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:67:23: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
    public static var gray = Color (0xFF808080)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var gray = Color (0xFF808080)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:68:23: warning: static property 'green' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var green = Color (0xFF008000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:68:23: note: convert 'green' to a 'let' constant to make 'Sendable' shared state immutable
    public static var green = Color (0xFF008000)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:68:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static var green = Color (0xFF008000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var green = Color (0xFF008000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:69:23: warning: static property 'greenYellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var greenYellow = Color (0xFFADFF2F)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:69:23: note: convert 'greenYellow' to a 'let' constant to make 'Sendable' shared state immutable
    public static var greenYellow = Color (0xFFADFF2F)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:69:23: note: add '@MainActor' to make static property 'greenYellow' part of global actor 'MainActor'
    public static var greenYellow = Color (0xFFADFF2F)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var greenYellow = Color (0xFFADFF2F)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:70:23: warning: static property 'honeydew' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var honeydew = Color (0xFFF0FFF0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:70:23: note: convert 'honeydew' to a 'let' constant to make 'Sendable' shared state immutable
    public static var honeydew = Color (0xFFF0FFF0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:70:23: note: add '@MainActor' to make static property 'honeydew' part of global actor 'MainActor'
    public static var honeydew = Color (0xFFF0FFF0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var honeydew = Color (0xFFF0FFF0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:71:23: warning: static property 'hotPink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var hotPink = Color (0xFFFF69B4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:71:23: note: convert 'hotPink' to a 'let' constant to make 'Sendable' shared state immutable
    public static var hotPink = Color (0xFFFF69B4)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:71:23: note: add '@MainActor' to make static property 'hotPink' part of global actor 'MainActor'
    public static var hotPink = Color (0xFFFF69B4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var hotPink = Color (0xFFFF69B4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:72:23: warning: static property 'indianRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var indianRed = Color (0xFFCD5C5C)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:72:23: note: convert 'indianRed' to a 'let' constant to make 'Sendable' shared state immutable
    public static var indianRed = Color (0xFFCD5C5C)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:72:23: note: add '@MainActor' to make static property 'indianRed' part of global actor 'MainActor'
    public static var indianRed = Color (0xFFCD5C5C)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var indianRed = Color (0xFFCD5C5C)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:73:23: warning: static property 'indigo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var indigo = Color (0xFF4B0082)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:73:23: note: convert 'indigo' to a 'let' constant to make 'Sendable' shared state immutable
    public static var indigo = Color (0xFF4B0082)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:73:23: note: add '@MainActor' to make static property 'indigo' part of global actor 'MainActor'
    public static var indigo = Color (0xFF4B0082)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:73:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var indigo = Color (0xFF4B0082)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:74:23: warning: static property 'ivory' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var ivory = Color (0xFFFFFFF0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:74:23: note: convert 'ivory' to a 'let' constant to make 'Sendable' shared state immutable
    public static var ivory = Color (0xFFFFFFF0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:74:23: note: add '@MainActor' to make static property 'ivory' part of global actor 'MainActor'
    public static var ivory = Color (0xFFFFFFF0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var ivory = Color (0xFFFFFFF0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:75:23: warning: static property 'khaki' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var khaki = Color (0xFFF0E68C)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:75:23: note: convert 'khaki' to a 'let' constant to make 'Sendable' shared state immutable
    public static var khaki = Color (0xFFF0E68C)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:75:23: note: add '@MainActor' to make static property 'khaki' part of global actor 'MainActor'
    public static var khaki = Color (0xFFF0E68C)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var khaki = Color (0xFFF0E68C)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:76:23: warning: static property 'lavender' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lavender = Color (0xFFE6E6FA)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:76:23: note: convert 'lavender' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lavender = Color (0xFFE6E6FA)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:76:23: note: add '@MainActor' to make static property 'lavender' part of global actor 'MainActor'
    public static var lavender = Color (0xFFE6E6FA)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lavender = Color (0xFFE6E6FA)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:77:23: warning: static property 'lavenderBlush' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lavenderBlush = Color (0xFFFFF0F5)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:77:23: note: convert 'lavenderBlush' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lavenderBlush = Color (0xFFFFF0F5)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:77:23: note: add '@MainActor' to make static property 'lavenderBlush' part of global actor 'MainActor'
    public static var lavenderBlush = Color (0xFFFFF0F5)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lavenderBlush = Color (0xFFFFF0F5)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:78:23: warning: static property 'lawnGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lawnGreen = Color (0xFF7CFC00)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:78:23: note: convert 'lawnGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lawnGreen = Color (0xFF7CFC00)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:78:23: note: add '@MainActor' to make static property 'lawnGreen' part of global actor 'MainActor'
    public static var lawnGreen = Color (0xFF7CFC00)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lawnGreen = Color (0xFF7CFC00)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:79:23: warning: static property 'lemonChiffon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lemonChiffon = Color (0xFFFFFACD)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:79:23: note: convert 'lemonChiffon' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lemonChiffon = Color (0xFFFFFACD)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:79:23: note: add '@MainActor' to make static property 'lemonChiffon' part of global actor 'MainActor'
    public static var lemonChiffon = Color (0xFFFFFACD)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lemonChiffon = Color (0xFFFFFACD)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:80:23: warning: static property 'lightBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightBlue = Color (0xFFADD8E6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:80:23: note: convert 'lightBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightBlue = Color (0xFFADD8E6)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:80:23: note: add '@MainActor' to make static property 'lightBlue' part of global actor 'MainActor'
    public static var lightBlue = Color (0xFFADD8E6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightBlue = Color (0xFFADD8E6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:81:23: warning: static property 'lightCoral' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightCoral = Color (0xFFF08080)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:81:23: note: convert 'lightCoral' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightCoral = Color (0xFFF08080)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:81:23: note: add '@MainActor' to make static property 'lightCoral' part of global actor 'MainActor'
    public static var lightCoral = Color (0xFFF08080)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:81:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightCoral = Color (0xFFF08080)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:82:23: warning: static property 'lightCyan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightCyan = Color (0xFFE0FFFF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:82:23: note: convert 'lightCyan' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightCyan = Color (0xFFE0FFFF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:82:23: note: add '@MainActor' to make static property 'lightCyan' part of global actor 'MainActor'
    public static var lightCyan = Color (0xFFE0FFFF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightCyan = Color (0xFFE0FFFF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:83:23: warning: static property 'lightGoldenrodYellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:83:23: note: convert 'lightGoldenrodYellow' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:83:23: note: add '@MainActor' to make static property 'lightGoldenrodYellow' part of global actor 'MainActor'
    public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:84:23: warning: static property 'lightGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightGray = Color (0xFFD3D3D3)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:84:23: note: convert 'lightGray' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightGray = Color (0xFFD3D3D3)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:84:23: note: add '@MainActor' to make static property 'lightGray' part of global actor 'MainActor'
    public static var lightGray = Color (0xFFD3D3D3)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightGray = Color (0xFFD3D3D3)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:85:23: warning: static property 'lightGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightGreen = Color (0xFF90EE90)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:85:23: note: convert 'lightGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightGreen = Color (0xFF90EE90)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:85:23: note: add '@MainActor' to make static property 'lightGreen' part of global actor 'MainActor'
    public static var lightGreen = Color (0xFF90EE90)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:85:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightGreen = Color (0xFF90EE90)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:86:23: warning: static property 'lightPink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightPink = Color (0xFFFFB6C1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:86:23: note: convert 'lightPink' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightPink = Color (0xFFFFB6C1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:86:23: note: add '@MainActor' to make static property 'lightPink' part of global actor 'MainActor'
    public static var lightPink = Color (0xFFFFB6C1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightPink = Color (0xFFFFB6C1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:87:23: warning: static property 'lightSalmon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightSalmon = Color (0xFFFFA07A)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:87:23: note: convert 'lightSalmon' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightSalmon = Color (0xFFFFA07A)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:87:23: note: add '@MainActor' to make static property 'lightSalmon' part of global actor 'MainActor'
    public static var lightSalmon = Color (0xFFFFA07A)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:87:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightSalmon = Color (0xFFFFA07A)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:88:23: warning: static property 'lightSeaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightSeaGreen = Color (0xFF20B2AA)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:88:23: note: convert 'lightSeaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightSeaGreen = Color (0xFF20B2AA)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:88:23: note: add '@MainActor' to make static property 'lightSeaGreen' part of global actor 'MainActor'
    public static var lightSeaGreen = Color (0xFF20B2AA)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:88:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightSeaGreen = Color (0xFF20B2AA)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:89:23: warning: static property 'lightSkyBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightSkyBlue = Color (0xFF87CEFA)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:89:23: note: convert 'lightSkyBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightSkyBlue = Color (0xFF87CEFA)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:89:23: note: add '@MainActor' to make static property 'lightSkyBlue' part of global actor 'MainActor'
    public static var lightSkyBlue = Color (0xFF87CEFA)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:89:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightSkyBlue = Color (0xFF87CEFA)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:90:23: warning: static property 'lightSlateGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightSlateGray = Color (0xFF778899)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:90:23: note: convert 'lightSlateGray' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightSlateGray = Color (0xFF778899)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:90:23: note: add '@MainActor' to make static property 'lightSlateGray' part of global actor 'MainActor'
    public static var lightSlateGray = Color (0xFF778899)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightSlateGray = Color (0xFF778899)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:91:23: warning: static property 'lightSteelBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightSteelBlue = Color (0xFFB0C4DE)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:91:23: note: convert 'lightSteelBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightSteelBlue = Color (0xFFB0C4DE)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:91:23: note: add '@MainActor' to make static property 'lightSteelBlue' part of global actor 'MainActor'
    public static var lightSteelBlue = Color (0xFFB0C4DE)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightSteelBlue = Color (0xFFB0C4DE)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:92:23: warning: static property 'lightYellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lightYellow = Color (0xFFFFFFE0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:92:23: note: convert 'lightYellow' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lightYellow = Color (0xFFFFFFE0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:92:23: note: add '@MainActor' to make static property 'lightYellow' part of global actor 'MainActor'
    public static var lightYellow = Color (0xFFFFFFE0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:92:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lightYellow = Color (0xFFFFFFE0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:93:23: warning: static property 'lime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var lime = Color (0xFF00FF00)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:93:23: note: convert 'lime' to a 'let' constant to make 'Sendable' shared state immutable
    public static var lime = Color (0xFF00FF00)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:93:23: note: add '@MainActor' to make static property 'lime' part of global actor 'MainActor'
    public static var lime = Color (0xFF00FF00)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:93:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var lime = Color (0xFF00FF00)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:94:23: warning: static property 'limeGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var limeGreen = Color (0xFF32CD32)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:94:23: note: convert 'limeGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var limeGreen = Color (0xFF32CD32)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:94:23: note: add '@MainActor' to make static property 'limeGreen' part of global actor 'MainActor'
    public static var limeGreen = Color (0xFF32CD32)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var limeGreen = Color (0xFF32CD32)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:95:23: warning: static property 'linen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var linen = Color (0xFFFAF0E6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:95:23: note: convert 'linen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var linen = Color (0xFFFAF0E6)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:95:23: note: add '@MainActor' to make static property 'linen' part of global actor 'MainActor'
    public static var linen = Color (0xFFFAF0E6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var linen = Color (0xFFFAF0E6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:96:23: warning: static property 'magenta' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var magenta = Color (0xFFFF00FF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:96:23: note: convert 'magenta' to a 'let' constant to make 'Sendable' shared state immutable
    public static var magenta = Color (0xFFFF00FF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:96:23: note: add '@MainActor' to make static property 'magenta' part of global actor 'MainActor'
    public static var magenta = Color (0xFFFF00FF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var magenta = Color (0xFFFF00FF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:97:23: warning: static property 'maroon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var maroon = Color (0xFF800000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:97:23: note: convert 'maroon' to a 'let' constant to make 'Sendable' shared state immutable
    public static var maroon = Color (0xFF800000)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:97:23: note: add '@MainActor' to make static property 'maroon' part of global actor 'MainActor'
    public static var maroon = Color (0xFF800000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:97:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var maroon = Color (0xFF800000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:98:23: warning: static property 'mediumAquamarine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mediumAquamarine = Color (0xFF66CDAA)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:98:23: note: convert 'mediumAquamarine' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mediumAquamarine = Color (0xFF66CDAA)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:98:23: note: add '@MainActor' to make static property 'mediumAquamarine' part of global actor 'MainActor'
    public static var mediumAquamarine = Color (0xFF66CDAA)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:98:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mediumAquamarine = Color (0xFF66CDAA)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:99:23: warning: static property 'mediumBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mediumBlue = Color (0xFF0000CD)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:99:23: note: convert 'mediumBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mediumBlue = Color (0xFF0000CD)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:99:23: note: add '@MainActor' to make static property 'mediumBlue' part of global actor 'MainActor'
    public static var mediumBlue = Color (0xFF0000CD)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mediumBlue = Color (0xFF0000CD)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:100:23: warning: static property 'mediumOrchid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mediumOrchid = Color (0xFFBA55D3)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:100:23: note: convert 'mediumOrchid' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mediumOrchid = Color (0xFFBA55D3)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:100:23: note: add '@MainActor' to make static property 'mediumOrchid' part of global actor 'MainActor'
    public static var mediumOrchid = Color (0xFFBA55D3)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:100:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mediumOrchid = Color (0xFFBA55D3)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:101:23: warning: static property 'mediumPurple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mediumPurple = Color (0xFF9370DB)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:101:23: note: convert 'mediumPurple' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mediumPurple = Color (0xFF9370DB)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:101:23: note: add '@MainActor' to make static property 'mediumPurple' part of global actor 'MainActor'
    public static var mediumPurple = Color (0xFF9370DB)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:101:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mediumPurple = Color (0xFF9370DB)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:102:23: warning: static property 'mediumSeaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mediumSeaGreen = Color (0xFF3CB371)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:102:23: note: convert 'mediumSeaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mediumSeaGreen = Color (0xFF3CB371)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:102:23: note: add '@MainActor' to make static property 'mediumSeaGreen' part of global actor 'MainActor'
    public static var mediumSeaGreen = Color (0xFF3CB371)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:102:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mediumSeaGreen = Color (0xFF3CB371)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:103:23: warning: static property 'mediumSlateBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mediumSlateBlue = Color (0xFF7B68EE)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:103:23: note: convert 'mediumSlateBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mediumSlateBlue = Color (0xFF7B68EE)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:103:23: note: add '@MainActor' to make static property 'mediumSlateBlue' part of global actor 'MainActor'
    public static var mediumSlateBlue = Color (0xFF7B68EE)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:103:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mediumSlateBlue = Color (0xFF7B68EE)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:104:23: warning: static property 'mediumSpringGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mediumSpringGreen = Color (0xFF00FA9A)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:104:23: note: convert 'mediumSpringGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mediumSpringGreen = Color (0xFF00FA9A)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:104:23: note: add '@MainActor' to make static property 'mediumSpringGreen' part of global actor 'MainActor'
    public static var mediumSpringGreen = Color (0xFF00FA9A)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:104:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mediumSpringGreen = Color (0xFF00FA9A)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:105:23: warning: static property 'mediumTurquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mediumTurquoise = Color (0xFF48D1CC)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:105:23: note: convert 'mediumTurquoise' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mediumTurquoise = Color (0xFF48D1CC)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:105:23: note: add '@MainActor' to make static property 'mediumTurquoise' part of global actor 'MainActor'
    public static var mediumTurquoise = Color (0xFF48D1CC)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:105:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mediumTurquoise = Color (0xFF48D1CC)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:106:23: warning: static property 'mediumVioletRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mediumVioletRed = Color (0xFFC71585)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:106:23: note: convert 'mediumVioletRed' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mediumVioletRed = Color (0xFFC71585)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:106:23: note: add '@MainActor' to make static property 'mediumVioletRed' part of global actor 'MainActor'
    public static var mediumVioletRed = Color (0xFFC71585)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mediumVioletRed = Color (0xFFC71585)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:107:23: warning: static property 'midnightBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var midnightBlue = Color (0xFF191970)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:107:23: note: convert 'midnightBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var midnightBlue = Color (0xFF191970)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:107:23: note: add '@MainActor' to make static property 'midnightBlue' part of global actor 'MainActor'
    public static var midnightBlue = Color (0xFF191970)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var midnightBlue = Color (0xFF191970)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:108:23: warning: static property 'mintCream' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mintCream = Color (0xFFF5FFFA)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:108:23: note: convert 'mintCream' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mintCream = Color (0xFFF5FFFA)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:108:23: note: add '@MainActor' to make static property 'mintCream' part of global actor 'MainActor'
    public static var mintCream = Color (0xFFF5FFFA)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mintCream = Color (0xFFF5FFFA)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:109:23: warning: static property 'mistyRose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var mistyRose = Color (0xFFFFE4E1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:109:23: note: convert 'mistyRose' to a 'let' constant to make 'Sendable' shared state immutable
    public static var mistyRose = Color (0xFFFFE4E1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:109:23: note: add '@MainActor' to make static property 'mistyRose' part of global actor 'MainActor'
    public static var mistyRose = Color (0xFFFFE4E1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var mistyRose = Color (0xFFFFE4E1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:110:23: warning: static property 'moccasin' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var moccasin = Color (0xFFFFE4B5)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:110:23: note: convert 'moccasin' to a 'let' constant to make 'Sendable' shared state immutable
    public static var moccasin = Color (0xFFFFE4B5)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:110:23: note: add '@MainActor' to make static property 'moccasin' part of global actor 'MainActor'
    public static var moccasin = Color (0xFFFFE4B5)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var moccasin = Color (0xFFFFE4B5)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:111:23: warning: static property 'navajoWhite' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var navajoWhite = Color (0xFFFFDEAD)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:111:23: note: convert 'navajoWhite' to a 'let' constant to make 'Sendable' shared state immutable
    public static var navajoWhite = Color (0xFFFFDEAD)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:111:23: note: add '@MainActor' to make static property 'navajoWhite' part of global actor 'MainActor'
    public static var navajoWhite = Color (0xFFFFDEAD)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:111:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var navajoWhite = Color (0xFFFFDEAD)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:112:23: warning: static property 'navy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var navy = Color (0xFF000080)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:112:23: note: convert 'navy' to a 'let' constant to make 'Sendable' shared state immutable
    public static var navy = Color (0xFF000080)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:112:23: note: add '@MainActor' to make static property 'navy' part of global actor 'MainActor'
    public static var navy = Color (0xFF000080)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:112:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var navy = Color (0xFF000080)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:113:23: warning: static property 'oldLace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var oldLace = Color (0xFFFDF5E6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:113:23: note: convert 'oldLace' to a 'let' constant to make 'Sendable' shared state immutable
    public static var oldLace = Color (0xFFFDF5E6)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:113:23: note: add '@MainActor' to make static property 'oldLace' part of global actor 'MainActor'
    public static var oldLace = Color (0xFFFDF5E6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:113:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var oldLace = Color (0xFFFDF5E6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:114:23: warning: static property 'olive' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var olive = Color (0xFF808000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:114:23: note: convert 'olive' to a 'let' constant to make 'Sendable' shared state immutable
    public static var olive = Color (0xFF808000)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:114:23: note: add '@MainActor' to make static property 'olive' part of global actor 'MainActor'
    public static var olive = Color (0xFF808000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var olive = Color (0xFF808000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:115:23: warning: static property 'oliveDrab' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var oliveDrab = Color (0xFF6B8E23)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:115:23: note: convert 'oliveDrab' to a 'let' constant to make 'Sendable' shared state immutable
    public static var oliveDrab = Color (0xFF6B8E23)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:115:23: note: add '@MainActor' to make static property 'oliveDrab' part of global actor 'MainActor'
    public static var oliveDrab = Color (0xFF6B8E23)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var oliveDrab = Color (0xFF6B8E23)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:116:23: warning: static property 'orange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var orange = Color (0xFFFFA500)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:116:23: note: convert 'orange' to a 'let' constant to make 'Sendable' shared state immutable
    public static var orange = Color (0xFFFFA500)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:116:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static var orange = Color (0xFFFFA500)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var orange = Color (0xFFFFA500)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:117:23: warning: static property 'orangeRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var orangeRed = Color (0xFFFF4500)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:117:23: note: convert 'orangeRed' to a 'let' constant to make 'Sendable' shared state immutable
    public static var orangeRed = Color (0xFFFF4500)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:117:23: note: add '@MainActor' to make static property 'orangeRed' part of global actor 'MainActor'
    public static var orangeRed = Color (0xFFFF4500)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:117:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var orangeRed = Color (0xFFFF4500)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:118:23: warning: static property 'orchid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var orchid = Color (0xFFDA70D6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:118:23: note: convert 'orchid' to a 'let' constant to make 'Sendable' shared state immutable
    public static var orchid = Color (0xFFDA70D6)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:118:23: note: add '@MainActor' to make static property 'orchid' part of global actor 'MainActor'
    public static var orchid = Color (0xFFDA70D6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var orchid = Color (0xFFDA70D6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:119:23: warning: static property 'paleGoldenrod' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var paleGoldenrod = Color (0xFFEEE8AA)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:119:23: note: convert 'paleGoldenrod' to a 'let' constant to make 'Sendable' shared state immutable
    public static var paleGoldenrod = Color (0xFFEEE8AA)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:119:23: note: add '@MainActor' to make static property 'paleGoldenrod' part of global actor 'MainActor'
    public static var paleGoldenrod = Color (0xFFEEE8AA)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:119:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var paleGoldenrod = Color (0xFFEEE8AA)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:120:23: warning: static property 'paleGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var paleGreen = Color (0xFF98FB98)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:120:23: note: convert 'paleGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var paleGreen = Color (0xFF98FB98)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:120:23: note: add '@MainActor' to make static property 'paleGreen' part of global actor 'MainActor'
    public static var paleGreen = Color (0xFF98FB98)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:120:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var paleGreen = Color (0xFF98FB98)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:121:23: warning: static property 'paleTurquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var paleTurquoise = Color (0xFFAFEEEE)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:121:23: note: convert 'paleTurquoise' to a 'let' constant to make 'Sendable' shared state immutable
    public static var paleTurquoise = Color (0xFFAFEEEE)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:121:23: note: add '@MainActor' to make static property 'paleTurquoise' part of global actor 'MainActor'
    public static var paleTurquoise = Color (0xFFAFEEEE)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:121:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var paleTurquoise = Color (0xFFAFEEEE)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:122:23: warning: static property 'paleVioletRed' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var paleVioletRed = Color (0xFFDB7093)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:122:23: note: convert 'paleVioletRed' to a 'let' constant to make 'Sendable' shared state immutable
    public static var paleVioletRed = Color (0xFFDB7093)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:122:23: note: add '@MainActor' to make static property 'paleVioletRed' part of global actor 'MainActor'
    public static var paleVioletRed = Color (0xFFDB7093)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:122:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var paleVioletRed = Color (0xFFDB7093)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:123:23: warning: static property 'papayaWhip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var papayaWhip = Color (0xFFFFEFD5)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:123:23: note: convert 'papayaWhip' to a 'let' constant to make 'Sendable' shared state immutable
    public static var papayaWhip = Color (0xFFFFEFD5)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:123:23: note: add '@MainActor' to make static property 'papayaWhip' part of global actor 'MainActor'
    public static var papayaWhip = Color (0xFFFFEFD5)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:123:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var papayaWhip = Color (0xFFFFEFD5)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:124:23: warning: static property 'peachPuff' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var peachPuff = Color (0xFFFFDAB9)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:124:23: note: convert 'peachPuff' to a 'let' constant to make 'Sendable' shared state immutable
    public static var peachPuff = Color (0xFFFFDAB9)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:124:23: note: add '@MainActor' to make static property 'peachPuff' part of global actor 'MainActor'
    public static var peachPuff = Color (0xFFFFDAB9)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:124:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var peachPuff = Color (0xFFFFDAB9)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:125:23: warning: static property 'peru' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var peru = Color (0xFFCD853F)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:125:23: note: convert 'peru' to a 'let' constant to make 'Sendable' shared state immutable
    public static var peru = Color (0xFFCD853F)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:125:23: note: add '@MainActor' to make static property 'peru' part of global actor 'MainActor'
    public static var peru = Color (0xFFCD853F)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:125:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var peru = Color (0xFFCD853F)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:126:23: warning: static property 'pink' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var pink = Color (0xFFFFC0CB)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:126:23: note: convert 'pink' to a 'let' constant to make 'Sendable' shared state immutable
    public static var pink = Color (0xFFFFC0CB)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:126:23: note: add '@MainActor' to make static property 'pink' part of global actor 'MainActor'
    public static var pink = Color (0xFFFFC0CB)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:126:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var pink = Color (0xFFFFC0CB)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:127:23: warning: static property 'plum' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var plum = Color (0xFFDDA0DD)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:127:23: note: convert 'plum' to a 'let' constant to make 'Sendable' shared state immutable
    public static var plum = Color (0xFFDDA0DD)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:127:23: note: add '@MainActor' to make static property 'plum' part of global actor 'MainActor'
    public static var plum = Color (0xFFDDA0DD)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var plum = Color (0xFFDDA0DD)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:128:23: warning: static property 'powderBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var powderBlue = Color (0xFFB0E0E6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:128:23: note: convert 'powderBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var powderBlue = Color (0xFFB0E0E6)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:128:23: note: add '@MainActor' to make static property 'powderBlue' part of global actor 'MainActor'
    public static var powderBlue = Color (0xFFB0E0E6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var powderBlue = Color (0xFFB0E0E6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:129:23: warning: static property 'purple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var purple = Color (0xFF800080)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:129:23: note: convert 'purple' to a 'let' constant to make 'Sendable' shared state immutable
    public static var purple = Color (0xFF800080)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:129:23: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
    public static var purple = Color (0xFF800080)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:129:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var purple = Color (0xFF800080)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:130:23: warning: static property 'red' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var red = Color (0xFFFF0000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:130:23: note: convert 'red' to a 'let' constant to make 'Sendable' shared state immutable
    public static var red = Color (0xFFFF0000)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:130:23: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
    public static var red = Color (0xFFFF0000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:130:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var red = Color (0xFFFF0000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:131:23: warning: static property 'rosyBrown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var rosyBrown = Color (0xFFBC8F8F)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:131:23: note: convert 'rosyBrown' to a 'let' constant to make 'Sendable' shared state immutable
    public static var rosyBrown = Color (0xFFBC8F8F)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:131:23: note: add '@MainActor' to make static property 'rosyBrown' part of global actor 'MainActor'
    public static var rosyBrown = Color (0xFFBC8F8F)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:131:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var rosyBrown = Color (0xFFBC8F8F)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:132:23: warning: static property 'royalBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var royalBlue = Color (0xFF4169E1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:132:23: note: convert 'royalBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var royalBlue = Color (0xFF4169E1)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:132:23: note: add '@MainActor' to make static property 'royalBlue' part of global actor 'MainActor'
    public static var royalBlue = Color (0xFF4169E1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:132:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var royalBlue = Color (0xFF4169E1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:133:23: warning: static property 'saddleBrown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var saddleBrown = Color (0xFF8B4513)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:133:23: note: convert 'saddleBrown' to a 'let' constant to make 'Sendable' shared state immutable
    public static var saddleBrown = Color (0xFF8B4513)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:133:23: note: add '@MainActor' to make static property 'saddleBrown' part of global actor 'MainActor'
    public static var saddleBrown = Color (0xFF8B4513)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var saddleBrown = Color (0xFF8B4513)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:134:23: warning: static property 'salmon' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var salmon = Color (0xFFFA8072)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:134:23: note: convert 'salmon' to a 'let' constant to make 'Sendable' shared state immutable
    public static var salmon = Color (0xFFFA8072)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:134:23: note: add '@MainActor' to make static property 'salmon' part of global actor 'MainActor'
    public static var salmon = Color (0xFFFA8072)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:134:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var salmon = Color (0xFFFA8072)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:135:23: warning: static property 'sandyBrown' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var sandyBrown = Color (0xFFF4A460)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:135:23: note: convert 'sandyBrown' to a 'let' constant to make 'Sendable' shared state immutable
    public static var sandyBrown = Color (0xFFF4A460)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:135:23: note: add '@MainActor' to make static property 'sandyBrown' part of global actor 'MainActor'
    public static var sandyBrown = Color (0xFFF4A460)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:135:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var sandyBrown = Color (0xFFF4A460)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:136:23: warning: static property 'seaGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var seaGreen = Color (0xFF2E8B57)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:136:23: note: convert 'seaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var seaGreen = Color (0xFF2E8B57)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:136:23: note: add '@MainActor' to make static property 'seaGreen' part of global actor 'MainActor'
    public static var seaGreen = Color (0xFF2E8B57)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var seaGreen = Color (0xFF2E8B57)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:137:23: warning: static property 'seaShell' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var seaShell = Color (0xFFFFF5EE)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:137:23: note: convert 'seaShell' to a 'let' constant to make 'Sendable' shared state immutable
    public static var seaShell = Color (0xFFFFF5EE)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:137:23: note: add '@MainActor' to make static property 'seaShell' part of global actor 'MainActor'
    public static var seaShell = Color (0xFFFFF5EE)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:137:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var seaShell = Color (0xFFFFF5EE)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:138:23: warning: static property 'sienna' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var sienna = Color (0xFFA0522D)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:138:23: note: convert 'sienna' to a 'let' constant to make 'Sendable' shared state immutable
    public static var sienna = Color (0xFFA0522D)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:138:23: note: add '@MainActor' to make static property 'sienna' part of global actor 'MainActor'
    public static var sienna = Color (0xFFA0522D)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:138:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var sienna = Color (0xFFA0522D)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:139:23: warning: static property 'silver' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var silver = Color (0xFFC0C0C0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:139:23: note: convert 'silver' to a 'let' constant to make 'Sendable' shared state immutable
    public static var silver = Color (0xFFC0C0C0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:139:23: note: add '@MainActor' to make static property 'silver' part of global actor 'MainActor'
    public static var silver = Color (0xFFC0C0C0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:139:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var silver = Color (0xFFC0C0C0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:140:23: warning: static property 'skyBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var skyBlue = Color (0xFF87CEEB)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:140:23: note: convert 'skyBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var skyBlue = Color (0xFF87CEEB)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:140:23: note: add '@MainActor' to make static property 'skyBlue' part of global actor 'MainActor'
    public static var skyBlue = Color (0xFF87CEEB)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:140:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var skyBlue = Color (0xFF87CEEB)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:141:23: warning: static property 'slateBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var slateBlue = Color (0xFF6A5ACD)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:141:23: note: convert 'slateBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var slateBlue = Color (0xFF6A5ACD)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:141:23: note: add '@MainActor' to make static property 'slateBlue' part of global actor 'MainActor'
    public static var slateBlue = Color (0xFF6A5ACD)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:141:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var slateBlue = Color (0xFF6A5ACD)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:142:23: warning: static property 'slateGray' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var slateGray = Color (0xFF708090)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:142:23: note: convert 'slateGray' to a 'let' constant to make 'Sendable' shared state immutable
    public static var slateGray = Color (0xFF708090)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:142:23: note: add '@MainActor' to make static property 'slateGray' part of global actor 'MainActor'
    public static var slateGray = Color (0xFF708090)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:142:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var slateGray = Color (0xFF708090)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:143:23: warning: static property 'snow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var snow = Color (0xFFFFFAFA)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:143:23: note: convert 'snow' to a 'let' constant to make 'Sendable' shared state immutable
    public static var snow = Color (0xFFFFFAFA)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:143:23: note: add '@MainActor' to make static property 'snow' part of global actor 'MainActor'
    public static var snow = Color (0xFFFFFAFA)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:143:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var snow = Color (0xFFFFFAFA)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:144:23: warning: static property 'springGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var springGreen = Color (0xFF00FF7F)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:144:23: note: convert 'springGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var springGreen = Color (0xFF00FF7F)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:144:23: note: add '@MainActor' to make static property 'springGreen' part of global actor 'MainActor'
    public static var springGreen = Color (0xFF00FF7F)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:144:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var springGreen = Color (0xFF00FF7F)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:145:23: warning: static property 'steelBlue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var steelBlue = Color (0xFF4682B4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:145:23: note: convert 'steelBlue' to a 'let' constant to make 'Sendable' shared state immutable
    public static var steelBlue = Color (0xFF4682B4)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:145:23: note: add '@MainActor' to make static property 'steelBlue' part of global actor 'MainActor'
    public static var steelBlue = Color (0xFF4682B4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:145:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var steelBlue = Color (0xFF4682B4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:146:23: warning: static property 'tan' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var tan = Color (0xFFD2B48C)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:146:23: note: convert 'tan' to a 'let' constant to make 'Sendable' shared state immutable
    public static var tan = Color (0xFFD2B48C)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:146:23: note: add '@MainActor' to make static property 'tan' part of global actor 'MainActor'
    public static var tan = Color (0xFFD2B48C)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:146:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var tan = Color (0xFFD2B48C)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:147:23: warning: static property 'teal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var teal = Color (0xFF008080)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:147:23: note: convert 'teal' to a 'let' constant to make 'Sendable' shared state immutable
    public static var teal = Color (0xFF008080)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:147:23: note: add '@MainActor' to make static property 'teal' part of global actor 'MainActor'
    public static var teal = Color (0xFF008080)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:147:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var teal = Color (0xFF008080)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:148:23: warning: static property 'thistle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var thistle = Color (0xFFD8BFD8)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:148:23: note: convert 'thistle' to a 'let' constant to make 'Sendable' shared state immutable
    public static var thistle = Color (0xFFD8BFD8)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:148:23: note: add '@MainActor' to make static property 'thistle' part of global actor 'MainActor'
    public static var thistle = Color (0xFFD8BFD8)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:148:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var thistle = Color (0xFFD8BFD8)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:149:23: warning: static property 'tomato' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var tomato = Color (0xFFFF6347)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:149:23: note: convert 'tomato' to a 'let' constant to make 'Sendable' shared state immutable
    public static var tomato = Color (0xFFFF6347)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:149:23: note: add '@MainActor' to make static property 'tomato' part of global actor 'MainActor'
    public static var tomato = Color (0xFFFF6347)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:149:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var tomato = Color (0xFFFF6347)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:150:23: warning: static property 'turquoise' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var turquoise = Color (0xFF40E0D0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:150:23: note: convert 'turquoise' to a 'let' constant to make 'Sendable' shared state immutable
    public static var turquoise = Color (0xFF40E0D0)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:150:23: note: add '@MainActor' to make static property 'turquoise' part of global actor 'MainActor'
    public static var turquoise = Color (0xFF40E0D0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:150:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var turquoise = Color (0xFF40E0D0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:151:23: warning: static property 'violet' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var violet = Color (0xFFEE82EE)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:151:23: note: convert 'violet' to a 'let' constant to make 'Sendable' shared state immutable
    public static var violet = Color (0xFFEE82EE)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:151:23: note: add '@MainActor' to make static property 'violet' part of global actor 'MainActor'
    public static var violet = Color (0xFFEE82EE)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:151:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var violet = Color (0xFFEE82EE)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:152:23: warning: static property 'wheat' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var wheat = Color (0xFFF5DEB3)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:152:23: note: convert 'wheat' to a 'let' constant to make 'Sendable' shared state immutable
    public static var wheat = Color (0xFFF5DEB3)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:152:23: note: add '@MainActor' to make static property 'wheat' part of global actor 'MainActor'
    public static var wheat = Color (0xFFF5DEB3)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:152:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var wheat = Color (0xFFF5DEB3)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:153:23: warning: static property 'white' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var white = Color (0xFFFFFFFF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:153:23: note: convert 'white' to a 'let' constant to make 'Sendable' shared state immutable
    public static var white = Color (0xFFFFFFFF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:153:23: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
    public static var white = Color (0xFFFFFFFF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:153:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var white = Color (0xFFFFFFFF)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:154:23: warning: static property 'whiteSmoke' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var whiteSmoke = Color (0xFFF5F5F5)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:154:23: note: convert 'whiteSmoke' to a 'let' constant to make 'Sendable' shared state immutable
    public static var whiteSmoke = Color (0xFFF5F5F5)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:154:23: note: add '@MainActor' to make static property 'whiteSmoke' part of global actor 'MainActor'
    public static var whiteSmoke = Color (0xFFF5F5F5)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:154:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var whiteSmoke = Color (0xFFF5F5F5)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:155:23: warning: static property 'yellow' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var yellow = Color (0xFFFFFF00)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:155:23: note: convert 'yellow' to a 'let' constant to make 'Sendable' shared state immutable
    public static var yellow = Color (0xFFFFFF00)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:155:23: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
    public static var yellow = Color (0xFFFFFF00)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:155:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var yellow = Color (0xFFFFFF00)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:156:23: warning: static property 'yellowGreen' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var yellowGreen = Color (0xFF9ACD32)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:156:23: note: convert 'yellowGreen' to a 'let' constant to make 'Sendable' shared state immutable
    public static var yellowGreen = Color (0xFF9ACD32)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:156:23: note: add '@MainActor' to make static property 'yellowGreen' part of global actor 'MainActor'
    public static var yellowGreen = Color (0xFF9ACD32)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:156:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var yellowGreen = Color (0xFF9ACD32)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:157:23: warning: static property 'transparent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var transparent = Color (0x00FFFFFF)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:157:23: note: convert 'transparent' to a 'let' constant to make 'Sendable' shared state immutable
    public static var transparent = Color (0x00FFFFFF)
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:157:23: note: add '@MainActor' to make static property 'transparent' part of global actor 'MainActor'
    public static var transparent = Color (0x00FFFFFF)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Colors.swift:157:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var transparent = Color (0x00FFFFFF)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ SurfaceProperties.swift,\ TextBlob.swift,\ Typeface.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/SurfaceProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/SurfaceProperties.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: warning: static property 'defaultTypeface' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: note: add '@MainActor' to make static property 'defaultTypeface' part of global actor 'MainActor'
    static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Typeface.swift:27:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ PictureRecorder.swift,\ Pixmap.swift,\ Region.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/PictureRecorder.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Region.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/PictureRecorder.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Pixmap.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Region.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Paint.swift,\ Path.swift,\ PathEffect.swift,\ Picture.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Paint.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Path.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/PathEffect.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Picture.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Paint.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Path.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/PathEffect.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Picture.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ImageInfo.swift,\ MaskFilter.swift,\ MathTypes.swift,\ Matrix.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/ImageInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/MaskFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Matrix.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/ImageInfo.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/MaskFilter.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/Matrix.swift (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for SkiaKit (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriver\ Compilation\ Requirements SkiaKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SkiaKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSkiaSharp/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ImageInfo.swift, MaskFilter.swift, MathTypes.swift, Matrix.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/SkiaKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit-Swift.h (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/SkiaKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.swiftmodule (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.swiftdoc (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.abi.json (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.swiftsourceinfo (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CSkiaSharp.o (in target 'CSkiaSharp' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CSkiaSharp.o
SwiftDriverJobDiscovery normal arm64 Compiling Data.swift, Definitions.swift, Font.swift, FontManager.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriverJobDiscovery normal arm64 Compiling Paint.swift, Path.swift, PathEffect.swift, Picture.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriverJobDiscovery normal arm64 Compiling RoundRect.swift, SKObject.swift, SKStream.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriverJobDiscovery normal arm64 Compiling PictureRecorder.swift, Pixmap.swift, Region.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriverJobDiscovery normal arm64 Compiling SKString.swift, Shader.swift, Surface.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriverJobDiscovery normal arm64 Compiling SurfaceProperties.swift, TextBlob.swift, Typeface.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriverJobDiscovery normal arm64 Compiling FontStyle.swift, FontStyleSet.swift, Image.swift, ImageFilter.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriverJobDiscovery normal arm64 Compiling SkiaCanvasLayer.swift, SkiaView.swift, Bitmap.swift, Canvas.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriverJobDiscovery normal arm64 Compiling Color.swift, ColorFilter.swift, ColorSpace.swift, Colors.swift (in target 'SkiaKit' from project 'SkiaKit')
SwiftDriver\ Compilation SkiaKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SkiaKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/CSkiaSharp/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/SkiaKit/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.o normal (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.o
ExtractAppIntentsMetadata (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SkiaKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.SkiaKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/SkiaKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/SkiaKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SkiaKit.build/Debug-iphoneos/SkiaKit.build/Objects-normal/arm64/SkiaKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 08:57:19.534 appintentsmetadataprocessor[741:4159] Starting appintentsmetadataprocessor export
2025-04-27 08:57:19.573 appintentsmetadataprocessor[741:4159] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.o (in target 'SkiaKit' from project 'SkiaKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SkiaKit.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SkiaKit",
  "name" : "SkiaKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SkiaKit",
      "targets" : [
        "SkiaKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SkiaKitTests",
      "module_type" : "SwiftTarget",
      "name" : "SkiaKitTests",
      "path" : "Tests/SkiaKitTests",
      "sources" : [
        "SKCanvasTest.swift"
      ],
      "target_dependencies" : [
        "SkiaKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SkiaKit",
      "module_type" : "SwiftTarget",
      "name" : "SkiaKit",
      "path" : "Sources/SkiaKit",
      "product_memberships" : [
        "SkiaKit"
      ],
      "sources" : [
        "Apple/SkiaCanvasLayer.swift",
        "Apple/SkiaView.swift",
        "Bitmap.swift",
        "Canvas.swift",
        "Color.swift",
        "ColorFilter.swift",
        "ColorSpace.swift",
        "Colors.swift",
        "Data.swift",
        "Definitions.swift",
        "Font.swift",
        "FontManager.swift",
        "FontStyle.swift",
        "FontStyleSet.swift",
        "Image.swift",
        "ImageFilter.swift",
        "ImageInfo.swift",
        "MaskFilter.swift",
        "MathTypes.swift",
        "Matrix.swift",
        "Paint.swift",
        "Path.swift",
        "PathEffect.swift",
        "Picture.swift",
        "PictureRecorder.swift",
        "Pixmap.swift",
        "Region.swift",
        "RoundRect.swift",
        "SKObject.swift",
        "SKStream.swift",
        "SKString.swift",
        "Shader.swift",
        "Surface.swift",
        "SurfaceProperties.swift",
        "TextBlob.swift",
        "Typeface.swift"
      ],
      "target_dependencies" : [
        "CSkiaSharp"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CSkiaSharpBinary",
      "module_type" : "BinaryTarget",
      "name" : "CSkiaSharpBinary",
      "path" : "remote/archive/SkiaSharp.xcframework.zip",
      "product_memberships" : [
        "SkiaKit"
      ],
      "sources" : [
      ],
      "type" : "binary"
    },
    {
      "c99name" : "CSkiaSharp",
      "module_type" : "ClangTarget",
      "name" : "CSkiaSharp",
      "path" : "Sources/CSkiaSharp",
      "product_memberships" : [
        "SkiaKit"
      ],
      "sources" : [
        "dummy.m"
      ],
      "target_dependencies" : [
        "CSkiaSharpBinary"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.