The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of ColorPaletteCodable, reference 6.7.2 (bae0a8), with Swift 6.1 for macOS (SPM) on 31 May 2025 17:15:33 UTC.

Swift 6 data race errors: 36

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

 31 | 		/// The color name
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:42:13: warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
40 | 	static let cyan    = cmykf(1.0, 0.0, 0.0, 0.0, 1.0)
41 | 	/// CMYK magenta color
42 | 	static let magenta = cmykf(0.0, 1.0, 0.0, 0.0, 1.0)
   |             |- warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'magenta' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | 	/// CMYK yellow color
44 | 	static let yellow  = cmykf(0.0, 0.0, 1.0, 0.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
 27 | public extension PAL {
 28 | 	/// A color in the palette
 29 | 	struct Color: Equatable, CustomStringConvertible {
    |         `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 30 | 		public let id = UUID()
 31 | 		/// The color name
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:44:13: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
42 | 	static let magenta = cmykf(0.0, 1.0, 0.0, 0.0, 1.0)
43 | 	/// CMYK yellow color
44 | 	static let yellow  = cmykf(0.0, 0.0, 1.0, 0.0, 1.0)
   |             |- warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | 	/// CMYK [key color](https://www.jukeboxprint.com/blog/understanding-K-in-CMYK)
46 | 	static let key     = cmykf(0.0, 0.0, 0.0, 1.0, 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
 27 | public extension PAL {
 28 | 	/// A color in the palette
 29 | 	struct Color: Equatable, CustomStringConvertible {
    |         `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 30 | 		public let id = UUID()
 31 | 		/// The color name
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:46:13: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
44 | 	static let yellow  = cmykf(0.0, 0.0, 1.0, 0.0, 1.0)
45 | 	/// CMYK [key color](https://www.jukeboxprint.com/blog/understanding-K-in-CMYK)
46 | 	static let key     = cmykf(0.0, 0.0, 0.0, 1.0, 1.0)
   |             |- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'key' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 | 	/// Basic pink color
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
 27 | public extension PAL {
 28 | 	/// A color in the palette
 29 | 	struct Color: Equatable, CustomStringConvertible {
    |         `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 30 | 		public let id = UUID()
 31 | 		/// The color name
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:49:13: warning: static property 'pink' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
47 |
48 | 	/// Basic pink color
49 | 	static let pink    = rgbf(1, 0.251, 0.505)
   |             |- warning: static property 'pink' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'pink' 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/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
 27 | public extension PAL {
 28 | 	/// A color in the palette
 29 | 	struct Color: Equatable, CustomStringConvertible {
    |         `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 30 | 		public let id = UUID()
 31 | 		/// The color name
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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 {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift:342:13: 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
340 | @available(macOS 11, iOS 14, tvOS 14, watchOS 7, *)
341 | public extension UTType {
342 | 	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
343 | }
344 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/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/coders/palette/SKPPaletteCoder.swift:38: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
 36 | }
 37 |
 38 | 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
 39 | private let __paletteNameRegex = try! DSFRegex(#"set_name\((?:.*?)'(.*?)'\)"#)
 40 |
/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/coders/palette/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 |
    :
 36 | }
 37 |
 38 | 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
 39 | private let __paletteNameRegex = try! DSFRegex(#"set_name\((?:.*?)'(.*?)'\)"#)
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift:39: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
 37 |
 38 | private let __rgbColorRegex = try! DSFRegex(#"color\(\['RGB', \[(\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b)\], (\b\d+(?:\.\d+)?\b),.*?'(.*?)'"#)
 39 | 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
 40 |
 41 | // 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/coders/palette/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/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/palette/PAL+PaletteCoder.swift:29:13: warning: static property 'TextBasedCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_PaletteCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |
 28 | 	/// All text-based coders
 29 | 	static let TextBasedCoders: [PAL_PaletteCoder] = [
    |             |- warning: static property 'TextBasedCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_PaletteCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'TextBasedCoders' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | 		PAL.Coder.RGB(),
 31 | 		PAL.Coder.RGBA(),
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteCoderProtocol.swift:28:17: note: protocol 'PAL_PaletteCoder' does not conform to the 'Sendable' protocol
26 |
27 | /// A Palette coder protocol
28 | public protocol PAL_PaletteCoder {
   |                 `- note: protocol 'PAL_PaletteCoder' does not conform to the 'Sendable' protocol
29 | 	/// The palette format
30 | 	var format: PAL.PaletteFormat { get }
/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/OkLab+priv.swift:62:13: warning: let '_cubed' is not concurrency-safe because non-'Sendable' type 'Vec3<Double>' may have shared mutable state; this is an error in the Swift 6 language mode
 60 | // MARK: - Private implementations
 61 |
 62 | private let _cubed = Vec3<Double>(3, 3, 3)
    |             |- warning: let '_cubed' is not concurrency-safe because non-'Sendable' type 'Vec3<Double>' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make let '_cubed' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |
 64 | internal func sRGB_to_OkLab(_ c: Vec3<Double>) -> Vec3<Double> {
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/Vec3.swift:23:8: note: consider making generic struct 'Vec3' conform to the 'Sendable' protocol
21 |
22 | /// A simple vector containing 3 elements
23 | struct Vec3<T: BinaryFloatingPoint> {
   |        `- note: consider making generic struct 'Vec3' conform to the 'Sendable' protocol
24 | 	let x: T
25 | 	let y: T
/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(255, 250, 250, name: "snow"),
/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()
[183/209] Compiling ColorPaletteCodable PAL+UniformTypeIdentifiers.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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 {
[184/209] Compiling ColorPaletteCodable AdobeGradientsCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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 {
[185/209] Compiling ColorPaletteCodable CSSGradientCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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 {
[186/209] Compiling ColorPaletteCodable ColorPaletteTablesCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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 {
[187/209] Compiling ColorPaletteCodable DCGGradientCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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 {
[188/209] Compiling ColorPaletteCodable GIMPGradientCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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 {
[189/209] Compiling ColorPaletteCodable GNUPlotGradientCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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 {
[190/209] Compiling ColorPaletteCodable JSONGradientCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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 {
[191/209] Compiling ColorPaletteCodable PaintShopProGradientCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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/209] Compiling ColorPaletteCodable SVGGradientCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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/209] Compiling ColorPaletteCodable SwiftGenGradientCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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/209] Compiling ColorPaletteCodable ACBPaletteCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:234: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
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             `- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	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/coders/gradient/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 {
    :
232 | // MARK: Color name definition
233 |
234 | private let colorNamePattern = try! DSFRegex(#"\b(\w*)\b(?:\s*([\d\.]+)%)?"#)
    |             |- 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
235 | private func parseCSSColorName(_ component: String) -> GStop? {
236 | 	let searchResult = colorNamePattern.matches(for: component)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/gradient/CSSGradientCoder.swift:259: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
257 | // MARK: Parse Hex definition
258 |
259 | 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\.]+)%)?"#)
    |             |- 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
260 | private func parseCSSHex(_ component: String) -> GStop? {
261 | 	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/coders/gradient/CSSGradientCoder.swift:285: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
283 | // MARK: Parse RGB[A] definition
284 |
285 | private let rgbaPattern = try! DSFRegex(#"rgba?\(\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)\s*,\s*(\b\d{1,3}\b)(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |             |- 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
286 | private func parseCSSRGBA(_ component: String) -> GStop? {
287 | 	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/coders/gradient/CSSGradientCoder.swift:339:5: 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
337 | // MARK: HSL
338 |
339 | let hslPattern = try! DSFRegex(#"hsla?\(\s*(\b[\d\.]+\b)\s*,\s*(\b[\d\.]+\b)%\s*,\s*(\b[\d\.]+\b)%\s*(?:\s*,\s*(\d*\.?\d+))?\)\s*(?:([\d\.]+)%?)?"#)
    |     |- 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
340 | private func parseCSSHSLA(_ component: String) -> GStop? {
341 | 	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/209] 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(255, 250, 250, name: "snow"),
/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()
[196/209] 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(255, 250, 250, name: "snow"),
/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()
[197/209] 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(255, 250, 250, name: "snow"),
/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()
[198/209] 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(255, 250, 250, name: "snow"),
/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()
[199/209] 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(255, 250, 250, name: "snow"),
/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()
[200/209] 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(255, 250, 250, name: "snow"),
/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()
[201/209] 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(255, 250, 250, name: "snow"),
/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()
[202/209] Compiling ColorPaletteCodable Vec3.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(255, 250, 250, name: "snow"),
/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()
[203/209] 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(255, 250, 250, name: "snow"),
/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()
[204/209] 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(255, 250, 250, name: "snow"),
/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/209] 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(255, 250, 250, name: "snow"),
/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/209] 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/ColorPaletteCodable.build/Utils.swift.o(Utils.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/SwiftImageReadWrite.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/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)'
/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/ColorPaletteCodable.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)'
[207/209] Archiving libColorPaletteCodable-static.a
[208/209] Linking libColorPaletteCodable-shared.dylib
Build complete! (20.28s)
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/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/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/Big-Red-Barn.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/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/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/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/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/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/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/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/JASCPaletteTests.swift",
        "palette/JCWPaletteTests.swift",
        "palette/JSONPaletteTests.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/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",
        "coders/gradient/AdobeGradientsCoder.swift",
        "coders/gradient/CSSGradientCoder.swift",
        "coders/gradient/ColorPaletteTablesCoder.swift",
        "coders/gradient/DCGGradientCoder.swift",
        "coders/gradient/GIMPGradientCoder.swift",
        "coders/gradient/GNUPlotGradientCoder.swift",
        "coders/gradient/JSONGradientCoder.swift",
        "coders/gradient/PaintShopProGradientCoder.swift",
        "coders/gradient/SVGGradientCoder.swift",
        "coders/gradient/SwiftGenGradientCoder.swift",
        "coders/palette/ACBPaletteCoder.swift",
        "coders/palette/ACOPaletteCoder.swift",
        "coders/palette/ACTPaletteCoder.swift",
        "coders/palette/AFPaletteCoder.swift",
        "coders/palette/ASEPaletteCoder.swift",
        "coders/palette/AndroidColorsXMLCoder.swift",
        "coders/palette/AutodeskColorBook.swift",
        "coders/palette/BasicXMLCoder.swift",
        "coders/palette/CLFPaletteCoder.swift",
        "coders/palette/CLRPaletteCoder.swift",
        "coders/palette/CPLPaletteCoder.swift",
        "coders/palette/CSVPaletteCoder.swift",
        "coders/palette/CorelDraw3PaletteCoder.swift",
        "coders/palette/CorelPainterCoder.swift",
        "coders/palette/CorelXMLPaletteCoder.swift",
        "coders/palette/DCPPaletteCoder.swift",
        "coders/palette/GIMPPaletteCoder.swift",
        "coders/palette/HEXPaletteCoder.swift",
        "coders/palette/ImagePaletteCoder.swift",
        "coders/palette/JCWPaletteCoder.swift",
        "coders/palette/JSONPaletteCoder.swift",
        "coders/palette/OpenOfficePaletteCoder.swift",
        "coders/palette/PaintNETPaletteCoder.swift",
        "coders/palette/PaintShopProPaletteCoder.swift",
        "coders/palette/ProcreateSwatchesCoder.swift",
        "coders/palette/RGBAPaletteCoder.swift",
        "coders/palette/RGBPaletteCoder.swift",
        "coders/palette/RIFFPaletteCoder.swift",
        "coders/palette/SKPPaletteCoder.swift",
        "coders/palette/SVGPaletteCoder.swift",
        "coders/palette/ScribusXMLPaletteCoder.swift",
        "coders/palette/SimplePaletteCoder.swift",
        "coders/palette/SketchPaletteCoder.swift",
        "coders/palette/SwatchbookerCoder.swift",
        "coders/palette/SwiftPaletteCoder.swift",
        "coders/palette/VGA18BitPaletteCoder.swift",
        "coders/palette/VGA24BitPaletteCoder.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.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",
        "palette/PAL+Palette.swift",
        "palette/PAL+PaletteCoder.swift",
        "palette/PAL+PaletteCoderProtocol.swift",
        "palette/PAL+PaletteFormat.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/Extensions.swift",
        "private/HSBHelpers.swift",
        "private/HexColorUtilities.swift",
        "private/InputStream+extensions.swift",
        "private/NumberFormatter+extensions.swift",
        "private/OSLogger.swift",
        "private/OkLab+priv.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/TextParser.swift",
        "private/UInt32+extensions.swift",
        "private/UnitValue.swift",
        "private/Utils.swift",
        "private/Vec3.swift",
        "private/X11Colors.swift",
        "private/xmlFormatters.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/dagronf/colorpalettecodable/6.7.2
Repository:               dagronf/ColorPaletteCodable
Swift version used:       6.1
Target:                   ColorPaletteCodable
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'ColorPaletteCodable'...
Finished extracting symbol information for 'ColorPaletteCodable'. (11.87s)
Building documentation for 'ColorPaletteCodable'...
warning: Parameter 'colorType' is missing documentation
  --> Sources/ColorPaletteCodable/color/PAL+Color+LAB.swift:86:30-86:30
84 | 	/// - Parameters:
85 | 	///   - color: The LAB represention of the color
86 + 	///   - name: The color name
   |                              ╰─suggestion: Document 'colorType' parameter
87 | 	init(color: PAL.Color.LAB, name: String = "", colorType: PAL.ColorType = .global) throws {
88 | 		self.colorSpace = .LAB
warning: Parameter 'whitef' not found in instance method declaration
  --> Sources/ColorPaletteCodable/color/PAL+Color+Modifications.swift:27:8-27:51
25 | 	/// Replace the color components of this color to rgb components while keeping its unique identifier
26 | 	/// - Parameters:
27 + 	///   - whitef: The while component (0.0 ... 1.0)
   |        ╰─suggestion: Remove 'whitef' parameter documentation
28 | 	///   - af: Alpha component (0.0 ... 1.0)
29 | 	mutating func setRGB(rf: Double, gf: Double, bf: Double, af: Double) {
warning: Parameter 'bf' is missing documentation
  --> Sources/ColorPaletteCodable/color/PAL+Color+Modifications.swift:28:43-28:43
26 | 	/// - Parameters:
27 | 	///   - whitef: The while component (0.0 ... 1.0)
28 + 	///   - af: Alpha component (0.0 ... 1.0)
   |        ╰─suggestion: Document 'bf' parameter
29 | 	mutating func setRGB(rf: Double, gf: Double, bf: Double, af: Double) {
30 | 		self.colorSpace = .RGB
warning: Parameter 'gf' is missing documentation
  --> Sources/ColorPaletteCodable/color/PAL+Color+Modifications.swift:28:43-28:43
26 | 	/// - Parameters:
27 | 	///   - whitef: The while component (0.0 ... 1.0)
28 + 	///   - af: Alpha component (0.0 ... 1.0)
   |        ╰─suggestion: Document 'gf' parameter
29 | 	mutating func setRGB(rf: Double, gf: Double, bf: Double, af: Double) {
30 | 		self.colorSpace = .RGB
warning: Parameter 'rf' is missing documentation
  --> Sources/ColorPaletteCodable/color/PAL+Color+Modifications.swift:28:43-28:43
26 | 	/// - Parameters:
27 | 	///   - whitef: The while component (0.0 ... 1.0)
28 + 	///   - af: Alpha component (0.0 ... 1.0)
   |        ╰─suggestion: Document 'rf' parameter
29 | 	mutating func setRGB(rf: Double, gf: Double, bf: Double, af: Double) {
30 | 		self.colorSpace = .RGB
warning: Parameter 'hexString' not found in initializer declaration
   --> Sources/ColorPaletteCodable/color/PAL+Color+RGB.swift:255:10-255:19
253 | 	/// - Parameters:
254 | 	///   - name: The color name
255 + 	///   - hexString: The hex color representation
    |          ╰─suggestion: Replace 'hexString' with 'rgbHexString'
256 | 	///   - format: The expected hex color format
257 | 	///   - colorType: The color type
warning: Parameter 'rgbHexString' is missing documentation
   --> Sources/ColorPaletteCodable/color/PAL+Color+RGB.swift:258:6-258:6
256 | 	///   - format: The expected hex color format
    |        ╰─suggestion: Document 'rgbHexString' parameter
257 | 	///   - colorType: The color type
258 + 	///
259 | 	/// Supported hex formats :-
260 | 	/// - [#]ABC      : RGB color
warning: Parameter 'groupIndex' not found in initializer declaration
   --> Sources/ColorPaletteCodable/palette/PAL+Palette.swift:381:11-381:21
379 | 		/// Create
380 | 		/// - Parameters:
381 + 		///   - groupIndex: The group for the color
    |           ╰─suggestion: Replace 'groupIndex' with 'group'
382 | 		///   - colorIndex: The color index within the selected group
383 | 		public init(group: PAL.ColorGrouping = .global, colorIndex: Int) {
warning: Parameter 'group' is missing documentation
   --> Sources/ColorPaletteCodable/palette/PAL+Palette.swift:382:64-382:64
380 | 		/// - Parameters:
381 | 		///   - groupIndex: The group for the color
382 + 		///   - colorIndex: The color index within the selected group
    |         ╰─suggestion: Document 'group' parameter
383 | 		public init(group: PAL.ColorGrouping = .global, colorIndex: Int) {
384 | 			self.group = group
warning: Parameter 'groupIndex' not found in instance method declaration
   --> Sources/ColorPaletteCodable/palette/PAL+Palette.swift:422:10-422:20
420 | 	/// Update a color
421 | 	/// - Parameters:
422 + 	///   - groupIndex: The group containing the color
    |          ╰─suggestion: Replace 'groupIndex' with 'group'
423 | 	///   - colorIndex: The color index within the group
424 | 	///   - color: The color
warning: Parameter 'group' is missing documentation
   --> Sources/ColorPaletteCodable/palette/PAL+Palette.swift:424:26-424:26
422 | 	///   - groupIndex: The group containing the color
423 | 	///   - colorIndex: The color index within the group
    |        ╰─suggestion: Document 'group' parameter
424 + 	///   - color: The color
425 | 	mutating func updateColor(group: PAL.ColorGrouping = .global, colorIndex: Int, color: PAL.Color) throws {
426 | 		switch group {
Finished building documentation for 'ColorPaletteCodable' (0.76s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/dagronf/colorpalettecodable/6.7.2
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updating https://github.com/dagronf/TinyCSV
Updating https://github.com/dagronf/SwiftImageReadWrite
Updating https://github.com/dagronf/DSFRegex
Updating https://github.com/dagronf/ZIPFoundation
Updating https://github.com/dagronf/BytesParser
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.50s)
Updated https://github.com/dagronf/TinyCSV (0.48s)
Updated https://github.com/dagronf/SwiftImageReadWrite (0.49s)
Updated https://github.com/dagronf/ZIPFoundation (0.41s)
Updated https://github.com/dagronf/BytesParser (0.47s)
Updated https://github.com/dagronf/DSFRegex (0.47s)
Computing version for https://github.com/dagronf/ZIPFoundation
Computed https://github.com/dagronf/ZIPFoundation at 0.9.19 (1.45s)
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/TinyCSV
Computed https://github.com/dagronf/TinyCSV at 1.2.0 (0.57s)
Computing version for https://github.com/dagronf/SwiftImageReadWrite
Computed https://github.com/dagronf/SwiftImageReadWrite at 1.9.2 (0.56s)
Computing version for https://github.com/dagronf/DSFRegex
Computed https://github.com/dagronf/DSFRegex at 3.4.0 (0.58s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.56s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.79s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.43s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write sources
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit DeclarationFragments.swift
[7/53] Compiling SymbolKit Fragment.swift
[8/53] Compiling SymbolKit FragmentKind.swift
[9/53] Compiling SymbolKit FunctionParameter.swift
[10/53] Compiling SymbolKit FunctionSignature.swift
[11/57] Emitting module SymbolKit
[12/57] Compiling SymbolKit Mixin+Equals.swift
[13/57] Compiling SymbolKit Mixin+Hash.swift
[14/57] Compiling SymbolKit Mixin.swift
[15/57] Compiling SymbolKit LineList.swift
[16/57] Compiling SymbolKit Position.swift
[17/57] Compiling SymbolKit Names.swift
[18/57] Compiling SymbolKit SPI.swift
[19/57] Compiling SymbolKit Snippet.swift
[20/57] Compiling SymbolKit Extension.swift
[21/57] Compiling SymbolKit SourceRange.swift
[22/57] Compiling SymbolKit Metadata.swift
[23/57] Compiling SymbolKit Module.swift
[24/57] Compiling SymbolKit OperatingSystem.swift
[25/57] Compiling SymbolKit Platform.swift
[26/57] Compiling SymbolKit SemanticVersion.swift
[27/57] Compiling SymbolKit AccessControl.swift
[28/57] Compiling SymbolKit Availability.swift
[29/57] Compiling SymbolKit AvailabilityItem.swift
[30/57] Compiling SymbolKit Domain.swift
[31/57] Compiling SymbolKit GenericConstraint.swift
[32/57] Compiling SymbolKit GenericParameter.swift
[33/57] Compiling SymbolKit Generics.swift
[34/57] Compiling SymbolKit Namespace.swift
[35/57] Compiling SymbolKit Identifier.swift
[36/57] Compiling SymbolKit KindIdentifier.swift
[37/57] Compiling SymbolKit Location.swift
[38/57] Compiling SymbolKit Mutability.swift
[39/57] Compiling SymbolKit Relationship.swift
[40/57] Compiling SymbolKit RelationshipKind.swift
[41/57] Compiling SymbolKit SourceOrigin.swift
[42/57] Compiling SymbolKit GenericConstraints.swift
[43/57] Compiling SymbolKit Swift.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.69s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/71] Compiling DSFRegex resource_bundle_accessor.swift
[3/71] Compiling DSFRegex String+CursorExtensions.swift
[4/71] Compiling TinyCSV resource_bundle_accessor.swift
[5/71] Emitting module TinyCSV
[6/71] Compiling TinyCSV TinyCSV+Decode.swift
[7/71] Compiling ZIPFoundation Data+CompressionDeprecated.swift
[8/71] Compiling ZIPFoundation Data+Serialization.swift
[9/72] Compiling ZIPFoundation Archive+BackingConfiguration.swift
[10/72] Compiling ZIPFoundation Archive+Deprecated.swift
[11/72] Compiling BytesParser BytesReader+Source.swift
[12/72] Compiling BytesParser InMemorySource.swift
[13/72] Compiling SwiftImageReadWrite SwiftUI+extensions.swift
[14/73] Emitting module BytesParser
[15/73] Compiling ZIPFoundation Archive+ReadingDeprecated.swift
[16/73] Compiling ZIPFoundation Archive+Writing.swift
[17/73] Compiling ZIPFoundation Archive+WritingDeprecated.swift
[18/73] Compiling ZIPFoundation Archive+ZIP64.swift
[19/73] Compiling ZIPFoundation Archive.swift
[20/73] Compiling ZIPFoundation Data+Compression.swift
[21/73] Compiling TinyCSV TinyCSV+Encode.swift
[22/73] Compiling TinyCSV TinyCSV+Parsing.swift
[23/73] Compiling TinyCSV TinyCSV+Decoder.swift
[24/73] Compiling TinyCSV TinyCSV+Delimiter.swift
[25/73] Compiling TinyCSV TinyCSVData.swift
[26/73] Compiling TinyCSV TinyCSV.swift
[27/73] Compiling TinyCSV TinyCSV+EventDrivenDecoder.swift
[28/73] Compiling ZIPFoundation Date+ZIP.swift
[29/73] Compiling ZIPFoundation Entry+Serialization.swift
[34/73] Emitting module DSFRegex
[35/73] Compiling DSFRegex DSFRegex.swift
[36/73] Compiling ZIPFoundation Archive+Helpers.swift
[37/73] Compiling ZIPFoundation Archive+MemoryFile.swift
[38/73] Compiling ZIPFoundation Archive+Progress.swift
[39/73] Compiling ZIPFoundation Archive+Reading.swift
[46/73] Emitting module SwiftImageReadWrite
[47/73] Compiling BytesParser InputStreamSource.swift
[57/75] Compiling SwiftImageReadWrite resource_bundle_accessor.swift
[58/75] Emitting module ZIPFoundation
[62/75] Compiling ZIPFoundation FileManager+ZIP.swift
[63/75] Compiling ZIPFoundation FileManager+ZIPDeprecated.swift
[70/75] Compiling ZIPFoundation Entry+ZIP64.swift
[71/75] Compiling ZIPFoundation Entry.swift
[74/75] Compiling ZIPFoundation URL+ZIP.swift
[75/75] Compiling ZIPFoundation resource_bundle_accessor.swift
[76/183] Compiling ColorPaletteCodable PAL+PaletteCoderProtocol.swift
[77/183] Compiling ColorPaletteCodable PAL+PaletteFormat.swift
[78/183] Compiling ColorPaletteCodable PAL+CGColor.swift
[79/183] Compiling ColorPaletteCodable PAL+NSColorList.swift
[80/183] Compiling ColorPaletteCodable PAL+SwiftUI.swift
[81/183] Compiling ColorPaletteCodable PAL+iOS.swift
[82/183] Compiling ColorPaletteCodable PAL+macOS.swift
[83/183] Compiling ColorPaletteCodable BytesParser+extensions.swift
[84/183] Compiling ColorPaletteCodable CGColor+HexExtensions.swift
[85/183] Compiling ColorPaletteCodable CGColor+extensions.swift
[86/183] Compiling ColorPaletteCodable CGContext+exensions.swift
[87/183] Compiling ColorPaletteCodable CGGradient+extensions.swift
[88/183] Compiling ColorPaletteCodable PAL+ColorConversions.swift
[89/183] Compiling ColorPaletteCodable PAL+Common.swift
[90/183] Compiling ColorPaletteCodable PAL+CoreGraphics.swift
[91/183] Compiling ColorPaletteCodable PAL+Errors.swift
[92/183] Compiling ColorPaletteCodable PAL+Functions.swift
[93/183] Compiling ColorPaletteCodable PAL+Group.swift
[94/183] Compiling ColorPaletteCodable PAL+Image.swift
[95/183] Compiling ColorPaletteCodable PAL+Pasteboard+iOS.swift
[96/183] Compiling ColorPaletteCodable PAL+Pasteboard+macOS.swift
[97/183] Compiling ColorPaletteCodable PAL+StandardColors.swift
[98/183] Compiling ColorPaletteCodable PAL+Temperature.swift
[99/183] Compiling ColorPaletteCodable PAL+Types.swift
[100/194] Compiling ColorPaletteCodable RGBAPaletteCoder.swift
[101/194] Compiling ColorPaletteCodable RGBPaletteCoder.swift
[102/194] Compiling ColorPaletteCodable RIFFPaletteCoder.swift
[103/194] Compiling ColorPaletteCodable SKPPaletteCoder.swift
[104/194] Compiling ColorPaletteCodable SVGPaletteCoder.swift
[105/194] Compiling ColorPaletteCodable ScribusXMLPaletteCoder.swift
[106/194] Compiling ColorPaletteCodable SimplePaletteCoder.swift
[107/194] Compiling ColorPaletteCodable SketchPaletteCoder.swift
[108/194] Compiling ColorPaletteCodable SwatchbookerCoder.swift
[109/194] Compiling ColorPaletteCodable SwiftPaletteCoder.swift
[110/194] Compiling ColorPaletteCodable VGA18BitPaletteCoder.swift
[111/194] Compiling ColorPaletteCodable VGA24BitPaletteCoder.swift
[112/194] Compiling ColorPaletteCodable PAL+Color+Array.swift
[113/194] Compiling ColorPaletteCodable PAL+Color+CMYK.swift
[114/194] Compiling ColorPaletteCodable PAL+Color+Gray.swift
[115/194] Compiling ColorPaletteCodable PAL+Color+HSB.swift
[116/194] Compiling ColorPaletteCodable PAL+Color+HSL.swift
[117/194] Compiling ColorPaletteCodable PAL+Color+Hex.swift
[118/194] Compiling ColorPaletteCodable PAL+Color+Interpolation.swift
[119/194] Compiling ColorPaletteCodable PAL+Color+LAB.swift
[120/194] Compiling ColorPaletteCodable PAL+Color+Modifications.swift
[121/194] Compiling ColorPaletteCodable PAL+Color+OkLab.swift
[122/194] Compiling ColorPaletteCodable PAL+Color+RGB.swift
[123/194] Compiling ColorPaletteCodable PAL+Color+Transferable.swift
[124/194] Compiling ColorPaletteCodable CorelPainterCoder.swift
[125/194] Compiling ColorPaletteCodable CorelXMLPaletteCoder.swift
[126/194] Compiling ColorPaletteCodable DCPPaletteCoder.swift
[127/194] Compiling ColorPaletteCodable GIMPPaletteCoder.swift
[128/194] Compiling ColorPaletteCodable HEXPaletteCoder.swift
[129/194] Compiling ColorPaletteCodable ImagePaletteCoder.swift
[130/194] Compiling ColorPaletteCodable JCWPaletteCoder.swift
[131/194] Compiling ColorPaletteCodable JSONPaletteCoder.swift
[132/194] Compiling ColorPaletteCodable OpenOfficePaletteCoder.swift
[133/194] Compiling ColorPaletteCodable PaintNETPaletteCoder.swift
[134/194] Compiling ColorPaletteCodable PaintShopProPaletteCoder.swift
[135/194] Compiling ColorPaletteCodable ProcreateSwatchesCoder.swift
[136/194] Compiling ColorPaletteCodable Collection+extensions.swift
[137/194] Compiling ColorPaletteCodable Extensions.swift
[138/194] Compiling ColorPaletteCodable HSBHelpers.swift
[139/194] Compiling ColorPaletteCodable HexColorUtilities.swift
[140/194] Compiling ColorPaletteCodable InputStream+extensions.swift
[141/194] Compiling ColorPaletteCodable NumberFormatter+extensions.swift
[142/194] Compiling ColorPaletteCodable OSLogger.swift
[143/194] Compiling ColorPaletteCodable OkLab+priv.swift
[144/194] Compiling ColorPaletteCodable Scanner+extensions.swift
[145/194] Compiling ColorPaletteCodable String+decoding.swift
[146/194] Compiling ColorPaletteCodable String+extensions.swift
[147/194] Compiling ColorPaletteCodable PAL+Color+XYZ.swift
[148/194] Compiling ColorPaletteCodable PAL+Color.swift
[149/194] Compiling ColorPaletteCodable PAL+Colors.swift
[150/194] Compiling ColorPaletteCodable PAL+Gradient+Snapshot.swift
[151/194] Compiling ColorPaletteCodable PAL+Gradient+SwiftUI.swift
[152/194] Compiling ColorPaletteCodable PAL+Gradient.swift
[153/194] Compiling ColorPaletteCodable PAL+Gradients+platform.swift
[154/194] Compiling ColorPaletteCodable PAL+Gradients.swift
[155/194] Compiling ColorPaletteCodable PAL+GradientsCoder.swift
[156/194] Compiling ColorPaletteCodable PAL+GradientsFormat.swift
[157/194] Compiling ColorPaletteCodable PAL+Palette.swift
[158/194] Compiling ColorPaletteCodable PAL+PaletteCoder.swift
[159/194] Emitting module ColorPaletteCodable
[160/194] Compiling ColorPaletteCodable ACOPaletteCoder.swift
[161/194] Compiling ColorPaletteCodable ACTPaletteCoder.swift
[162/194] Compiling ColorPaletteCodable AFPaletteCoder.swift
[163/194] Compiling ColorPaletteCodable ASEPaletteCoder.swift
[164/194] Compiling ColorPaletteCodable AndroidColorsXMLCoder.swift
[165/194] Compiling ColorPaletteCodable AutodeskColorBook.swift
[166/194] Compiling ColorPaletteCodable BasicXMLCoder.swift
[167/194] Compiling ColorPaletteCodable CLFPaletteCoder.swift
[168/194] Compiling ColorPaletteCodable CLRPaletteCoder.swift
[169/194] Compiling ColorPaletteCodable CPLPaletteCoder.swift
[170/194] Compiling ColorPaletteCodable CSVPaletteCoder.swift
[171/194] Compiling ColorPaletteCodable CorelDraw3PaletteCoder.swift
[172/194] Compiling ColorPaletteCodable PAL+UniformTypeIdentifiers.swift
[173/194] Compiling ColorPaletteCodable AdobeGradientsCoder.swift
[174/194] Compiling ColorPaletteCodable CSSGradientCoder.swift
[175/194] Compiling ColorPaletteCodable ColorPaletteTablesCoder.swift
[176/194] Compiling ColorPaletteCodable DCGGradientCoder.swift
[177/194] Compiling ColorPaletteCodable GIMPGradientCoder.swift
[178/194] Compiling ColorPaletteCodable GNUPlotGradientCoder.swift
[179/194] Compiling ColorPaletteCodable JSONGradientCoder.swift
[180/194] Compiling ColorPaletteCodable PaintShopProGradientCoder.swift
[181/194] Compiling ColorPaletteCodable SVGGradientCoder.swift
[182/194] Compiling ColorPaletteCodable SwiftGenGradientCoder.swift
[183/194] Compiling ColorPaletteCodable ACBPaletteCoder.swift
[184/194] Compiling ColorPaletteCodable SwiftUI+Color+extensions.swift
[185/194] Compiling ColorPaletteCodable SwiftUI+Image+extensions.swift
[186/194] Compiling ColorPaletteCodable Temperature.swift
[187/194] Compiling ColorPaletteCodable TextParser.swift
[188/194] Compiling ColorPaletteCodable UInt32+extensions.swift
[189/194] Compiling ColorPaletteCodable UnitValue.swift
[190/194] Compiling ColorPaletteCodable Utils.swift
[191/194] Compiling ColorPaletteCodable Vec3.swift
[192/194] Compiling ColorPaletteCodable X11Colors.swift
[193/194] Compiling ColorPaletteCodable xmlFormatters.swift
[194/194] Compiling ColorPaletteCodable resource_bundle_accessor.swift
Build of target: 'ColorPaletteCodable' complete! (7.52s)
    2618
17	/Users/admin/builder/spi-builder-workspace/.docs/dagronf/colorpalettecodable/6.7.2
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/dagronf/colorpalettecodable/6.7.2
File count: 2618
Doc size:   17.0MB
Preparing doc bundle ...
Uploading prod-dagronf-colorpalettecodable-6.7.2-96dce3a0.zip to s3://spi-docs-inbox/prod-dagronf-colorpalettecodable-6.7.2-96dce3a0.zip
Copying... [11%]
Copying... [21%]
Copying... [30%]
Copying... [42%]
Copying... [51%]
Copying... [60%]
Copying... [72%]
Copying... [81%]
Copying... [91%]
Copying... [100%]
Done.