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 1.2.5 (befdad), with Swift 6.0 for Linux on 3 Nov 2024 08:25:27 UTC.

Swift 6 data race errors: 148

Build Command

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

Build Log

    |                       |- note: convert 'chartreuse' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'chartreuse' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     public static var chocolate = Color (0xFFD2691E)
 33 |     public static var coral = Color (0xFFFF7F50)
/host/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
 30 |     public static var cadetBlue = Color (0xFF5F9EA0)
 31 |     public static var chartreuse = Color (0xFF7FFF00)
 32 |     public static var chocolate = Color (0xFFD2691E)
    |                       |- 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
    |                       |- note: convert 'chocolate' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'chocolate' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     public static var coral = Color (0xFFFF7F50)
 34 |     public static var cornflowerBlue = Color (0xFF6495ED)
/host/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
 31 |     public static var chartreuse = Color (0xFF7FFF00)
 32 |     public static var chocolate = Color (0xFFD2691E)
 33 |     public static var coral = Color (0xFFFF7F50)
    |                       |- 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
    |                       |- note: convert 'coral' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'coral' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     public static var cornflowerBlue = Color (0xFF6495ED)
 35 |     public static var cornsilk = Color (0xFFFFF8DC)
/host/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
 32 |     public static var chocolate = Color (0xFFD2691E)
 33 |     public static var coral = Color (0xFFFF7F50)
 34 |     public static var cornflowerBlue = Color (0xFF6495ED)
    |                       |- 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
    |                       |- note: convert 'cornflowerBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'cornflowerBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     public static var cornsilk = Color (0xFFFFF8DC)
 36 |     public static var crimson = Color (0xFFDC143C)
/host/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
 33 |     public static var coral = Color (0xFFFF7F50)
 34 |     public static var cornflowerBlue = Color (0xFF6495ED)
 35 |     public static var cornsilk = Color (0xFFFFF8DC)
    |                       |- 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
    |                       |- note: convert 'cornsilk' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'cornsilk' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |     public static var crimson = Color (0xFFDC143C)
 37 |     public static var cyan = Color (0xFF00FFFF)
/host/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
 34 |     public static var cornflowerBlue = Color (0xFF6495ED)
 35 |     public static var cornsilk = Color (0xFFFFF8DC)
 36 |     public static var crimson = Color (0xFFDC143C)
    |                       |- 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
    |                       |- note: convert 'crimson' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'crimson' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static var cyan = Color (0xFF00FFFF)
 38 |     public static var darkBlue = Color (0xFF00008b)
/host/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
 35 |     public static var cornsilk = Color (0xFFFFF8DC)
 36 |     public static var crimson = Color (0xFFDC143C)
 37 |     public static var cyan = Color (0xFF00FFFF)
    |                       |- 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
    |                       |- note: convert 'cyan' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'cyan' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |     public static var darkBlue = Color (0xFF00008b)
 39 |     public static var darkCyan = Color (0xFF008B8B)
/host/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
 36 |     public static var crimson = Color (0xFFDC143C)
 37 |     public static var cyan = Color (0xFF00FFFF)
 38 |     public static var darkBlue = Color (0xFF00008b)
    |                       |- 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
    |                       |- note: convert 'darkBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |     public static var darkCyan = Color (0xFF008B8B)
 40 |     public static var darkGoldenrod = Color (0xFFB8860B)
/host/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
 37 |     public static var cyan = Color (0xFF00FFFF)
 38 |     public static var darkBlue = Color (0xFF00008b)
 39 |     public static var darkCyan = Color (0xFF008B8B)
    |                       |- 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
    |                       |- note: convert 'darkCyan' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkCyan' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |     public static var darkGoldenrod = Color (0xFFB8860B)
 41 |     public static var darkGray = Color (0xFFA9A9A9)
/host/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
 38 |     public static var darkBlue = Color (0xFF00008b)
 39 |     public static var darkCyan = Color (0xFF008B8B)
 40 |     public static var darkGoldenrod = Color (0xFFB8860B)
    |                       |- 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
    |                       |- note: convert 'darkGoldenrod' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkGoldenrod' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |     public static var darkGray = Color (0xFFA9A9A9)
 42 |     public static var darkGreen = Color (0xFF006400)
/host/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
 39 |     public static var darkCyan = Color (0xFF008B8B)
 40 |     public static var darkGoldenrod = Color (0xFFB8860B)
 41 |     public static var darkGray = Color (0xFFA9A9A9)
    |                       |- 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
    |                       |- note: convert 'darkGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     public static var darkGreen = Color (0xFF006400)
 43 |     public static var darkKhaki = Color (0xFFBDB76B)
/host/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
 40 |     public static var darkGoldenrod = Color (0xFFB8860B)
 41 |     public static var darkGray = Color (0xFFA9A9A9)
 42 |     public static var darkGreen = Color (0xFF006400)
    |                       |- 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
    |                       |- note: convert 'darkGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     public static var darkKhaki = Color (0xFFBDB76B)
 44 |     public static var darkMagenta = Color (0xFF8B008B)
/host/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
 41 |     public static var darkGray = Color (0xFFA9A9A9)
 42 |     public static var darkGreen = Color (0xFF006400)
 43 |     public static var darkKhaki = Color (0xFFBDB76B)
    |                       |- 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
    |                       |- note: convert 'darkKhaki' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkKhaki' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |     public static var darkMagenta = Color (0xFF8B008B)
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
/host/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
 42 |     public static var darkGreen = Color (0xFF006400)
 43 |     public static var darkKhaki = Color (0xFFBDB76B)
 44 |     public static var darkMagenta = Color (0xFF8B008B)
    |                       |- 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
    |                       |- note: convert 'darkMagenta' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkMagenta' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
 46 |     public static var darkOrange = Color (0xFFFF8C00)
/host/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
 43 |     public static var darkKhaki = Color (0xFFBDB76B)
 44 |     public static var darkMagenta = Color (0xFF8B008B)
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
    |                       |- 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
    |                       |- note: convert 'darkOliveGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkOliveGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     public static var darkOrange = Color (0xFFFF8C00)
 47 |     public static var darkOrchid = Color (0xFF9932CC)
/host/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
 44 |     public static var darkMagenta = Color (0xFF8B008B)
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
 46 |     public static var darkOrange = Color (0xFFFF8C00)
    |                       |- 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
    |                       |- note: convert 'darkOrange' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkOrange' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |     public static var darkOrchid = Color (0xFF9932CC)
 48 |     public static var darkRed = Color (0xFF8B0000)
