The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ColorPaletteCodable, reference 6.12.1 (ff7a1c), with Swift 6.1 for macOS (SPM) on 24 Mar 2026 21:56:24 UTC.

Swift 6 data race errors: 39

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

365 | @available(macOS 11, iOS 14, tvOS 14, watchOS 7, *)
366 | public extension UTType {
367 | 	static var adobeSwatchExchange = UTType(PAL.Coder.ASE.utTypeString)!
    |             |- warning: static property 'adobeSwatchExchange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'adobeSwatchExchange' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'adobeSwatchExchange' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
368 | }
369 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/BasicXMLCoder.swift:45:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 43 | 		public let name = "Basic XML Palette"
 44 | 		public let fileExtension = ["xml"]
 45 | 		public static var utTypeString: String = "public.dagronf.colorpalette.palette.basicxml"   // conforms to `public.xml`
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 | 	}
 47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/CSVPaletteCoder.swift:53:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 51 | 		public let name = "CSV"
 52 | 		public let fileExtension = ["csv"]
 53 | 		public static var utTypeString = "public.dagronf.colorpalette.palette.csv"   // conforms to `public.comma-separated-values-text`
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |
 55 | 		/// Create a CSV Coder
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/CorelDraw3PaletteCoder.swift:49:14: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 47 | 		public init() {}
 48 |
 49 | 		static let regex = try! DSFRegex(#""(.*)"[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*"#)
    |              `- warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 50 | 	}
 51 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/CorelDraw3PaletteCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 18 | //
 19 |
 20 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 21 | import Foundation
 22 |
    :
 47 | 		public init() {}
 48 |
 49 | 		static let regex = try! DSFRegex(#""(.*)"[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*"#)
    |              |- note: add '@MainActor' to make static property 'regex' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 | 	}
 51 | }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/CorelPainterCoder.swift:50:14: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 48 | 		public init() {}
 49 |
 50 | 		static let regex = try! DSFRegex(#"[ \t]*R[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*G[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*B[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*(?:HV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:SV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:VV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(.*)"#)
    |              `- warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 51 | 	}
 52 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/CorelPainterCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 18 | //
 19 |
 20 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 21 | import Foundation
 22 |
    :
 48 | 		public init() {}
 49 |
 50 | 		static let regex = try! DSFRegex(#"[ \t]*R[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*G[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*B[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*(?:HV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:SV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:VV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(.*)"#)
    |              |- note: add '@MainActor' to make static property 'regex' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 | 	}
 52 | }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/DCPPaletteCoder.swift:31:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | 		public let name = "ColorPaletteCodable Binary Palette"
 30 | 		public let fileExtension = ["dcp"]
 31 | 		public static var utTypeString = "public.dagronf.colorpalette.palette.dcp"
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 | 		public init() {}
 33 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/GIMPPaletteCoder.swift:27:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | 		public let format: PAL.PaletteFormat = .gimp
 26 | 		public let name = "GIMP Palette"
 27 | 		public static var utTypeString: String = "public.dagronf.colorpalette.palette.gimp.gpl"
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | 		public let fileExtension = ["gpl"]
 29 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/HPLPaletteCoder.swift:29:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | 		public let format: PAL.PaletteFormat = .hpl
 28 | 		public let name = "Homesite Palette"
 29 | 		public static var utTypeString: String = "public.dagronf.colorpalette.palette.homesite"
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | 		public let fileExtension = ["hpl"]
 31 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/KOfficePaletteCoder.swift:27:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | 		public let format: PAL.PaletteFormat = .koffice
 26 | 		public let name = "KOffice Palette"
 27 | 		public static var utTypeString: String = "public.dagronf.colorpalette.palette.koffice"
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | 		public let fileExtension = ["colors"]
 29 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/PaintNETPaletteCoder.swift:44:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 | 		public let name = "Paint.NET Palette"
 43 | 		public let fileExtension = ["txt"]
 44 | 		public static var utTypeString: String = "public.dagronf.colorpalette.palette.paint.net"   // conforms to `public.text`
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 | 		public init() {}
 46 | 		static let validHexChars = "0123456789abcdefABCDEF"
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/PaintShopProPaletteCoder.swift:29:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | 		public let name = "Paint Shop Pro Palette"
 28 | 		public let fileExtension = ["psppalette", "pal"]
 29 | 		public static var utTypeString = "public.dagronf.colorpalette.palette.corel.pal"   // conforms to `public.text`
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | 		public init() {}
 31 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/RGB255PaletteCoder.swift:42:14: warning: static property 'regexDecimal' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
