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 Doggie, reference main (cd7ebc), with Swift 6.0 for Linux on 3 Nov 2024 23:38:37 UTC.

Swift 6 data race errors: 199

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: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[999/1014] Compiling DoggieGraphics ASCII85Filter.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1000/1014] Compiling DoggieGraphics ASCIIHexFilter.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1001/1014] Compiling DoggieGraphics PDFFilter.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1002/1014] Compiling DoggieGraphics PDFName.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1003/1014] Compiling DoggieGraphics PDFNumber.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1004/1014] Compiling DoggieGraphics PDFObject.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1005/1014] Compiling DoggieGraphics PDFPage.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1006/1014] Compiling DoggieGraphics PDFBitmap.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1007/1014] Compiling DoggieGraphics PDFColorSpace.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1008/1014] Compiling DoggieGraphics PDFCommand.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1009/1014] Compiling DoggieGraphics PDFDrawPage.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1010/1014] Compiling DoggieGraphics PDFFunction.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1011/1014] Compiling DoggieGraphics PDFRenderer.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1012/1014] Compiling DoggieGraphics PDFStream.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1013/1014] Compiling DoggieGraphics PDFString.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1014/1014] Compiling DoggieGraphics PDFXref.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:40:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | }
 42 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:34:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 32 |     }
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' 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 let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:35:23: warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 33 |
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
    |                       |- warning: static property 'subtract' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'subtract' with '@MainActor' 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 let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:36:23: warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 34 |     public static let none: PNGPrediction      = PNGPrediction(rawValue: 1 << 0)
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
    |                       |- warning: static property 'up' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'up' with '@MainActor' 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 let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:37:23: warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 35 |     public static let subtract: PNGPrediction  = PNGPrediction(rawValue: 1 << 1)
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
    |                       |- warning: static property 'average' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'average' with '@MainActor' 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 let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
 39 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ImageCodec/Algorithm/PNG/PNGFilter0.swift:38:23: warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | //
 25 |
 26 | public struct PNGPrediction: OptionSet {
    |               `- note: consider making struct 'PNGPrediction' conform to the 'Sendable' protocol
 27 |
 28 |     public var rawValue: Int
    :
 36 |     public static let up: PNGPrediction        = PNGPrediction(rawValue: 1 << 2)
 37 |     public static let average: PNGPrediction   = PNGPrediction(rawValue: 1 << 3)
 38 |     public static let paeth: PNGPrediction     = PNGPrediction(rawValue: 1 << 4)
    |                       |- warning: static property 'paeth' is not concurrency-safe because non-'Sendable' type 'PNGPrediction' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'paeth' with '@MainActor' 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 |
 40 |     public static let all: PNGPrediction       = [.none, .subtract, .up, .average, .paeth]
/host/spi-builder-workspace/Sources/DoggieGraphics/PDFContext/PDFContextPage.swift:28:16: warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
  26 | private struct PDFContextStyles {
  27 |
  28 |     static let defaultShadowColor = AnyColor(colorSpace: .default, white: 0.0, opacity: 1.0 / 3.0)
     |                |- warning: static property 'defaultShadowColor' is not concurrency-safe because non-'Sendable' type 'AnyColor' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'defaultShadowColor' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  29 |
  30 |     var opacity: Double = 1
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/AnyColor.swift:27:15: note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct AnyColor: ColorProtocol {
    |               `- note: consider making struct 'AnyColor' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift:82:23: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
80 | extension ColorSpace where Model == RGBColorModel {
81 |
82 |     public static let sRGB = ColorSpace(base: _sRGB())
   |                       |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'ColorSpace<RGBColorModel>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sRGB' with '@MainActor' 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 | }
84 |
/host/spi-builder-workspace/Sources/DoggieGraphics/ColorSpace/ColorSpace.swift:27:15: note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 25 |
 26 | @frozen
 27 | public struct ColorSpace<Model: ColorModel>: ColorSpaceProtocol, _ColorSpaceProtocol {
    |               `- note: consider making generic struct 'ColorSpace' conform to the 'Sendable' protocol
 28 |
 29 |     @usableFromInline
[1016/1040] Compiling DoggieGPU BilateralFilter.swift
[1017/1040] Compiling DoggieGPU CIImage.swift
[1018/1040] Compiling DoggieGPU CIVector.swift
[1019/1040] Compiling DoggieGPU ConvolveKernel.swift
[1020/1043] Compiling DoggieGPU SVGConvolveKernel.swift
[1021/1043] Compiling DoggieGPU SVGDisplacementMapKernel.swift
[1022/1043] Compiling DoggieGPU SVGLightingKernel.swift
[1023/1043] Compiling DoggieGPU SVGTurbulenceKernel.swift
[1024/1043] Compiling DoggieGPU GPContext.swift
[1025/1043] Compiling DoggieGPU GPContextBase.swift
[1026/1043] Compiling DoggieGPU GPContextExtension.swift
[1027/1043] Emitting module DoggieGPU
[1028/1043] Compiling DoggieGPU ShaderLoader.swift
[1029/1043] Compiling DoggieGPU WrapTileKernel.swift
[1030/1043] Compiling DoggieGPU kMeansClusteringKernel.swift
[1031/1043] Compiling DoggieGPU Exported.swift
[1032/1043] Compiling DoggieGPU CGContextProcessorKernel.swift
[1033/1043] Compiling DoggieGPU CGPathProcessorKernel.swift
[1034/1043] Compiling DoggieGPU CoreImage.swift
[1035/1043] Compiling DoggieGPU MorphologyKernel.swift
[1036/1043] Compiling DoggieGPU PalettizeKernel.swift
[1037/1043] Compiling DoggieGPU SVGComponentTransferKernel.swift
[1038/1043] Compiling DoggieGPU GPContextPattern.swift
[1039/1043] Compiling DoggieGPU MeshGradientKernel.swift
[1040/1043] Compiling DoggieGPU MTLDevice.swift
[1041/1043] Compiling DoggieGPU Packed.swift
[1042/1043] Compiling DoggieGPU SIMD.swift
[1043/1043] Compiling DoggieGPU resource_bundle_accessor.swift
[1045/1046] Compiling Doggie Exported.swift
[1046/1046] Emitting module Doggie
Build complete! (216.22s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-numerics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-numerics"
    },
    {
      "identity" : "swift-algorithms",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-algorithms"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections"
    },
    {
      "identity" : "float16",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/Float16"
    },
    {
      "identity" : "brotli",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/brotli"
    },
    {
      "identity" : "libwebp",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/libwebp"
    },
    {
      "identity" : "libjpeg",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/libjpeg"
    }
  ],
  "manifest_display_name" : "Doggie",
  "name" : "Doggie",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "DoggieCore",
      "targets" : [
        "DoggieCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieMath",
      "targets" : [
        "DoggieMath"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieGeometry",
      "targets" : [
        "DoggieGeometry"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieGraphics",
      "targets" : [
        "DoggieGraphics"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieGPU",
      "targets" : [
        "DoggieGPU"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Doggie",
      "targets" : [
        "Doggie"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "zlib_c",
      "module_type" : "ClangTarget",
      "name" : "zlib_c",
      "path" : "Sources/zlib_c",
      "product_memberships" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "empty.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieTests",
      "module_type" : "SwiftTarget",
      "name" : "DoggieTests",
      "path" : "Tests/DoggieTests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/DoggieTests/images",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ArithmeticTest.swift",
        "BrotliTest.swift",
        "CollectionTest.swift",
        "ColorSpaceTest.swift",
        "ColorTest.swift",
        "ConcurrencyTest.swift",
        "FontTest.swift",
        "FourierSpeedTest.swift",
        "FourierTest.swift",
        "GeometryTest.swift",
        "ImageCodecTest.swift",
        "ImageContextTest.swift",
        "ImageTest.swift",
        "JsonTest.swift",
        "LayoutTest.swift",
        "MappedBufferTest.swift",
        "MathTest.swift",
        "PDFContextTest.swift",
        "PolynomialTest.swift",
        "ShapeRegionTest.swift",
        "XMLTest.swift",
        "ZlibTest.swift"
      ],
      "target_dependencies" : [
        "Doggie"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DoggieMath",
      "module_type" : "SwiftTarget",
      "name" : "DoggieMath",
      "path" : "Sources/DoggieMath",
      "product_memberships" : [
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "Accelerate/CircularConvolve.swift",
        "Accelerate/CircularConvolve2D.swift",
        "Accelerate/CooleyTukey2D.swift",
        "Accelerate/DirectConvolve.swift",
        "Accelerate/LinearAlgebra.swift",
        "Accelerate/Move.swift",
        "Accelerate/OverlapAddConvolve.swift",
        "Accelerate/Radix2CooleyTukey/HalfInverseRadix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/HalfRadix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/InverseRadix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/Radix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_16.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_2.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_4.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_8.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_16.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_2.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_4.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_8.swift",
        "Accelerate/Wrapper.swift",
        "Arithmetic.swift",
        "Complex.swift",
        "Exported.swift",
        "Extension.swift",
        "Fourier.swift",
        "Maths.swift",
        "Polynomial.swift",
        "Rational.swift",
        "SafeFunction.swift"
      ],
      "target_dependencies" : [
        "DoggieCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieGraphics",
      "module_type" : "SwiftTarget",
      "name" : "DoggieGraphics",
      "path" : "Sources/DoggieGraphics",
      "product_dependencies" : [
        "libwebp",
        "libjpeg"
      ],
      "product_memberships" : [
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "ApplePlatform/AppleExported.swift",
        "ApplePlatform/Graphic/CGColor.swift",
        "ApplePlatform/Graphic/CGColorSpace.swift",
        "ApplePlatform/Graphic/CGContext.swift",
        "ApplePlatform/Graphic/CGFont.swift",
        "ApplePlatform/Graphic/CGGradient.swift",
        "ApplePlatform/Graphic/CGPattern.swift",
        "ApplePlatform/Graphic/CGShading.swift",
        "ApplePlatform/Graphic/CoreText.swift",
        "ApplePlatform/Image/CGImage.swift",
        "ApplePlatform/Image/CVPixelFormat.swift",
        "ApplePlatform/Image/CoreVideo.swift",
        "ApplePlatform/Image/IOSurface.swift",
        "ApplePlatform/Image/NSImage.swift",
        "ApplePlatform/Image/UIImage.swift",
        "ApplePlatform/ImageIO/AVDepthData.swift",
        "ApplePlatform/ImageIO/AVPortraitEffectsMatte.swift",
        "ApplePlatform/ImageIO/CGAnimatedImage.swift",
        "ApplePlatform/ImageIO/CGImageDestination.swift",
        "ApplePlatform/ImageIO/CGImageRep.swift",
        "ApplePlatform/ImageIO/CGImageSource.swift",
        "ApplePlatform/Metal.swift",
        "ApplePlatform/Performance/CIContext.swift",
        "ApplePlatform/Performance/CIContextPool.swift",
        "ApplePlatform/SwiftPlayground.swift",
        "Color/AnyColor.swift",
        "Color/Color.swift",
        "Color/ColorProtocol.swift",
        "Color/PredefinedColor.swift",
        "ColorModel/ColorBlendKernel.swift",
        "ColorModel/ColorBlendMode.swift",
        "ColorModel/ColorModel.swift",
        "ColorModel/Model/CMYColorModel.swift",
        "ColorModel/Model/CMYKColorModel.swift",
        "ColorModel/Model/DeviceNColorModel.swift",
        "ColorModel/Model/GrayColorModel.swift",
        "ColorModel/Model/LabColorModel.swift",
        "ColorModel/Model/LuvColorModel.swift",
        "ColorModel/Model/RGBColorModel.swift",
        "ColorModel/Model/XYZColorModel.swift",
        "ColorModel/Model/YCbCrColorModel.swift",
        "ColorModel/Model/YxyColorModel.swift",
        "ColorPixel/ColorCompositingKernel.swift",
        "ColorPixel/ColorCompositingMode.swift",
        "ColorPixel/ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/Float16ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/Float32ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/Float64ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/FloatComponentPixel.swift",
        "ColorPixel/Gray/Gray16ColorPixel.swift",
        "ColorPixel/Gray/Gray32ColorPixel.swift",
        "ColorPixel/Gray/GrayColorPixel.swift",
        "ColorPixel/RGB/ABGR32ColorPixel.swift",
        "ColorPixel/RGB/ARGB32ColorPixel.swift",
        "ColorPixel/RGB/ARGB64ColorPixel.swift",
        "ColorPixel/RGB/BGRA32ColorPixel.swift",
        "ColorPixel/RGB/RGBA32ColorPixel.swift",
        "ColorPixel/RGB/RGBA64ColorPixel.swift",
        "ColorPixel/RGB/RGBColorPixel.swift",
        "ColorSpace/AnyColorSpace.swift",
        "ColorSpace/ChromaticAdaptationAlgorithm.swift",
        "ColorSpace/ColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIELabColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIELuvColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIEXYZColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIEYxyColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CalibratedGrayColorSpace/CalibratedGrayColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/AdobeRGB.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/CalibratedRGBColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/displayP3.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift",
        "ColorSpace/ColorSpaceBase/ColorSpaceBaseProtocol.swift",
        "ColorSpace/ColorSpaceBase/ICC/ICC Creator.swift",
        "ColorSpace/ColorSpaceBase/ICC/ICCColorSpace.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccProfile.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccCurve.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccLUTTransform.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccMultiLocalizedUnicode.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccNamedColor.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTagData.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTextDescription.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTransform.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccDateTimeNumber.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccMatrix.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccType.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccXYZNumber.swift",
        "ColorSpace/ColorSpaceBase/LinearToneColorSpace.swift",
        "ColorSpace/ColorSpaceBase/PredefinedColorSpace.swift",
        "ColorSpace/ColorSpaceBase/WrappedColorSpace.swift",
        "ColorSpace/ColorSpaceProtocol.swift",
        "ColorSpace/Illuminant.swift",
        "ColorSpace/RenderingIntent.swift",
        "DrawableContext/DrawableContext.swift",
        "DrawableContext/Gradient.swift",
        "DrawableContext/MeshGradient.swift",
        "DrawableContext/Pattern.swift",
        "DrawableContext/Stroke.swift",
        "Exported.swift",
        "Font/Decoder/CFF2Decoder/CFF2Decoder.swift",
        "Font/Decoder/CFF2Decoder/CFF2INDEX.swift",
        "Font/Decoder/CFFDecoder/CFFCharStrings.swift",
        "Font/Decoder/CFFDecoder/CFFDICT.swift",
        "Font/Decoder/CFFDecoder/CFFDecoder.swift",
        "Font/Decoder/CFFDecoder/CFFEncoding.swift",
        "Font/Decoder/CFFDecoder/CFFFDSelect.swift",
        "Font/Decoder/CFFDecoder/CFFFontFace.swift",
        "Font/Decoder/CFFDecoder/CFFINDEX.swift",
        "Font/Decoder/FontDecoder.swift",
        "Font/Decoder/OpenTypeDecoder.swift",
        "Font/Decoder/SFNTFontFace/AATStateTable.swift",
        "Font/Decoder/SFNTFontFace/OTFFeatureList.swift",
        "Font/Decoder/SFNTFontFace/OTFGDEF.swift",
        "Font/Decoder/SFNTFontFace/OTFGPOS.swift",
        "Font/Decoder/SFNTFontFace/OTFGSUB.swift",
        "Font/Decoder/SFNTFontFace/OTFLookupList.swift",
        "Font/Decoder/SFNTFontFace/OTFScriptList.swift",
        "Font/Decoder/SFNTFontFace/SFNTCMAP.swift",
        "Font/Decoder/SFNTFontFace/SFNTFEAT.swift",
        "Font/Decoder/SFNTFontFace/SFNTFontFace.swift",
        "Font/Decoder/SFNTFontFace/SFNTGLYF.swift",
        "Font/Decoder/SFNTFontFace/SFNTHEAD.swift",
        "Font/Decoder/SFNTFontFace/SFNTHHEA.swift",
        "Font/Decoder/SFNTFontFace/SFNTLTAG.swift",
        "Font/Decoder/SFNTFontFace/SFNTMAXP.swift",
        "Font/Decoder/SFNTFontFace/SFNTMORX.swift",
        "Font/Decoder/SFNTFontFace/SFNTNAME.swift",
        "Font/Decoder/SFNTFontFace/SFNTOS2.swift",
        "Font/Decoder/SFNTFontFace/SFNTPOST.swift",
        "Font/Decoder/SFNTFontFace/SFNTPlatform.swift",
        "Font/Decoder/SFNTFontFace/SFNTSBIX.swift",
        "Font/Decoder/SFNTFontFace/SFNTVHEA.swift",
        "Font/Decoder/TTCDecoder.swift",
        "Font/Decoder/WOFFDecoder.swift",
        "Font/Encoder/FontFaceEncoder.swift",
        "Font/Encoder/OTFEncoder.swift",
        "Font/Encoder/WOFFEncoder.swift",
        "Font/Font.swift",
        "Font/FontCollection.swift",
        "Image/AnyImage.swift",
        "Image/Image.swift",
        "Image/ImageOrientation.swift",
        "Image/ImageProtocol.swift",
        "Image/RawPixelProtocol.swift",
        "Image/Resampling.swift",
        "Image/Resolution.swift",
        "Image/StencilTexture.swift",
        "Image/Texture.swift",
        "Image/TextureProtocol.swift",
        "ImageCodec/Algorithm/GrayPixelDecoder.swift",
        "ImageCodec/Algorithm/PNG/PNGChunk.swift",
        "ImageCodec/Algorithm/PNG/PNGFilter0.swift",
        "ImageCodec/Algorithm/PNG/PNGInterlace.swift",
        "ImageCodec/Algorithm/PNG/PNGRegion.swift",
        "ImageCodec/Algorithm/RGBPixelDecoder.swift",
        "ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFCompression.swift",
        "ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFLZWCompression.swift",
        "ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFPackBitsCompression.swift",
        "ImageCodec/Algorithm/TIFF/TIFFEncodablePixel.swift",
        "ImageCodec/Algorithm/TIFF/TIFFPrediction.swift",
        "ImageCodec/Algorithm/TIFF/TIFFRawRepresentable.swift",
        "ImageCodec/AnimatedEncoder/AnimatedImage.swift",
        "ImageCodec/AnimatedEncoder/PNGAnimatedEncoder.swift",
        "ImageCodec/AnimatedEncoder/WEBPAnimatedEncoder.swift",
        "ImageCodec/Decoder/APNGDecoder.swift",
        "ImageCodec/Decoder/BMPDecoder.swift",
        "ImageCodec/Decoder/ImageRepDecoder.swift",
        "ImageCodec/Decoder/JPEGDecoder.swift",
        "ImageCodec/Decoder/PNGDecoder.swift",
        "ImageCodec/Decoder/TIFFDecoder.swift",
        "ImageCodec/Decoder/WEBPDecoder.swift",
        "ImageCodec/Encoder/BMPEncoder.swift",
        "ImageCodec/Encoder/ImageRepEncoder.swift",
        "ImageCodec/Encoder/JPEGEncoder.swift",
        "ImageCodec/Encoder/PNGEncoder.swift",
        "ImageCodec/Encoder/TIFFEncoder.swift",
        "ImageCodec/Encoder/WEBPEncoder.swift",
        "ImageCodec/ImageRep.swift",
        "ImageCodec/RawBitmap/FastDecode.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_first.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_last.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_none.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_float.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_pixel.swift",
        "ImageCodec/RawBitmap/RawBitmap.swift",
        "ImageCodec/RawBitmap/SlowDecode.swift",
        "ImageCodec/RawBitmap/SlowDecode/_aligned_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_aligned_float_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_channel_to_double.swift",
        "ImageCodec/RawBitmap/SlowDecode/_float_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_unsigned_aligned_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_unsigned_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_unsigned_pixel.swift",
        "ImageContext/DrawGradient.swift",
        "ImageContext/DrawImage.swift",
        "ImageContext/DrawMeshGradient.swift",
        "ImageContext/DrawPattern.swift",
        "ImageContext/DrawShadow.swift",
        "ImageContext/DrawShape.swift",
        "ImageContext/ImageContext.swift",
        "ImageContext/ImageContextExtension.swift",
        "ImageContext/PixelBlender.swift",
        "ImageContext/Rasterizer.swift",
        "ImageContext/Rendering.swift",
        "ImageContext/SetClip.swift",
        "ImageContext/Stencil.swift",
        "ImageFilter/BayerDithering.swift",
        "ImageFilter/BilateralFilter.swift",
        "ImageFilter/ColorSeparation.swift",
        "ImageFilter/DifferenceOfGaussian.swift",
        "ImageFilter/DisplacementMap.swift",
        "ImageFilter/GaussianBlur.swift",
        "ImageFilter/ImageConvolution.swift",
        "ImageFilter/LaplacianOfGaussian.swift",
        "ImageFilter/SVGTurbulence.swift",
        "ImageFilter/Underpainting.swift",
        "ImageFilter/kMeansClustering.swift",
        "Noise/SVGNoiseGenerator.swift",
        "Noise/SimplexNoise.swift",
        "PDFContext/PDFContext.swift",
        "PDFContext/PDFContextEncoder.swift",
        "PDFContext/PDFContextImage.swift",
        "PDFContext/PDFContextPage.swift",
        "PDFDocument/PDFDecoder.swift",
        "PDFDocument/PDFDocument.swift",
        "PDFDocument/PDFFilter/ASCII85Filter.swift",
        "PDFDocument/PDFFilter/ASCIIHexFilter.swift",
        "PDFDocument/PDFFilter/PDFFilter.swift",
        "PDFDocument/PDFName.swift",
        "PDFDocument/PDFNumber.swift",
        "PDFDocument/PDFObject.swift",
        "PDFDocument/PDFPage.swift",
        "PDFDocument/PDFRenderer/PDFBitmap.swift",
        "PDFDocument/PDFRenderer/PDFColorSpace.swift",
        "PDFDocument/PDFRenderer/PDFCommand.swift",
        "PDFDocument/PDFRenderer/PDFDrawPage.swift",
        "PDFDocument/PDFRenderer/PDFFunction.swift",
        "PDFDocument/PDFRenderer/PDFRenderer.swift",
        "PDFDocument/PDFStream.swift",
        "PDFDocument/PDFString.swift",
        "PDFDocument/PDFXref.swift",
        "Platform/AvailableColorSpaces.swift",
        "Platform/AvailableFonts.swift",
        "Prespecialize.swift",
        "SVGContext/SVGContext.swift",
        "SVGContext/SVGEffect/SVGBlendEffect.swift",
        "SVGContext/SVGEffect/SVGColorMatrixEffect.swift",
        "SVGContext/SVGEffect/SVGComponentTransferEffect.swift",
        "SVGContext/SVGEffect/SVGConvolveMatrixEffect.swift",
        "SVGContext/SVGEffect/SVGDisplacementMapEffect.swift",
        "SVGContext/SVGEffect/SVGDropShadowEffect.swift",
        "SVGContext/SVGEffect/SVGEffect.swift",
        "SVGContext/SVGEffect/SVGFloodEffect.swift",
        "SVGContext/SVGEffect/SVGGaussianBlurEffect.swift",
        "SVGContext/SVGEffect/SVGHueRotateEffect.swift",
        "SVGContext/SVGEffect/SVGImageEffect.swift",
        "SVGContext/SVGEffect/SVGLightingEffect.swift",
        "SVGContext/SVGEffect/SVGLuminanceToAlphaEffect.swift",
        "SVGContext/SVGEffect/SVGMergeEffect.swift",
        "SVGContext/SVGEffect/SVGMorphologyEffect.swift",
        "SVGContext/SVGEffect/SVGOffsetEffect.swift",
        "SVGContext/SVGEffect/SVGSaturateEffect.swift",
        "SVGContext/SVGEffect/SVGTileEffect.swift",
        "SVGContext/SVGEffect/SVGTurbulenceEffect.swift",
        "Serialization/FixedNumber.swift"
      ],
      "target_dependencies" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieGeometry",
      "module_type" : "SwiftTarget",
      "name" : "DoggieGeometry",
      "path" : "Sources/DoggieGeometry",
      "product_memberships" : [
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "ApplePlatform/AppleExported.swift",
        "ApplePlatform/Geometry/CGAffineTransform.swift",
        "ApplePlatform/Geometry/CGPath.swift",
        "ApplePlatform/Geometry/CGPoint.swift",
        "ApplePlatform/Geometry/CGRect.swift",
        "ApplePlatform/Geometry/CGSize.swift",
        "ApplePlatform/SwiftPlayground.swift",
        "Arithmetic.swift",
        "Bezier/Bezier.swift",
        "Bezier/BezierArc.swift",
        "Bezier/BezierOffset.swift",
        "Bezier/BezierProtocol.swift",
        "Bezier/CubicBezier.swift",
        "Bezier/CubicBezierPatch.swift",
        "Bezier/CubicBezierTriangularPatch.swift",
        "Bezier/LineSegment.swift",
        "Bezier/QuadBezier.swift",
        "Exported.swift",
        "Extension.swift",
        "Geometry/EdgeInsets.swift",
        "Geometry/Ellipse.swift",
        "Geometry/Geometry.swift",
        "Geometry/Matrix.swift",
        "Geometry/Point.swift",
        "Geometry/Rect.swift",
        "Geometry/SDTransform.swift",
        "Geometry/Size.swift",
        "Geometry/Tensor.swift",
        "Geometry/Vector.swift",
        "Shape/PathCoder.swift",
        "Shape/PathStroke.swift",
        "Shape/SVGPathCoder.swift",
        "Shape/Shape.swift",
        "Shape/ShapeSegment.swift",
        "Shape/ShapeTweening.swift",
        "Shape/ShapeWinding.swift",
        "Shape/VariableRoundStroke.swift",
        "ShapeRegion/BreakLoop.swift",
        "ShapeRegion/PathBuilder.swift",
        "ShapeRegion/ShapeRegion.swift",
        "ShapeRegion/ShapeRegionOp.swift",
        "ShapeRegion/ShapeRegionWinding.swift"
      ],
      "target_dependencies" : [
        "DoggieCore",
        "DoggieMath"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieGPU",
      "module_type" : "SwiftTarget",
      "name" : "DoggieGPU",
      "path" : "Sources/DoggieGPU",
      "product_memberships" : [
        "DoggieGPU",
        "Doggie"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/BilateralFilter.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/PalettizeKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGComponentTransferKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGConvolveKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGDisplacementMapKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGLightingKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGTurbulenceKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/WrapTileKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/kMeansClusteringKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/GPContext/Shaders/MeshGradientKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CoreImage/BilateralFilter.swift",
        "CoreImage/CIImage.swift",
        "CoreImage/CIVector.swift",
        "CoreImage/ConvolveKernel.swift",
        "CoreImage/CoreImage.swift",
        "CoreImage/MorphologyKernel.swift",
        "CoreImage/PalettizeKernel.swift",
        "CoreImage/SVGComponentTransferKernel.swift",
        "CoreImage/SVGConvolveKernel.swift",
        "CoreImage/SVGDisplacementMapKernel.swift",
        "CoreImage/SVGLightingKernel.swift",
        "CoreImage/SVGTurbulenceKernel.swift",
        "CoreImage/ShaderLoader.swift",
        "CoreImage/WrapTileKernel.swift",
        "CoreImage/kMeansClusteringKernel.swift",
        "Exported.swift",
        "GPContext/CGContextProcessorKernel.swift",
        "GPContext/CGPathProcessorKernel.swift",
        "GPContext/GPContext.swift",
        "GPContext/GPContextBase.swift",
        "GPContext/GPContextExtension.swift",
        "GPContext/GPContextPattern.swift",
        "GPContext/MeshGradientKernel.swift",
        "Metal/MTLDevice.swift",
        "Packed.swift",
        "SIMD.swift"
      ],
      "target_dependencies" : [
        "DoggieGraphics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieCore",
      "module_type" : "SwiftTarget",
      "name" : "DoggieCore",
      "path" : "Sources/DoggieCore",
      "product_dependencies" : [
        "RealModule",
        "Algorithms",
        "Collections",
        "Float16",
        "brotli"
      ],
      "product_memberships" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "ApplePlatform/AppleCompression.swift",
        "ApplePlatform/AppleExported.swift",
        "ApplePlatform/Metal.swift",
        "ApplePlatform/NSItemProvider.swift",
        "Compression/CompressionCodec.swift",
        "Compression/brotli/BrotliDecoder.swift",
        "Compression/brotli/BrotliEncoder.swift",
        "Compression/zlib/Deflate.swift",
        "Compression/zlib/Inflate.swift",
        "Compression/zlib/zlib.swift",
        "Concurrency/Sendable.swift",
        "Concurrency/SerialRunLoop.swift",
        "Concurrency/UnsafeSendable.swift",
        "Exported.swift",
        "Foundation/Algorithm.swift",
        "Foundation/Cache.swift",
        "Foundation/ContiguousBuffer.swift",
        "Foundation/Data.swift",
        "Foundation/Date.swift",
        "Foundation/FileManager.swift",
        "Foundation/Graph.swift",
        "Foundation/Locking.swift",
        "Foundation/MappedBuffer.swift",
        "Foundation/Parallel.swift",
        "Foundation/TypePunned.swift",
        "Foundation/TypedData.swift",
        "Foundation/URLComponents.swift",
        "Foundation/UUID.swift",
        "Foundation/WeakDictionary.swift",
        "Foundation/WeakSet.swift",
        "Json/Json.swift",
        "Json/JsonCodable.swift",
        "Json/JsonConvertible.swift",
        "Json/JsonNumber.swift",
        "Json/JsonNumberCodable.swift",
        "MediaType/FileExtension.swift",
        "MediaType/MIMEType.swift",
        "MediaType/MediaType.swift",
        "Serialization/BinaryFixedPoint.swift",
        "Serialization/ByteCodable.swift",
        "Serialization/Endianness.swift",
        "Serialization/Signature.swift",
        "Swift/CollectionExtension.swift",
        "Swift/Decimal.swift",
        "Swift/Dictionary.swift",
        "Swift/Equatable.swift",
        "Swift/FloatingPoint.swift",
        "Swift/Integer.swift",
        "Swift/OptionOneCollection.swift",
        "Swift/Policy.swift",
        "Swift/RawBitPattern.swift",
        "Swift/String.swift",
        "Swift/replaceValue.swift",
        "XML/SDXMLAttribute.swift",
        "XML/SDXMLDocument.swift",
        "XML/SDXMLElement.swift",
        "XML/SDXMLParser.swift",
        "XML/SDXMLString.swift"
      ],
      "target_dependencies" : [
        "zlib_c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Doggie",
      "module_type" : "SwiftTarget",
      "name" : "Doggie",
      "path" : "Sources/Doggie",
      "product_memberships" : [
        "Doggie"
      ],
      "sources" : [
        "Exported.swift"
      ],
      "target_dependencies" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
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.