/host/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
 45 |     public static var darkOliveGreen = Color (0xFF556B2F)
 46 |     public static var darkOrange = Color (0xFFFF8C00)
 47 |     public static var darkOrchid = Color (0xFF9932CC)
    |                       |- 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
    |                       |- note: convert 'darkOrchid' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkOrchid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |     public static var darkRed = Color (0xFF8B0000)
 49 |     public static var darkSalmon = Color (0xFFE9967A)
/host/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
 46 |     public static var darkOrange = Color (0xFFFF8C00)
 47 |     public static var darkOrchid = Color (0xFF9932CC)
 48 |     public static var darkRed = Color (0xFF8B0000)
    |                       |- 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
    |                       |- note: convert 'darkRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     public static var darkSalmon = Color (0xFFE9967A)
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
/host/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
 47 |     public static var darkOrchid = Color (0xFF9932CC)
 48 |     public static var darkRed = Color (0xFF8B0000)
 49 |     public static var darkSalmon = Color (0xFFE9967A)
    |                       |- 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
    |                       |- note: convert 'darkSalmon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkSalmon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
/host/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
 48 |     public static var darkRed = Color (0xFF8B0000)
 49 |     public static var darkSalmon = Color (0xFFE9967A)
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
    |                       |- 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
    |                       |- note: convert 'darkSeaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkSeaGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
/host/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
 49 |     public static var darkSalmon = Color (0xFFE9967A)
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
    |                       |- 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
    |                       |- note: convert 'darkSlateBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkSlateBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
/host/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
 50 |     public static var darkSeaGreen = Color (0xFF8FBC8B)
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
    |                       |- 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
    |                       |- note: convert 'darkSlateGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkSlateGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
 54 |     public static var darkViolet = Color (0xFF9400D3)
/host/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
 51 |     public static var darkSlateBlue = Color (0xFF483D8B)
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
    |                       |- 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
    |                       |- note: convert 'darkTurquoise' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkTurquoise' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |     public static var darkViolet = Color (0xFF9400D3)
 55 |     public static var deepPink = Color (0xFFFF1493)
/host/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
 52 |     public static var darkSlateGray = Color (0xFF2F4F4F)
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
 54 |     public static var darkViolet = Color (0xFF9400D3)
    |                       |- 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
    |                       |- note: convert 'darkViolet' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'darkViolet' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |     public static var deepPink = Color (0xFFFF1493)
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
/host/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
 53 |     public static var darkTurquoise = Color (0xFF00CED1)
 54 |     public static var darkViolet = Color (0xFF9400D3)
 55 |     public static var deepPink = Color (0xFFFF1493)
    |                       |- 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
    |                       |- note: convert 'deepPink' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'deepPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
 57 |     public static var dimGray = Color (0xFF696969)
/host/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
 54 |     public static var darkViolet = Color (0xFF9400D3)
 55 |     public static var deepPink = Color (0xFFFF1493)
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
    |                       |- 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
    |                       |- note: convert 'deepSkyBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'deepSkyBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |     public static var dimGray = Color (0xFF696969)
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
/host/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
 55 |     public static var deepPink = Color (0xFFFF1493)
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
 57 |     public static var dimGray = Color (0xFF696969)
    |                       |- 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
    |                       |- note: convert 'dimGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'dimGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
 59 |     public static var firebrick = Color (0xFFB22222)
/host/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
 56 |     public static var deepSkyBlue = Color (0xFF00BFFF)
 57 |     public static var dimGray = Color (0xFF696969)
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
    |                       |- 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
    |                       |- note: convert 'dodgerBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'dodgerBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |     public static var firebrick = Color (0xFFB22222)
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
/host/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
 57 |     public static var dimGray = Color (0xFF696969)
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
 59 |     public static var firebrick = Color (0xFFB22222)
    |                       |- 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
    |                       |- note: convert 'firebrick' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'firebrick' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
 61 |     public static var forestGreen = Color (0xFF228B22)
/host/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
 58 |     public static var dodgerBlue = Color (0xFF1E90FF)
 59 |     public static var firebrick = Color (0xFFB22222)
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
    |                       |- 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
    |                       |- note: convert 'floralWhite' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'floralWhite' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |     public static var forestGreen = Color (0xFF228B22)
 62 |     public static var fuchsia = Color (0xFFFF00FF)
/host/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
 59 |     public static var firebrick = Color (0xFFB22222)
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
 61 |     public static var forestGreen = Color (0xFF228B22)
    |                       |- 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
    |                       |- note: convert 'forestGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'forestGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 |     public static var fuchsia = Color (0xFFFF00FF)
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
/host/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
 60 |     public static var floralWhite = Color (0xFFFFFAF0)
 61 |     public static var forestGreen = Color (0xFF228B22)
 62 |     public static var fuchsia = Color (0xFFFF00FF)
    |                       |- 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
    |                       |- note: convert 'fuchsia' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'fuchsia' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
/host/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
 61 |     public static var forestGreen = Color (0xFF228B22)
 62 |     public static var fuchsia = Color (0xFFFF00FF)
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
    |                       |- 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
    |                       |- note: convert 'gainsboro' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'gainsboro' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
 65 |     public static var gold = Color (0xFFFFD700)
/host/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
 62 |     public static var fuchsia = Color (0xFFFF00FF)
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
    |                       |- 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
    |                       |- note: convert 'ghostWhite' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'ghostWhite' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     public static var gold = Color (0xFFFFD700)
 66 |     public static var goldenrod = Color (0xFFDAA520)
/host/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
 63 |     public static var gainsboro = Color (0xFFDCDCDC)
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
 65 |     public static var gold = Color (0xFFFFD700)
    |                       |- 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
    |                       |- note: convert 'gold' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'gold' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |     public static var goldenrod = Color (0xFFDAA520)
 67 |     public static var gray = Color (0xFF808080)
/host/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
 64 |     public static var ghostWhite = Color (0xFFF8F8FF)
 65 |     public static var gold = Color (0xFFFFD700)
 66 |     public static var goldenrod = Color (0xFFDAA520)
    |                       |- 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
    |                       |- note: convert 'goldenrod' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'goldenrod' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |     public static var gray = Color (0xFF808080)
 68 |     public static var green = Color (0xFF008000)
/host/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
 65 |     public static var gold = Color (0xFFFFD700)
 66 |     public static var goldenrod = Color (0xFFDAA520)
 67 |     public static var gray = Color (0xFF808080)
    |                       |- 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
    |                       |- note: convert 'gray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'gray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |     public static var green = Color (0xFF008000)
 69 |     public static var greenYellow = Color (0xFFADFF2F)