40 | 		//   250 169 55  Name1 and testing
41 | 		//   1 0 1 Name-2
42 | 		static let regexDecimal = try! DSFRegex(#"^\s*(\d+)\s+(\d+)\s+(\d+)(.*)$"#)
   |              `- warning: static property 'regexDecimal' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
43 |
44 | 		public init() {}
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/RGB255PaletteCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
18 | //
19 |
20 | import DSFRegex
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
21 | import Foundation
22 |
   :
40 | 		//   250 169 55  Name1 and testing
41 | 		//   1 0 1 Name-2
42 | 		static let regexDecimal = try! DSFRegex(#"^\s*(\d+)\s+(\d+)\s+(\d+)(.*)$"#)
   |              |- note: add '@MainActor' to make static property 'regexDecimal' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | 		public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/RGBAPaletteCoder.swift:47:14: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 45 | 		//   #112423     The second color
 46 | 		//   acbf
 47 | 		static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
    |              `- warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 48 | 	}
 49 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/RGBAPaletteCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 18 | //
 19 |
 20 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 21 | import Foundation
 22 |
    :
 45 | 		//   #112423     The second color
 46 | 		//   acbf
 47 | 		static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
    |              |- note: add '@MainActor' to make static property 'regex' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 | 	}
 49 | }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/RGBPaletteCoder.swift:44:14: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 42 | 		//   #112423     The second color
 43 | 		//   acbf
 44 | 		static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
    |              `- warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 45 | 	}
 46 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/RGBPaletteCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 18 | //
 19 |
 20 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 21 | import Foundation
 22 |
    :
 42 | 		//   #112423     The second color
 43 | 		//   acbf
 44 | 		static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
    |              |- note: add '@MainActor' to make static property 'regex' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 | 	}
 46 | }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/SKPPaletteCoder.swift:43:13: warning: let '__rgbColorRegex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 41 | }
 42 |
 43 | private let __rgbColorRegex = try! DSFRegex(#"color\(\['RGB', \[(\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b)\], (\b\d+(?:\.\d+)?\b),.*?'(.*?)'"#)
    |             `- warning: let '__rgbColorRegex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 44 | private let __paletteNameRegex = try! DSFRegex(#"set_name\((?:.*?)'(.*?)'\)"#)
 45 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/SKPPaletteCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 18 | //
 19 |
 20 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 21 | import Foundation
 22 |
    :
 41 | }
 42 |
 43 | private let __rgbColorRegex = try! DSFRegex(#"color\(\['RGB', \[(\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b)\], (\b\d+(?:\.\d+)?\b),.*?'(.*?)'"#)
    |             |- note: add '@MainActor' to make let '__rgbColorRegex' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 | private let __paletteNameRegex = try! DSFRegex(#"set_name\((?:.*?)'(.*?)'\)"#)
 45 |
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/SKPPaletteCoder.swift:44:13: warning: let '__paletteNameRegex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
 42 |
 43 | private let __rgbColorRegex = try! DSFRegex(#"color\(\['RGB', \[(\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b)\], (\b\d+(?:\.\d+)?\b),.*?'(.*?)'"#)
 44 | private let __paletteNameRegex = try! DSFRegex(#"set_name\((?:.*?)'(.*?)'\)"#)
    |             |- warning: let '__paletteNameRegex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__paletteNameRegex' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |
 46 | // MARK: - Decoding
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/SkencilPaletteCoder.swift:34:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 | 		public let format: PAL.PaletteFormat = .skencil
 33 | 		public let name = "Skencil Palette"
 34 | 		public static var utTypeString: String = "public.dagronf.colorpalette.palette.skencil"
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 | 		public let fileExtension = ["spl"]
 36 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/coders/SketchPaletteCoder.swift:28:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 | 		public let name = "Sketch Palette"
 27 | 		public let fileExtension = ["sketchpalette"]
 28 | 		public static var utTypeString = "com.bohemiancoding.sketch.palette"    // conforms to `public.json`
    |                     |- warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 | 		public init() {}
 30 |
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/OSLogger.swift:27:5: warning: let 'ColorPaletteLogger' is not concurrency-safe because non-'Sendable' type 'OSLogger' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 | // Logger
27 | let ColorPaletteLogger = OSLogger(subsystem: Bundle.main.bundleIdentifier!, category: "ColorPaletteCoder")
   |     |- warning: let 'ColorPaletteLogger' is not concurrency-safe because non-'Sendable' type 'OSLogger' may have shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: add '@MainActor' to make let 'ColorPaletteLogger' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | class OSLogger {
   |       `- note: class 'OSLogger' does not conform to the 'Sendable' protocol
30 | 	private let _logger: OSLog
31 |
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[191/219] Compiling ColorPaletteCodable PAL+Color+YCbCr.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[192/219] Compiling ColorPaletteCodable PAL+Color.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[193/219] Compiling ColorPaletteCodable PAL+Colors.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[194/219] Compiling ColorPaletteCodable PAL+Gradient+Snapshot.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[195/219] Compiling ColorPaletteCodable PAL+Gradient+SwiftUI.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[196/219] Compiling ColorPaletteCodable PAL+Gradient.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[197/219] Compiling ColorPaletteCodable PAL+Gradients+platform.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[198/219] Compiling ColorPaletteCodable PAL+Gradients.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[199/219] Compiling ColorPaletteCodable PAL+GradientsCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[200/219] Compiling ColorPaletteCodable PAL+GradientsFormat.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[201/219] Compiling ColorPaletteCodable AdobeGradientsCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[202/219] Compiling ColorPaletteCodable CSSGradientCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[203/219] Compiling ColorPaletteCodable ColorPaletteTablesCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 | /// The built-in supported coders
 23 | private let AvailableGradientCoders: [PAL_GradientsCoder] =
    |             |- warning: let 'AvailableGradientCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_GradientsCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 	PAL.GradientsFormat.allCases.map { $0.coder }
 25 |
 26 | /// A gradient coder protocol
 27 | public protocol PAL_GradientsCoder {
    |                 `- note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
 28 | 	/// The gradients format
 29 | 	static var format: PAL.GradientsFormat { get }
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:256:13: warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             `- warning: let '__colorNamePattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 19 |
 20 | import Foundation
 21 | import DSFRegex
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
 22 |
 23 | public extension PAL.Gradients.Coder {
    :
254 | // MARK: Color name definition
255 |
256 | private let __colorNamePattern = try! DSFRegex(#"\b(\w+)\b(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- note: add '@MainActor' to make let '__colorNamePattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | private func parseCSSColorName(_ component: String) -> __GradientStop? {
258 | 	let searchResult = __colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:286:13: warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
284 | // MARK: Parse Hex definition
285 |
286 | private let __hexPattern = try! DSFRegex(#"#([0-9a-fA-F]{8}|[0-9a-fA-F]{6}|[0-9a-fA-F]{4}|[0-9a-fA-F]{3})(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__hexPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hexPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | private func parseCSSHex(_ component: String) -> __GradientStop? {
288 | 	let searchResult = __hexPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:316:13: warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
314 | // MARK: Parse RGB[A] definition
315 |
316 | private let __rgbaPattern = try! DSFRegex(#"(?i)rgba?\(\s*([\d\.]*)(%)?[\s,]+(\b[\d\.]+\b)(%)?[\s,]+(\b[\d\.]+\b)(%)?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s*([\d\.]+)(deg|%)?)?"#)
    |             |- warning: let '__rgbaPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__rgbaPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | private func parseCSSRGBA(_ component: String) -> __GradientStop? {
318 | 	let searchResult = __rgbaPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/coders/CSSGradientCoder.swift:368:13: warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
366 | // MARK: HSL
367 |
368 | private let __hslPattern = try! DSFRegex(#"(?i)hsla?\(\s*([\d\.]*)(deg)?[\s,]+(\b[\d\.]+\b)%?[\s,]+(\b[\d\.]+\b)%?(?:[\s,]+([\d\.]*)(deg|%)?)?\)(?:\s(\b[\d\.]+\b)(%)?)?"#)
    |             |- warning: let '__hslPattern' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '__hslPattern' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | private func parseCSSHSLA(_ component: String) -> __GradientStop? {
370 | 	let searchResult = __hslPattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 28 |
 29 | /// A regex class wrapper for Swift
 30 | public class DSFRegex {
    |              `- note: class 'DSFRegex' does not conform to the 'Sendable' protocol
 31 | 	/// Regex errors
 32 | 	enum RegexError: Error {
[204/219] Compiling ColorPaletteCodable String+extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[205/219] Compiling ColorPaletteCodable SwiftUI+Color+extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[206/219] Compiling ColorPaletteCodable SwiftUI+Image+extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[207/219] Compiling ColorPaletteCodable Temperature.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[208/219] Compiling ColorPaletteCodable TemporaryFiles.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[209/219] Compiling ColorPaletteCodable TextParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[210/219] Compiling ColorPaletteCodable UInt32+extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[211/219] Compiling ColorPaletteCodable UnitValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[212/219] Compiling ColorPaletteCodable Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[213/219] Compiling ColorPaletteCodable X11Colors.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[214/219] Compiling ColorPaletteCodable xmlFormatters.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[215/219] Compiling ColorPaletteCodable resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/X11Colors.swift:32:13: warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	///   * [https://en.wikipedia.org/wiki/X11_color_names](https://en.wikipedia.org/wiki/X11_color_names)
 31 | 	///   * [https://www.w3schools.com/%5Ccolors/colors_x11.asp](https://www.w3schools.com/%5Ccolors/colors_x11.asp)
 32 | 	static let X11ColorPalette = PAL.Palette(
    |             |- warning: static property 'X11ColorPalette' is not concurrency-safe because non-'Sendable' type 'PAL.Palette' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'X11ColorPalette' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		colors: [
 34 | 			rgb255(0, 0, 0, 0,    name: "transparent"),  // Special case
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift:24:9: note: consider making struct 'Palette' conform to the 'Sendable' protocol
 22 | public extension PAL {
 23 | 	/// A color palette
 24 | 	struct Palette: Equatable, Codable {
    |         `- note: consider making struct 'Palette' conform to the 'Sendable' protocol
 25 | 		/// Unique object identifier
 26 | 		public let id = UUID()
[215/219] Write Objects.LinkFileList
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'Utils.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/SwiftImageReadWrite.build/Utils.swift.o(Utils.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ColorPaletteCodable.build/Utils.swift.o(Utils.swift.o)'
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'resource_bundle_accessor.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ZIPFoundation.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/TinyCSV.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)'
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'resource_bundle_accessor.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/TinyCSV.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/SwiftImageReadWrite.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)'
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'resource_bundle_accessor.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/SwiftImageReadWrite.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/DSFRegex.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)'
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'resource_bundle_accessor.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/DSFRegex.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ColorPaletteCodable.build/resource_bundle_accessor.swift.o(resource_bundle_accessor.swift.o)'
[217/219] Archiving libColorPaletteCodable-static.a
[218/219] Linking libColorPaletteCodable-shared.dylib
Build complete! (24.10s)
Fetching https://github.com/dagronf/ZIPFoundation
Fetching https://github.com/dagronf/SwiftImageReadWrite
Fetching https://github.com/dagronf/DSFRegex
Fetching https://github.com/dagronf/BytesParser
Fetching https://github.com/dagronf/TinyCSV
[1/240] Fetching dsfregex
[16/517] Fetching dsfregex, tinycsv
[287/5427] Fetching dsfregex, tinycsv, zipfoundation
[337/5805] Fetching dsfregex, tinycsv, zipfoundation, swiftimagereadwrite
[364/6261] Fetching dsfregex, tinycsv, zipfoundation, swiftimagereadwrite, bytesparser
Fetched https://github.com/dagronf/BytesParser from cache (0.80s)
[1283/5805] Fetching dsfregex, tinycsv, zipfoundation, swiftimagereadwrite
Fetched https://github.com/dagronf/SwiftImageReadWrite from cache (1.28s)
Fetched https://github.com/dagronf/ZIPFoundation from cache (1.28s)
Fetched https://github.com/dagronf/TinyCSV from cache (1.28s)
Fetched https://github.com/dagronf/DSFRegex from cache (1.28s)
Computing version for https://github.com/dagronf/ZIPFoundation
Computed https://github.com/dagronf/ZIPFoundation at 0.9.19 (1.77s)
Computing version for https://github.com/dagronf/BytesParser
Computed https://github.com/dagronf/BytesParser at 3.2.1 (0.56s)
Computing version for https://github.com/dagronf/DSFRegex
Computed https://github.com/dagronf/DSFRegex at 3.4.0 (0.54s)
Computing version for https://github.com/dagronf/TinyCSV
Computed https://github.com/dagronf/TinyCSV at 1.2.0 (0.54s)
Computing version for https://github.com/dagronf/SwiftImageReadWrite
Computed https://github.com/dagronf/SwiftImageReadWrite at 1.9.2 (0.54s)
Creating working copy for https://github.com/dagronf/SwiftImageReadWrite
Working copy of https://github.com/dagronf/SwiftImageReadWrite resolved at 1.9.2
Creating working copy for https://github.com/dagronf/DSFRegex
Working copy of https://github.com/dagronf/DSFRegex resolved at 3.4.0
Creating working copy for https://github.com/dagronf/TinyCSV
Working copy of https://github.com/dagronf/TinyCSV resolved at 1.2.0
Creating working copy for https://github.com/dagronf/ZIPFoundation
Working copy of https://github.com/dagronf/ZIPFoundation resolved at 0.9.19
Creating working copy for https://github.com/dagronf/BytesParser
Working copy of https://github.com/dagronf/BytesParser resolved at 3.2.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "dsfregex",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.4.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/dagronf/DSFRegex"
    },
    {
      "identity" : "swiftimagereadwrite",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.7.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/dagronf/SwiftImageReadWrite"
    },
    {
      "identity" : "tinycsv",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/dagronf/TinyCSV"
    },
    {
      "identity" : "bytesparser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.2.1",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/dagronf/BytesParser"
    },
    {
      "identity" : "zipfoundation",
      "requirement" : {
        "exact" : [
          "0.9.19"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/dagronf/ZIPFoundation"
    }
  ],
  "manifest_display_name" : "ColorPaletteCodable",
  "name" : "ColorPaletteCodable",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "ColorPaletteCodable",
      "targets" : [
        "ColorPaletteCodable"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ColorPaletteCodable-static",
      "targets" : [
        "ColorPaletteCodable"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "ColorPaletteCodable-shared",
      "targets" : [
        "ColorPaletteCodable"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ColorPaletteCodableTests",
      "module_type" : "SwiftTarget",
      "name" : "ColorPaletteCodableTests",
      "path" : "Tests/ColorPaletteCodableTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/37_waves.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/acton.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/balance.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/bhw1_02.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/dem3.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/gray.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/magma.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/os250k-metres.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/panoply.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/wysiwyg.cpt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/dcg/GLASS.dcg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/dcg/tsmp.dcg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/39_rainbow_white.ggr",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/Blues.ggr",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/Pastel_Rainbow.ggr",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/Skyline.ggr",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/Tube_Red.ggr",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/colorcube.ggr",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/arctic.gpf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/argentina.gpf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/b-255-166.gpf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/geo-smooth.gpf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/ipod-pink.gpf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/grd/30.grd",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/grd/35.grd",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/grd/my-custom-gradient-3-rgb.grd",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/jsongradient/basic3pos.jsoncolorgradient",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/jsongradient/simple2.jsoncolorgradient",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/jsongradient/skyline.jsoncolorgradient",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/pspgradient/temperature.pspgradient",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/acb/ANPA Color.acb",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/acb/DIC Color Guide.acb",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/acb/HKS E (LAB).acb",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/acb/HKS K Process (CMYK).acb",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/acbl/basic.acbl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/454306_iColorpalette.aco",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/Material Palette.aco",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/Zeldman-v1.aco",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/arne-v20-16.aco",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/davis-colors-concrete-pigments.aco",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/act/16pal_v20.act",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/act/arne-v20-16.act",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/act/iconworkshop.act",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/afpalette/Bulma.io.afpalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/afpalette/basicrgb.afpalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_basicrgbacolors.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_basicrgbcolors.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_basicrgbcolors_with_alpha.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_colors_comments_xml.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_colors_xml.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_material_colors.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_webcolors_colors.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/1629367375_iColorpalette.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/24 colour palettes.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/3M Scotchlite Serie 580_680.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/3M Scotchlite Serie 580_680.gpl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/ADG3-CMYK.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/BenjaminMoore_AmericasColors_en-us.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/Big-Red-Barn.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/Raspberry.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/Ultra-Mattes Reverse.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/argyle-socks.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/color-cubes.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/control.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/palette_complex.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/palette_pantones.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/palette_simple.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/sw-colors-name-ede-ase.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/unsupported_version.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/wisteric-17.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/zenit-241.ase",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/autocad-colorbook/BM Classic Colors.acb",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/autocad-colorbook/COLORBOND.acb",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/autocad-colorbook/Resene Total Colour System - 2022.acb",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/autocad-colorbook/basic-rgb.acb",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/clr/DarkMailTopBar.clr",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/clr/apple-ii.clr",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/coreldrawpal/DB32-CDR.PAL",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/coreldrawpal/Farbpalette Trotec Laser (Corel Draw 3).pal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/coreldrawpal/WithQuote.PAL",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/corelpainter/adobe-swatch-fun.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/corelpainter/corel-odd-coding.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/cpl/LaserGlow.cpl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/csv/pastel-extended.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/csv/pastel.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/gimp/Caramel.gpl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/gimp/Default.gpl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/gimp/atari-800xl-palette.gpl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/gimp/pear36-sep-rn.gpl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/hex/behr.hex",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/hex/pear36-transparency.hex",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/hex/pear36.hex",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/hpl/hpl1_v4.0.hpl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/hpl/hpl2_v4.0.hpl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/midnight-ablaze-1x.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/pastel.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/pastel.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/sunnyswamp-1x.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/sweetie-16-32x.png",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/jcw/wikicolorlist.jcw",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/json/encoded.jsoncolorpalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/json/groups.jsoncolorpalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/koffice/KDE40.colors",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintnet/Paint_NET.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintnet/eb-gb-strawberry-flavour.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintnet/lospec500.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/DB16.pal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/atari-800xl-palette.psppalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/empty.pal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/jasc256.pal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/paintnet-palette.pal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/procreateswatches/Ascend.swatches",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/procreateswatches/Cathode.swatches",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/procreateswatches/Pantone_2019.swatches",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/procreateswatches/Retro_&_Vintage.swatches",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/procreateswatches/mypalette.swatches",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/rgb/bad-coding.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/rgb/basic1.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/rgb/basic1alpha.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/riff/arne-v20-16.pal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/riff/sample.pal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sbz/sample.sbz",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/scribusXML/Echo_Icon_Theme_Palette.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/scribusXML/Scribus_Splash.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/simplepalette/aap-64.color-palette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/simplepalette/basic.color-palette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/simplepalette/favorites.color-palette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/skencil/mini.spl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/emoji-average-colors.gpl.sketchpalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/iOS-Material-FlatUI.sketchpalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/ios.sketchpalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/material-design.sketchpalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/sketch-default.sketchpalette",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/skp/Lible_Colors.skp",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/skp/Ubuntu_colors.skp",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/skp/colours.skp",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/soc/freecolour-hlc.soc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/soc/libreoffice.soc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/soc/scribus.soc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/soc/standard.soc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/vga24bit/18-bit sample.pal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/vga24bit/atari-7800-palette.pal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/Satins Cap Colors.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/Signature.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/ThermoFlex Plus.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/basic-xml-1.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/db32-cmyk.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/db32-rgb.xml",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/35.grd.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/expected/expected - 24 colour palettes.ase.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/expected/expected - atari-800xl-palette.gpl.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/expected/expected - pear36-transparency.hex.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/expected/expected - zenit-241.ase.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/skyline.jsoncolorgradient.svg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/temperature.pspgradient.svg",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CodableTests.swift",
        "ColorFunctionTests.swift",
        "ColorTests.swift",
        "CommonTests.swift",
        "CoreGraphicsTests.swift",
        "GrayTests.swift",
        "ImageImportTests.swift",
        "ImageTests.swift",
        "InterpolationTests.swift",
        "PasteboardTests.swift",
        "TemperatureTests.swift",
        "Utils.swift",
        "gradient/CPTGradientTests.swift",
        "gradient/CSSParsingTests.swift",
        "gradient/DCGGradientTests.swift",
        "gradient/GPFGradientTests.swift",
        "gradient/GradientFormatTests.swift",
        "gradient/GradientTests.swift",
        "palette/ACBLPaletteTests.swift",
        "palette/ACBPaletteTests.swift",
        "palette/ACOPaletteTests.swift",
        "palette/ACTPaletteTests.swift",
        "palette/AFPaletteTests.swift",
        "palette/ASEPaletteTests.swift",
        "palette/AndroidColorsXMLTests.swift",
        "palette/AutoCADColorBookTests.swift",
        "palette/CLRPaletteTests.swift",
        "palette/CPLPaletteTests.swift",
        "palette/CSVCoderTests.swift",
        "palette/CoreDrawV3Tests.swift",
        "palette/CorelPainterTests.swift",
        "palette/DCPPaletteTests.swift",
        "palette/GIMPPaletteTests.swift",
        "palette/HEXPaletteTests.swift",
        "palette/HPLPaletteTests.swift",
        "palette/JASCPaletteTests.swift",
        "palette/JCWPaletteTests.swift",
        "palette/JSONPaletteTests.swift",
        "palette/KOfficePaletteTests.swift",
        "palette/OpenOfficePaletteTests.swift",
        "palette/PaintNETPaletteTests.swift",
        "palette/ProcreateSwatchesTests.swift",
        "palette/RGBPaletteTests.swift",
        "palette/RIFFPaletteTests.swift",
        "palette/SKPPaletteTests.swift",
        "palette/SVGPaletteTests.swift",
        "palette/ScribusXMLPaletteTests.swift",
        "palette/SimplePaletteTests.swift",
        "palette/SkencilPaletteTests.swift",
        "palette/SketchPaletteTests.swift",
        "palette/SwatchBookerTests.swift",
        "palette/VGA24bitPaletteTests.swift",
        "palette/XMLPaletteTests.swift"
      ],
      "target_dependencies" : [
        "ColorPaletteCodable"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ColorPaletteCodable",
      "module_type" : "SwiftTarget",
      "name" : "ColorPaletteCodable",
      "path" : "Sources/ColorPaletteCodable",
      "product_dependencies" : [
        "DSFRegex",
        "SwiftImageReadWrite",
        "TinyCSV",
        "BytesParser",
        "ZIPFoundation"
      ],
      "product_memberships" : [
        "ColorPaletteCodable",
        "ColorPaletteCodable-static",
        "ColorPaletteCodable-shared"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "PAL+ColorConversions.swift",
        "PAL+Common.swift",
        "PAL+CoreGraphics.swift",
        "PAL+Errors.swift",
        "PAL+Functions.swift",
        "PAL+Group.swift",
        "PAL+Image.swift",
        "PAL+Pasteboard+iOS.swift",
        "PAL+Pasteboard+macOS.swift",
        "PAL+StandardColors.swift",
        "PAL+Temperature.swift",
        "PAL+Types.swift",
        "PAL+UniformTypeIdentifiers.swift",
        "color/PAL+Color+Array.swift",
        "color/PAL+Color+CMYK.swift",
        "color/PAL+Color+Gray.swift",
        "color/PAL+Color+HSB.swift",
        "color/PAL+Color+HSL.swift",
        "color/PAL+Color+Hex.swift",
        "color/PAL+Color+Interpolation.swift",
        "color/PAL+Color+LAB.swift",
        "color/PAL+Color+Modifications.swift",
        "color/PAL+Color+OkLab.swift",
        "color/PAL+Color+RGB.swift",
        "color/PAL+Color+Transferable.swift",
        "color/PAL+Color+XYZ.swift",
        "color/PAL+Color+YCbCr.swift",
        "color/PAL+Color.swift",
        "color/PAL+Colors.swift",
        "gradient/PAL+Gradient+Snapshot.swift",
        "gradient/PAL+Gradient+SwiftUI.swift",
        "gradient/PAL+Gradient.swift",
        "gradient/PAL+Gradients+platform.swift",
        "gradient/PAL+Gradients.swift",
        "gradient/PAL+GradientsCoder.swift",
        "gradient/PAL+GradientsFormat.swift",
        "gradient/coders/AdobeGradientsCoder.swift",
        "gradient/coders/CSSGradientCoder.swift",
        "gradient/coders/ColorPaletteTablesCoder.swift",
        "gradient/coders/DCGGradientCoder.swift",
        "gradient/coders/GIMPGradientCoder.swift",
        "gradient/coders/GNUPlotGradientCoder.swift",
        "gradient/coders/JSONGradientCoder.swift",
        "gradient/coders/PaintShopProGradientCoder.swift",
        "gradient/coders/SVGGradientCoder.swift",
        "gradient/coders/SwiftGenGradientCoder.swift",
        "palette/PAL+Palette.swift",
        "palette/PAL+PaletteCoder.swift",
        "palette/PAL+PaletteCoderProtocol.swift",
        "palette/PAL+PaletteFormat.swift",
        "palette/coders/ACBLPaletteCoder.swift",
        "palette/coders/ACBPaletteCoder.swift",
        "palette/coders/ACOPaletteCoder.swift",
        "palette/coders/ACTPaletteCoder.swift",
        "palette/coders/AFPaletteCoder.swift",
        "palette/coders/ASEPaletteCoder.swift",
        "palette/coders/AndroidColorsXMLCoder.swift",
        "palette/coders/AutodeskColorBook.swift",
        "palette/coders/BasicXMLCoder.swift",
        "palette/coders/CLFPaletteCoder.swift",
        "palette/coders/CLRPaletteCoder.swift",
        "palette/coders/CPLPaletteCoder.swift",
        "palette/coders/CSVPaletteCoder.swift",
        "palette/coders/CorelDraw3PaletteCoder.swift",
        "palette/coders/CorelPainterCoder.swift",
        "palette/coders/CorelXMLPaletteCoder.swift",
        "palette/coders/DCPPaletteCoder.swift",
        "palette/coders/GIMPPaletteCoder.swift",
        "palette/coders/HEXPaletteCoder.swift",
        "palette/coders/HPLPaletteCoder.swift",
        "palette/coders/ImagePaletteCoder.swift",
        "palette/coders/JCWPaletteCoder.swift",
        "palette/coders/JSONPaletteCoder.swift",
        "palette/coders/KOfficePaletteCoder.swift",
        "palette/coders/OpenOfficePaletteCoder.swift",
        "palette/coders/PaintNETPaletteCoder.swift",
        "palette/coders/PaintShopProPaletteCoder.swift",
        "palette/coders/ProcreateSwatchesCoder.swift",
        "palette/coders/RGB255PaletteCoder.swift",
        "palette/coders/RGBAPaletteCoder.swift",
        "palette/coders/RGBPaletteCoder.swift",
        "palette/coders/RIFFPaletteCoder.swift",
        "palette/coders/SKPPaletteCoder.swift",
        "palette/coders/SVGPaletteCoder.swift",
        "palette/coders/ScribusXMLPaletteCoder.swift",
        "palette/coders/SimplePaletteCoder.swift",
        "palette/coders/SkencilPaletteCoder.swift",
        "palette/coders/SketchPaletteCoder.swift",
        "palette/coders/SwatchbookerCoder.swift",
        "palette/coders/SwiftPaletteCoder.swift",
        "palette/coders/VGA18BitPaletteCoder.swift",
        "palette/coders/VGA24BitPaletteCoder.swift",
        "platform/PAL+CGColor.swift",
        "platform/PAL+NSColorList.swift",
        "platform/PAL+SwiftUI.swift",
        "platform/PAL+iOS.swift",
        "platform/PAL+macOS.swift",
        "private/BytesParser+extensions.swift",
        "private/CGColor+HexExtensions.swift",
        "private/CGColor+extensions.swift",
        "private/CGContext+exensions.swift",
        "private/CGGradient+extensions.swift",
        "private/Collection+extensions.swift",
        "private/Data+extensions.swift",
        "private/Extensions.swift",
        "private/HSBHelpers.swift",
        "private/HexColorUtilities.swift",
        "private/InputStream+extensions.swift",
        "private/NumberFormatter+extensions.swift",
        "private/OSLogger.swift",
        "private/OkLab+priv.swift",
        "private/Optional+extensions.swift",
        "private/SIMD3+extensions.swift",
        "private/SIMD3.swift",
        "private/Scanner+extensions.swift",
        "private/String+decoding.swift",
        "private/String+extensions.swift",
        "private/SwiftUI+Color+extensions.swift",
        "private/SwiftUI+Image+extensions.swift",
        "private/Temperature.swift",
        "private/TemporaryFiles.swift",
        "private/TextParser.swift",
        "private/UInt32+extensions.swift",
        "private/UnitValue.swift",
        "private/Utils.swift",
        "private/X11Colors.swift",
        "private/xmlFormatters.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.