/host/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
 66 |     public static var goldenrod = Color (0xFFDAA520)
 67 |     public static var gray = Color (0xFF808080)
 68 |     public static var green = Color (0xFF008000)
    |                       |- 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
    |                       |- note: convert 'green' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'green' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |     public static var greenYellow = Color (0xFFADFF2F)
 70 |     public static var honeydew = Color (0xFFF0FFF0)
/host/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
 67 |     public static var gray = Color (0xFF808080)
 68 |     public static var green = Color (0xFF008000)
 69 |     public static var greenYellow = Color (0xFFADFF2F)
    |                       |- 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
    |                       |- note: convert 'greenYellow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'greenYellow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |     public static var honeydew = Color (0xFFF0FFF0)
 71 |     public static var hotPink = Color (0xFFFF69B4)
/host/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
 68 |     public static var green = Color (0xFF008000)
 69 |     public static var greenYellow = Color (0xFFADFF2F)
 70 |     public static var honeydew = Color (0xFFF0FFF0)
    |                       |- 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
    |                       |- note: convert 'honeydew' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'honeydew' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 |     public static var hotPink = Color (0xFFFF69B4)
 72 |     public static var indianRed = Color (0xFFCD5C5C)
/host/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
 69 |     public static var greenYellow = Color (0xFFADFF2F)
 70 |     public static var honeydew = Color (0xFFF0FFF0)
 71 |     public static var hotPink = Color (0xFFFF69B4)
    |                       |- 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
    |                       |- note: convert 'hotPink' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'hotPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |     public static var indianRed = Color (0xFFCD5C5C)
 73 |     public static var indigo = Color (0xFF4B0082)
/host/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
 70 |     public static var honeydew = Color (0xFFF0FFF0)
 71 |     public static var hotPink = Color (0xFFFF69B4)
 72 |     public static var indianRed = Color (0xFFCD5C5C)
    |                       |- 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
    |                       |- note: convert 'indianRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'indianRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |     public static var indigo = Color (0xFF4B0082)
 74 |     public static var ivory = Color (0xFFFFFFF0)
/host/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
 71 |     public static var hotPink = Color (0xFFFF69B4)
 72 |     public static var indianRed = Color (0xFFCD5C5C)
 73 |     public static var indigo = Color (0xFF4B0082)
    |                       |- 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
    |                       |- note: convert 'indigo' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'indigo' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |     public static var ivory = Color (0xFFFFFFF0)
 75 |     public static var khaki = Color (0xFFF0E68C)
/host/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
 72 |     public static var indianRed = Color (0xFFCD5C5C)
 73 |     public static var indigo = Color (0xFF4B0082)
 74 |     public static var ivory = Color (0xFFFFFFF0)
    |                       |- 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
    |                       |- note: convert 'ivory' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'ivory' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |     public static var khaki = Color (0xFFF0E68C)
 76 |     public static var lavender = Color (0xFFE6E6FA)
/host/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
 73 |     public static var indigo = Color (0xFF4B0082)
 74 |     public static var ivory = Color (0xFFFFFFF0)
 75 |     public static var khaki = Color (0xFFF0E68C)
    |                       |- 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
    |                       |- note: convert 'khaki' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'khaki' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |     public static var lavender = Color (0xFFE6E6FA)
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
/host/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
 74 |     public static var ivory = Color (0xFFFFFFF0)
 75 |     public static var khaki = Color (0xFFF0E68C)
 76 |     public static var lavender = Color (0xFFE6E6FA)
    |                       |- 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
    |                       |- note: convert 'lavender' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lavender' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
/host/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
 75 |     public static var khaki = Color (0xFFF0E68C)
 76 |     public static var lavender = Color (0xFFE6E6FA)
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
    |                       |- 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
    |                       |- note: convert 'lavenderBlush' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lavenderBlush' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
/host/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
 76 |     public static var lavender = Color (0xFFE6E6FA)
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
    |                       |- 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
    |                       |- note: convert 'lawnGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lawnGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
 80 |     public static var lightBlue = Color (0xFFADD8E6)
/host/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
 77 |     public static var lavenderBlush = Color (0xFFFFF0F5)
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
    |                       |- 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
    |                       |- note: convert 'lemonChiffon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lemonChiffon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |     public static var lightBlue = Color (0xFFADD8E6)
 81 |     public static var lightCoral = Color (0xFFF08080)
/host/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
 78 |     public static var lawnGreen = Color (0xFF7CFC00)
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
 80 |     public static var lightBlue = Color (0xFFADD8E6)
    |                       |- 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
    |                       |- note: convert 'lightBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |     public static var lightCoral = Color (0xFFF08080)
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
/host/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
 79 |     public static var lemonChiffon = Color (0xFFFFFACD)
 80 |     public static var lightBlue = Color (0xFFADD8E6)
 81 |     public static var lightCoral = Color (0xFFF08080)
    |                       |- 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
    |                       |- note: convert 'lightCoral' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightCoral' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
/host/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
 80 |     public static var lightBlue = Color (0xFFADD8E6)
 81 |     public static var lightCoral = Color (0xFFF08080)
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
    |                       |- 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
    |                       |- note: convert 'lightCyan' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightCyan' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
 84 |     public static var lightGray = Color (0xFFD3D3D3)
/host/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
 81 |     public static var lightCoral = Color (0xFFF08080)
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
    |                       |- 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
    |                       |- note: convert 'lightGoldenrodYellow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightGoldenrodYellow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |     public static var lightGray = Color (0xFFD3D3D3)
 85 |     public static var lightGreen = Color (0xFF90EE90)
/host/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
 82 |     public static var lightCyan = Color (0xFFE0FFFF)
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
 84 |     public static var lightGray = Color (0xFFD3D3D3)
    |                       |- 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
    |                       |- note: convert 'lightGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |     public static var lightGreen = Color (0xFF90EE90)
 86 |     public static var lightPink = Color (0xFFFFB6C1)
/host/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
 83 |     public static var lightGoldenrodYellow = Color (0xFFFAFAD2)
 84 |     public static var lightGray = Color (0xFFD3D3D3)
 85 |     public static var lightGreen = Color (0xFF90EE90)
    |                       |- 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
    |                       |- note: convert 'lightGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 |     public static var lightPink = Color (0xFFFFB6C1)
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
/host/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
 84 |     public static var lightGray = Color (0xFFD3D3D3)
 85 |     public static var lightGreen = Color (0xFF90EE90)
 86 |     public static var lightPink = Color (0xFFFFB6C1)
    |                       |- 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
    |                       |- note: convert 'lightPink' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
/host/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
 85 |     public static var lightGreen = Color (0xFF90EE90)
 86 |     public static var lightPink = Color (0xFFFFB6C1)
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
    |                       |- 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
    |                       |- note: convert 'lightSalmon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSalmon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
/host/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
 86 |     public static var lightPink = Color (0xFFFFB6C1)
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
    |                       |- 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
    |                       |- note: convert 'lightSeaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSeaGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
 90 |     public static var lightSlateGray = Color (0xFF778899)
/host/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
 87 |     public static var lightSalmon = Color (0xFFFFA07A)
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
    |                       |- 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
    |                       |- note: convert 'lightSkyBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSkyBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 |     public static var lightSlateGray = Color (0xFF778899)
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
/host/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
 88 |     public static var lightSeaGreen = Color (0xFF20B2AA)
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
 90 |     public static var lightSlateGray = Color (0xFF778899)
    |                       |- 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
    |                       |- note: convert 'lightSlateGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSlateGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
/host/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
 89 |     public static var lightSkyBlue = Color (0xFF87CEFA)
 90 |     public static var lightSlateGray = Color (0xFF778899)
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
    |                       |- 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
    |                       |- note: convert 'lightSteelBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightSteelBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
 93 |     public static var lime = Color (0xFF00FF00)
/host/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
 90 |     public static var lightSlateGray = Color (0xFF778899)
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
    |                       |- 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
    |                       |- note: convert 'lightYellow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lightYellow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |     public static var lime = Color (0xFF00FF00)
 94 |     public static var limeGreen = Color (0xFF32CD32)
/host/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
 91 |     public static var lightSteelBlue = Color (0xFFB0C4DE)
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
 93 |     public static var lime = Color (0xFF00FF00)
    |                       |- 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
    |                       |- note: convert 'lime' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'lime' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |     public static var limeGreen = Color (0xFF32CD32)
 95 |     public static var linen = Color (0xFFFAF0E6)
/host/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
 92 |     public static var lightYellow = Color (0xFFFFFFE0)
 93 |     public static var lime = Color (0xFF00FF00)
 94 |     public static var limeGreen = Color (0xFF32CD32)
    |                       |- 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
    |                       |- note: convert 'limeGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'limeGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 |     public static var linen = Color (0xFFFAF0E6)
 96 |     public static var magenta = Color (0xFFFF00FF)
/host/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
 93 |     public static var lime = Color (0xFF00FF00)
 94 |     public static var limeGreen = Color (0xFF32CD32)
 95 |     public static var linen = Color (0xFFFAF0E6)
    |                       |- 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
    |                       |- note: convert 'linen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'linen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |     public static var magenta = Color (0xFFFF00FF)
 97 |     public static var maroon = Color (0xFF800000)
/host/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
 94 |     public static var limeGreen = Color (0xFF32CD32)
 95 |     public static var linen = Color (0xFFFAF0E6)
 96 |     public static var magenta = Color (0xFFFF00FF)
    |                       |- 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
    |                       |- note: convert 'magenta' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'magenta' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |     public static var maroon = Color (0xFF800000)
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
/host/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
 95 |     public static var linen = Color (0xFFFAF0E6)
 96 |     public static var magenta = Color (0xFFFF00FF)
 97 |     public static var maroon = Color (0xFF800000)
    |                       |- 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
    |                       |- note: convert 'maroon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'maroon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
 99 |     public static var mediumBlue = Color (0xFF0000CD)
/host/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
 96 |     public static var magenta = Color (0xFFFF00FF)
 97 |     public static var maroon = Color (0xFF800000)
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
    |                       |- 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
    |                       |- note: convert 'mediumAquamarine' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumAquamarine' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |     public static var mediumBlue = Color (0xFF0000CD)
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
/host/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
 97 |     public static var maroon = Color (0xFF800000)
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
 99 |     public static var mediumBlue = Color (0xFF0000CD)
    |                       |- 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
    |                       |- note: convert 'mediumBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
101 |     public static var mediumPurple = Color (0xFF9370DB)
/host/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
 98 |     public static var mediumAquamarine = Color (0xFF66CDAA)
 99 |     public static var mediumBlue = Color (0xFF0000CD)
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
    |                       |- 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
    |                       |- note: convert 'mediumOrchid' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumOrchid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |     public static var mediumPurple = Color (0xFF9370DB)
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
/host/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
 99 |     public static var mediumBlue = Color (0xFF0000CD)
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
101 |     public static var mediumPurple = Color (0xFF9370DB)
    |                       |- 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
    |                       |- note: convert 'mediumPurple' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumPurple' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
/host/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
100 |     public static var mediumOrchid = Color (0xFFBA55D3)
101 |     public static var mediumPurple = Color (0xFF9370DB)
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
    |                       |- 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
    |                       |- note: convert 'mediumSeaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumSeaGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
/host/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
101 |     public static var mediumPurple = Color (0xFF9370DB)
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
    |                       |- 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
    |                       |- note: convert 'mediumSlateBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumSlateBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
/host/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
102 |     public static var mediumSeaGreen = Color (0xFF3CB371)
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
    |                       |- 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
    |                       |- note: convert 'mediumSpringGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumSpringGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
106 |     public static var mediumVioletRed = Color (0xFFC71585)
/host/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
103 |     public static var mediumSlateBlue = Color (0xFF7B68EE)
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
    |                       |- 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
    |                       |- note: convert 'mediumTurquoise' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumTurquoise' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |     public static var mediumVioletRed = Color (0xFFC71585)
107 |     public static var midnightBlue = Color (0xFF191970)
/host/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
104 |     public static var mediumSpringGreen = Color (0xFF00FA9A)
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
106 |     public static var mediumVioletRed = Color (0xFFC71585)
    |                       |- 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
    |                       |- note: convert 'mediumVioletRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mediumVioletRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 |     public static var midnightBlue = Color (0xFF191970)
108 |     public static var mintCream = Color (0xFFF5FFFA)
/host/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
105 |     public static var mediumTurquoise = Color (0xFF48D1CC)
106 |     public static var mediumVioletRed = Color (0xFFC71585)
107 |     public static var midnightBlue = Color (0xFF191970)
    |                       |- 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
    |                       |- note: convert 'midnightBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'midnightBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |     public static var mintCream = Color (0xFFF5FFFA)
109 |     public static var mistyRose = Color (0xFFFFE4E1)
/host/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
106 |     public static var mediumVioletRed = Color (0xFFC71585)
107 |     public static var midnightBlue = Color (0xFF191970)
108 |     public static var mintCream = Color (0xFFF5FFFA)
    |                       |- 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
    |                       |- note: convert 'mintCream' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mintCream' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |     public static var mistyRose = Color (0xFFFFE4E1)
110 |     public static var moccasin = Color (0xFFFFE4B5)
/host/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
107 |     public static var midnightBlue = Color (0xFF191970)
108 |     public static var mintCream = Color (0xFFF5FFFA)
109 |     public static var mistyRose = Color (0xFFFFE4E1)
    |                       |- 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
    |                       |- note: convert 'mistyRose' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'mistyRose' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |     public static var moccasin = Color (0xFFFFE4B5)
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
/host/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
108 |     public static var mintCream = Color (0xFFF5FFFA)
109 |     public static var mistyRose = Color (0xFFFFE4E1)
110 |     public static var moccasin = Color (0xFFFFE4B5)
    |                       |- 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
    |                       |- note: convert 'moccasin' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'moccasin' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
112 |     public static var navy = Color (0xFF000080)
/host/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
109 |     public static var mistyRose = Color (0xFFFFE4E1)
110 |     public static var moccasin = Color (0xFFFFE4B5)
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
    |                       |- 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
    |                       |- note: convert 'navajoWhite' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'navajoWhite' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |     public static var navy = Color (0xFF000080)
113 |     public static var oldLace = Color (0xFFFDF5E6)
/host/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
110 |     public static var moccasin = Color (0xFFFFE4B5)
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
112 |     public static var navy = Color (0xFF000080)
    |                       |- 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
    |                       |- note: convert 'navy' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'navy' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     public static var oldLace = Color (0xFFFDF5E6)
114 |     public static var olive = Color (0xFF808000)
/host/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
111 |     public static var navajoWhite = Color (0xFFFFDEAD)
112 |     public static var navy = Color (0xFF000080)
113 |     public static var oldLace = Color (0xFFFDF5E6)
    |                       |- 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
    |                       |- note: convert 'oldLace' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'oldLace' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |     public static var olive = Color (0xFF808000)
115 |     public static var oliveDrab = Color (0xFF6B8E23)
/host/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
112 |     public static var navy = Color (0xFF000080)
113 |     public static var oldLace = Color (0xFFFDF5E6)
114 |     public static var olive = Color (0xFF808000)
    |                       |- 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
    |                       |- note: convert 'olive' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'olive' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     public static var oliveDrab = Color (0xFF6B8E23)
116 |     public static var orange = Color (0xFFFFA500)
/host/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
113 |     public static var oldLace = Color (0xFFFDF5E6)
114 |     public static var olive = Color (0xFF808000)
115 |     public static var oliveDrab = Color (0xFF6B8E23)
    |                       |- 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
    |                       |- note: convert 'oliveDrab' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'oliveDrab' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
116 |     public static var orange = Color (0xFFFFA500)
117 |     public static var orangeRed = Color (0xFFFF4500)
/host/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
114 |     public static var olive = Color (0xFF808000)
115 |     public static var oliveDrab = Color (0xFF6B8E23)
116 |     public static var orange = Color (0xFFFFA500)
    |                       |- 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
    |                       |- note: convert 'orange' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'orange' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |     public static var orangeRed = Color (0xFFFF4500)
118 |     public static var orchid = Color (0xFFDA70D6)
/host/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
115 |     public static var oliveDrab = Color (0xFF6B8E23)
116 |     public static var orange = Color (0xFFFFA500)
117 |     public static var orangeRed = Color (0xFFFF4500)
    |                       |- 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
    |                       |- note: convert 'orangeRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'orangeRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |     public static var orchid = Color (0xFFDA70D6)
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
/host/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
116 |     public static var orange = Color (0xFFFFA500)
117 |     public static var orangeRed = Color (0xFFFF4500)
118 |     public static var orchid = Color (0xFFDA70D6)
    |                       |- 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
    |                       |- note: convert 'orchid' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'orchid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
120 |     public static var paleGreen = Color (0xFF98FB98)
/host/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
117 |     public static var orangeRed = Color (0xFFFF4500)
118 |     public static var orchid = Color (0xFFDA70D6)
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
    |                       |- 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
    |                       |- note: convert 'paleGoldenrod' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'paleGoldenrod' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |     public static var paleGreen = Color (0xFF98FB98)
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
/host/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
118 |     public static var orchid = Color (0xFFDA70D6)
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
120 |     public static var paleGreen = Color (0xFF98FB98)
    |                       |- 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
    |                       |- note: convert 'paleGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'paleGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
122 |     public static var paleVioletRed = Color (0xFFDB7093)
/host/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
119 |     public static var paleGoldenrod = Color (0xFFEEE8AA)
120 |     public static var paleGreen = Color (0xFF98FB98)
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
    |                       |- 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
    |                       |- note: convert 'paleTurquoise' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'paleTurquoise' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |     public static var paleVioletRed = Color (0xFFDB7093)
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
/host/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
120 |     public static var paleGreen = Color (0xFF98FB98)
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
122 |     public static var paleVioletRed = Color (0xFFDB7093)
    |                       |- 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
    |                       |- note: convert 'paleVioletRed' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'paleVioletRed' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
124 |     public static var peachPuff = Color (0xFFFFDAB9)
/host/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
121 |     public static var paleTurquoise = Color (0xFFAFEEEE)
122 |     public static var paleVioletRed = Color (0xFFDB7093)
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
    |                       |- 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
    |                       |- note: convert 'papayaWhip' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'papayaWhip' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     public static var peachPuff = Color (0xFFFFDAB9)
125 |     public static var peru = Color (0xFFCD853F)
/host/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
122 |     public static var paleVioletRed = Color (0xFFDB7093)
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
124 |     public static var peachPuff = Color (0xFFFFDAB9)
    |                       |- 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
    |                       |- note: convert 'peachPuff' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'peachPuff' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |     public static var peru = Color (0xFFCD853F)
126 |     public static var pink = Color (0xFFFFC0CB)
/host/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
123 |     public static var papayaWhip = Color (0xFFFFEFD5)
124 |     public static var peachPuff = Color (0xFFFFDAB9)
125 |     public static var peru = Color (0xFFCD853F)
    |                       |- 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
    |                       |- note: convert 'peru' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'peru' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |     public static var pink = Color (0xFFFFC0CB)
127 |     public static var plum = Color (0xFFDDA0DD)
/host/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
124 |     public static var peachPuff = Color (0xFFFFDAB9)
125 |     public static var peru = Color (0xFFCD853F)
126 |     public static var pink = Color (0xFFFFC0CB)
    |                       |- 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
    |                       |- note: convert 'pink' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'pink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |     public static var plum = Color (0xFFDDA0DD)
128 |     public static var powderBlue = Color (0xFFB0E0E6)
/host/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
125 |     public static var peru = Color (0xFFCD853F)
126 |     public static var pink = Color (0xFFFFC0CB)
127 |     public static var plum = Color (0xFFDDA0DD)
    |                       |- 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
    |                       |- note: convert 'plum' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'plum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     public static var powderBlue = Color (0xFFB0E0E6)
129 |     public static var purple = Color (0xFF800080)
/host/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
126 |     public static var pink = Color (0xFFFFC0CB)
127 |     public static var plum = Color (0xFFDDA0DD)
128 |     public static var powderBlue = Color (0xFFB0E0E6)
    |                       |- 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
    |                       |- note: convert 'powderBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'powderBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |     public static var purple = Color (0xFF800080)
130 |     public static var red = Color (0xFFFF0000)
/host/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
127 |     public static var plum = Color (0xFFDDA0DD)
128 |     public static var powderBlue = Color (0xFFB0E0E6)
129 |     public static var purple = Color (0xFF800080)
    |                       |- 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
    |                       |- note: convert 'purple' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'purple' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     public static var red = Color (0xFFFF0000)
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
/host/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
128 |     public static var powderBlue = Color (0xFFB0E0E6)
129 |     public static var purple = Color (0xFF800080)
130 |     public static var red = Color (0xFFFF0000)
    |                       |- 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
    |                       |- note: convert 'red' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'red' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
132 |     public static var royalBlue = Color (0xFF4169E1)
/host/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
129 |     public static var purple = Color (0xFF800080)
130 |     public static var red = Color (0xFFFF0000)
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
    |                       |- 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
    |                       |- note: convert 'rosyBrown' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'rosyBrown' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 |     public static var royalBlue = Color (0xFF4169E1)
133 |     public static var saddleBrown = Color (0xFF8B4513)
/host/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
130 |     public static var red = Color (0xFFFF0000)
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
132 |     public static var royalBlue = Color (0xFF4169E1)
    |                       |- 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
    |                       |- note: convert 'royalBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'royalBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     public static var saddleBrown = Color (0xFF8B4513)
134 |     public static var salmon = Color (0xFFFA8072)
/host/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
131 |     public static var rosyBrown = Color (0xFFBC8F8F)
132 |     public static var royalBlue = Color (0xFF4169E1)
133 |     public static var saddleBrown = Color (0xFF8B4513)
    |                       |- 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
    |                       |- note: convert 'saddleBrown' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'saddleBrown' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |     public static var salmon = Color (0xFFFA8072)
135 |     public static var sandyBrown = Color (0xFFF4A460)
/host/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
132 |     public static var royalBlue = Color (0xFF4169E1)
133 |     public static var saddleBrown = Color (0xFF8B4513)
134 |     public static var salmon = Color (0xFFFA8072)
    |                       |- 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
    |                       |- note: convert 'salmon' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'salmon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |     public static var sandyBrown = Color (0xFFF4A460)
136 |     public static var seaGreen = Color (0xFF2E8B57)
/host/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
133 |     public static var saddleBrown = Color (0xFF8B4513)
134 |     public static var salmon = Color (0xFFFA8072)
135 |     public static var sandyBrown = Color (0xFFF4A460)
    |                       |- 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
    |                       |- note: convert 'sandyBrown' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'sandyBrown' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 |     public static var seaGreen = Color (0xFF2E8B57)
137 |     public static var seaShell = Color (0xFFFFF5EE)
/host/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
134 |     public static var salmon = Color (0xFFFA8072)
135 |     public static var sandyBrown = Color (0xFFF4A460)
136 |     public static var seaGreen = Color (0xFF2E8B57)
    |                       |- 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
    |                       |- note: convert 'seaGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'seaGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
137 |     public static var seaShell = Color (0xFFFFF5EE)
138 |     public static var sienna = Color (0xFFA0522D)
/host/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
135 |     public static var sandyBrown = Color (0xFFF4A460)
136 |     public static var seaGreen = Color (0xFF2E8B57)
137 |     public static var seaShell = Color (0xFFFFF5EE)
    |                       |- 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
    |                       |- note: convert 'seaShell' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'seaShell' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 |     public static var sienna = Color (0xFFA0522D)
139 |     public static var silver = Color (0xFFC0C0C0)
/host/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
136 |     public static var seaGreen = Color (0xFF2E8B57)
137 |     public static var seaShell = Color (0xFFFFF5EE)
138 |     public static var sienna = Color (0xFFA0522D)
    |                       |- 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
    |                       |- note: convert 'sienna' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'sienna' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |     public static var silver = Color (0xFFC0C0C0)
140 |     public static var skyBlue = Color (0xFF87CEEB)
/host/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
137 |     public static var seaShell = Color (0xFFFFF5EE)
138 |     public static var sienna = Color (0xFFA0522D)
139 |     public static var silver = Color (0xFFC0C0C0)
    |                       |- 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
    |                       |- note: convert 'silver' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'silver' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 |     public static var skyBlue = Color (0xFF87CEEB)
141 |     public static var slateBlue = Color (0xFF6A5ACD)
/host/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
138 |     public static var sienna = Color (0xFFA0522D)
139 |     public static var silver = Color (0xFFC0C0C0)
140 |     public static var skyBlue = Color (0xFF87CEEB)
    |                       |- 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
    |                       |- note: convert 'skyBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'skyBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |     public static var slateBlue = Color (0xFF6A5ACD)
142 |     public static var slateGray = Color (0xFF708090)
/host/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
139 |     public static var silver = Color (0xFFC0C0C0)
140 |     public static var skyBlue = Color (0xFF87CEEB)
141 |     public static var slateBlue = Color (0xFF6A5ACD)
    |                       |- 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
    |                       |- note: convert 'slateBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'slateBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 |     public static var slateGray = Color (0xFF708090)
143 |     public static var snow = Color (0xFFFFFAFA)
/host/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
140 |     public static var skyBlue = Color (0xFF87CEEB)
141 |     public static var slateBlue = Color (0xFF6A5ACD)
142 |     public static var slateGray = Color (0xFF708090)
    |                       |- 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
    |                       |- note: convert 'slateGray' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'slateGray' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
143 |     public static var snow = Color (0xFFFFFAFA)
144 |     public static var springGreen = Color (0xFF00FF7F)
/host/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
141 |     public static var slateBlue = Color (0xFF6A5ACD)
142 |     public static var slateGray = Color (0xFF708090)
143 |     public static var snow = Color (0xFFFFFAFA)
    |                       |- 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
    |                       |- note: convert 'snow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'snow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
144 |     public static var springGreen = Color (0xFF00FF7F)
145 |     public static var steelBlue = Color (0xFF4682B4)
/host/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
142 |     public static var slateGray = Color (0xFF708090)
143 |     public static var snow = Color (0xFFFFFAFA)
144 |     public static var springGreen = Color (0xFF00FF7F)
    |                       |- 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
    |                       |- note: convert 'springGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'springGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 |     public static var steelBlue = Color (0xFF4682B4)
146 |     public static var tan = Color (0xFFD2B48C)
/host/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
143 |     public static var snow = Color (0xFFFFFAFA)
144 |     public static var springGreen = Color (0xFF00FF7F)
145 |     public static var steelBlue = Color (0xFF4682B4)
    |                       |- 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
    |                       |- note: convert 'steelBlue' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'steelBlue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 |     public static var tan = Color (0xFFD2B48C)
147 |     public static var teal = Color (0xFF008080)
/host/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
144 |     public static var springGreen = Color (0xFF00FF7F)
145 |     public static var steelBlue = Color (0xFF4682B4)
146 |     public static var tan = Color (0xFFD2B48C)
    |                       |- 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
    |                       |- note: convert 'tan' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'tan' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |     public static var teal = Color (0xFF008080)
148 |     public static var thistle = Color (0xFFD8BFD8)
/host/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
145 |     public static var steelBlue = Color (0xFF4682B4)
146 |     public static var tan = Color (0xFFD2B48C)
147 |     public static var teal = Color (0xFF008080)
    |                       |- 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
    |                       |- note: convert 'teal' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'teal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
148 |     public static var thistle = Color (0xFFD8BFD8)
149 |     public static var tomato = Color (0xFFFF6347)
/host/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
146 |     public static var tan = Color (0xFFD2B48C)
147 |     public static var teal = Color (0xFF008080)
148 |     public static var thistle = Color (0xFFD8BFD8)
    |                       |- 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
    |                       |- note: convert 'thistle' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'thistle' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 |     public static var tomato = Color (0xFFFF6347)
150 |     public static var turquoise = Color (0xFF40E0D0)
/host/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
147 |     public static var teal = Color (0xFF008080)
148 |     public static var thistle = Color (0xFFD8BFD8)
149 |     public static var tomato = Color (0xFFFF6347)
    |                       |- 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
    |                       |- note: convert 'tomato' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'tomato' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |     public static var turquoise = Color (0xFF40E0D0)
151 |     public static var violet = Color (0xFFEE82EE)
/host/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
148 |     public static var thistle = Color (0xFFD8BFD8)
149 |     public static var tomato = Color (0xFFFF6347)
150 |     public static var turquoise = Color (0xFF40E0D0)
    |                       |- 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
    |                       |- note: convert 'turquoise' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'turquoise' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |     public static var violet = Color (0xFFEE82EE)
152 |     public static var wheat = Color (0xFFF5DEB3)
/host/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
149 |     public static var tomato = Color (0xFFFF6347)
150 |     public static var turquoise = Color (0xFF40E0D0)
151 |     public static var violet = Color (0xFFEE82EE)
    |                       |- 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
    |                       |- note: convert 'violet' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'violet' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |     public static var wheat = Color (0xFFF5DEB3)
153 |     public static var white = Color (0xFFFFFFFF)
/host/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
150 |     public static var turquoise = Color (0xFF40E0D0)
151 |     public static var violet = Color (0xFFEE82EE)
152 |     public static var wheat = Color (0xFFF5DEB3)
    |                       |- 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
    |                       |- note: convert 'wheat' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'wheat' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |     public static var white = Color (0xFFFFFFFF)
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
/host/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
151 |     public static var violet = Color (0xFFEE82EE)
152 |     public static var wheat = Color (0xFFF5DEB3)
153 |     public static var white = Color (0xFFFFFFFF)
    |                       |- 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
    |                       |- note: convert 'white' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'white' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
155 |     public static var yellow = Color (0xFFFFFF00)
/host/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
152 |     public static var wheat = Color (0xFFF5DEB3)
153 |     public static var white = Color (0xFFFFFFFF)
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
    |                       |- 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
    |                       |- note: convert 'whiteSmoke' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'whiteSmoke' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |     public static var yellow = Color (0xFFFFFF00)
156 |     public static var yellowGreen = Color (0xFF9ACD32)
/host/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
153 |     public static var white = Color (0xFFFFFFFF)
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
155 |     public static var yellow = Color (0xFFFFFF00)
    |                       |- 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
    |                       |- note: convert 'yellow' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'yellow' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |     public static var yellowGreen = Color (0xFF9ACD32)
157 |     public static var transparent = Color (0x00FFFFFF)
/host/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
154 |     public static var whiteSmoke = Color (0xFFF5F5F5)
155 |     public static var yellow = Color (0xFFFFFF00)
156 |     public static var yellowGreen = Color (0xFF9ACD32)
    |                       |- 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
    |                       |- note: convert 'yellowGreen' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'yellowGreen' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |     public static var transparent = Color (0x00FFFFFF)
158 |
/host/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
155 |     public static var yellow = Color (0xFFFFFF00)
156 |     public static var yellowGreen = Color (0xFF9ACD32)
157 |     public static var transparent = Color (0x00FFFFFF)
    |                       |- 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
    |                       |- note: convert 'transparent' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'transparent' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 |
159 | }
[19/40] Compiling SkiaKit PictureRecorder.swift
[20/40] Compiling SkiaKit Pixmap.swift
[21/40] Compiling SkiaKit Region.swift
[22/40] Compiling SkiaKit RoundRect.swift
[23/40] Compiling SkiaKit ImageFilter.swift
[24/40] Compiling SkiaKit ImageInfo.swift
[25/40] Compiling SkiaKit MaskFilter.swift
[26/40] Compiling SkiaKit MathTypes.swift
[27/40] Compiling SkiaKit Matrix.swift
[28/40] Compiling SkiaKit Font.swift
/host/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
 23 |
 24 |     /// The default font manager
 25 |     public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
    |                       |- 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
    |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'system' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /// Gets the number of font families available.
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
/host/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
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
   |                       |- 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
   |                       |- note: convert 'bold' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
/host/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
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'italic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
/host/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
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'boldItalic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'boldItalic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | }
[29/40] Compiling SkiaKit FontManager.swift
/host/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
 23 |
 24 |     /// The default font manager
 25 |     public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
    |                       |- 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
    |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'system' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /// Gets the number of font families available.
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
/host/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
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
   |                       |- 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
   |                       |- note: convert 'bold' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
/host/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
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'italic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
/host/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
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'boldItalic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'boldItalic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | }
[30/40] Compiling SkiaKit FontStyle.swift
/host/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
 23 |
 24 |     /// The default font manager
 25 |     public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
    |                       |- 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
    |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'system' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /// Gets the number of font families available.
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
/host/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
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
   |                       |- 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
   |                       |- note: convert 'bold' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
/host/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
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'italic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
/host/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
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'boldItalic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'boldItalic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | }
[31/40] Compiling SkiaKit FontStyleSet.swift
/host/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
 23 |
 24 |     /// The default font manager
 25 |     public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
    |                       |- 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
    |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'system' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /// Gets the number of font families available.
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
/host/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
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
   |                       |- 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
   |                       |- note: convert 'bold' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
/host/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
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'italic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
/host/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
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'boldItalic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'boldItalic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | }
[32/40] Compiling SkiaKit Image.swift
/host/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
 23 |
 24 |     /// The default font manager
 25 |     public static var system: FontManager = FontManager (handle: sk_fontmgr_ref_default(), owns: false)
    |                       |- 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
    |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'system' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /// Gets the number of font families available.
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
/host/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
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
   |                       |- 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
   |                       |- note: convert 'bold' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
/host/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
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
60 |     /// Gets a new italic font style.
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'italic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'italic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
/host/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
61 |     public static var italic: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .italic)
62 |     /// Gets a new italic font style that is bold.
63 |     public static var boldItalic: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .italic)
   |                       |- 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
   |                       |- note: convert 'boldItalic' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'boldItalic' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |
65 | }
[33/40] Compiling SkiaKit SKObject.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
100 |         if let l = localMatrix {
101 |             native = l.toNative()
102 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
103 |         }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
132 |         if let l = localMatrix {
133 |             native = l.toNative()
134 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
135 |         }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
165 |         if let l = localMatrix {
166 |             native = l.toNative()
167 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
168 |         }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
199 |         if let l = localMatrix {
200 |             native = l.toNative()
201 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
202 |         }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
231 |         if let t = tileSize {
232 |             n = t
233 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
234 |         }
235 |         return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
249 |         if let t = tileSize {
250 |             n = t
251 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
252 |         }
253 |         return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[34/40] Compiling SkiaKit SKStream.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
100 |         if let l = localMatrix {
101 |             native = l.toNative()
102 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
103 |         }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
132 |         if let l = localMatrix {
133 |             native = l.toNative()
134 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
135 |         }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
165 |         if let l = localMatrix {
166 |             native = l.toNative()
167 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
168 |         }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
199 |         if let l = localMatrix {
200 |             native = l.toNative()
201 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
202 |         }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
231 |         if let t = tileSize {
232 |             n = t
233 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
234 |         }
235 |         return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
249 |         if let t = tileSize {
250 |             n = t
251 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
252 |         }
253 |         return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[35/40] Compiling SkiaKit SKString.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
100 |         if let l = localMatrix {
101 |             native = l.toNative()
102 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
103 |         }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
132 |         if let l = localMatrix {
133 |             native = l.toNative()
134 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
135 |         }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
165 |         if let l = localMatrix {
166 |             native = l.toNative()
167 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
168 |         }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
199 |         if let l = localMatrix {
200 |             native = l.toNative()
201 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
202 |         }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
231 |         if let t = tileSize {
232 |             n = t
233 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
234 |         }
235 |         return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
249 |         if let t = tileSize {
250 |             n = t
251 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
252 |         }
253 |         return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[36/40] Compiling SkiaKit Shader.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
100 |         if let l = localMatrix {
101 |             native = l.toNative()
102 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
103 |         }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
132 |         if let l = localMatrix {
133 |             native = l.toNative()
134 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
135 |         }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
165 |         if let l = localMatrix {
166 |             native = l.toNative()
167 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
168 |         }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
199 |         if let l = localMatrix {
200 |             native = l.toNative()
201 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer
202 |         }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
231 |         if let t = tileSize {
232 |             n = t
233 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
234 |         }
235 |         return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
249 |         if let t = tileSize {
250 |             n = t
251 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer
252 |         }
253 |         return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[37/40] Compiling SkiaKit Surface.swift
/host/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
 25 |
 26 |     /// The default normal typeface
 27 |     static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
    |                |- 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
    |                |- note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultTypeface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |     init (handle: OpaquePointer, owns: Bool)
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
[38/40] Compiling SkiaKit SurfaceProperties.swift
/host/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
 25 |
 26 |     /// The default normal typeface
 27 |     static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
    |                |- 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
    |                |- note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultTypeface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |     init (handle: OpaquePointer, owns: Bool)
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
[39/40] Compiling SkiaKit TextBlob.swift
/host/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
 25 |
 26 |     /// The default normal typeface
 27 |     static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
    |                |- 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
    |                |- note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultTypeface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |     init (handle: OpaquePointer, owns: Bool)
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
[40/40] Compiling SkiaKit Typeface.swift
/host/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
 25 |
 26 |     /// The default normal typeface
 27 |     static var defaultTypeface = Typeface (handle: sk_typeface_ref_default(), owns: false)
    |                |- 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
    |                |- note: convert 'defaultTypeface' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultTypeface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |     init (handle: OpaquePointer, owns: Bool)
/host/spi-builder-workspace/Sources/SkiaKit/FontStyle.swift:57:23: warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 |     /// Gets a new normal (upright and not bold) font style.
57 |     public static var normal: FontStyle = FontStyle(weight: .normal, width: .normal, slant: .upright)
   |                       |- warning: static property 'normal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'normal' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'normal' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |     /// Gets a new upright font style that is bold.
59 |     public static var bold: FontStyle = FontStyle(weight: .bold, width: .normal, slant: .upright)
Build complete! (14.49s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SkiaKit",
  "name" : "SkiaKit",
  "path" : "/host/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" : "CSkiaSharp",
      "module_type" : "ClangTarget",
      "name" : "CSkiaSharp",
      "path" : "Sources/CSkiaSharp",
      "product_memberships" : [
        "SkiaKit"
      ],
      "sources" : [
        "dummy.m"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.