The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Doggie, reference main (d49683), with Swift 6.2 for Linux on 20 Jun 2025 10:05:46 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[658/669] Compiling DoggieCore UnsafeSendable.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[659/669] Compiling DoggieCore Exported.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[660/669] Compiling DoggieCore Algorithm.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[661/669] Compiling DoggieCore Cache.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[662/669] Compiling DoggieCore String.swift
[663/669] Compiling DoggieCore replaceValue.swift
[664/669] Compiling DoggieCore SDXMLAttribute.swift
[665/669] Compiling DoggieCore SDXMLDocument.swift
[666/669] Compiling DoggieCore SDXMLElement.swift
[667/669] Compiling DoggieCore SDXMLParser.swift
[668/669] Compiling DoggieCore SDXMLString.swift
[669/669] Emitting module DoggieCore
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 |     @inlinable
269 |     @inline(__always)
270 |     public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
    |                                 `- note: 'S' previously declared here
271 |
272 |         let old_count = base.count
    :
285 |
286 |         @inline(__always)
287 |         func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
    |                      `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 |             let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 |     @inlinable
346 |     @inline(__always)
347 |     public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
    |                                          `- note: 'C' previously declared here
348 |
349 |         precondition(0 <= subRange.lowerBound, "Index out of range.")
    :
373 |
374 |             @inline(__always)
375 |             func _append<C: Collection>(_ newElements: C) where C.Element == Element {
    |                          `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 |                 let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 |     @inlinable
346 |     @inline(__always)
347 |     public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
    |                                          `- note: 'C' previously declared here
348 |
349 |         precondition(0 <= subRange.lowerBound, "Index out of range.")
    :
400 |
401 |             @inline(__always)
402 |             func _append<C: Collection>(_ newElements: C) where C.Element == Element {
    |                          `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 |                 let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
[671/697] Compiling DoggieMath Arithmetic.swift
[672/697] Compiling DoggieMath Complex.swift
[673/697] Compiling DoggieMath Exported.swift
[674/700] Compiling DoggieMath LinearAlgebra.swift
[675/700] Compiling DoggieMath Move.swift
[676/700] Compiling DoggieMath OverlapAddConvolve.swift
[677/700] Compiling DoggieMath HalfInverseRadix2CooleyTukey.swift
[678/700] Compiling DoggieMath cooleytukey_2.swift
[679/700] Compiling DoggieMath cooleytukey_4.swift
[680/700] Compiling DoggieMath cooleytukey_8.swift
[681/700] Compiling DoggieMath half_cooleytukey_16.swift
[682/700] Compiling DoggieMath Polynomial.swift
[683/700] Compiling DoggieMath Rational.swift
[684/700] Compiling DoggieMath SafeFunction.swift
[685/700] Compiling DoggieMath HalfRadix2CooleyTukey.swift
[686/700] Compiling DoggieMath InverseRadix2CooleyTukey.swift
[687/700] Compiling DoggieMath Radix2CooleyTukey.swift
[688/700] Compiling DoggieMath cooleytukey_16.swift
[689/700] Compiling DoggieMath half_cooleytukey_2.swift
[690/700] Compiling DoggieMath half_cooleytukey_4.swift
[691/700] Compiling DoggieMath half_cooleytukey_8.swift
[692/700] Compiling DoggieMath Wrapper.swift
[693/700] Compiling DoggieMath CircularConvolve.swift
[694/700] Compiling DoggieMath CircularConvolve2D.swift
[695/700] Compiling DoggieMath CooleyTukey2D.swift
[696/700] Compiling DoggieMath DirectConvolve.swift
[697/700] Compiling DoggieMath Extension.swift
[698/700] Compiling DoggieMath Fourier.swift
[699/700] Compiling DoggieMath Maths.swift
[700/700] Emitting module DoggieMath
[702/739] Compiling DoggieGeometry AppleExported.swift
[703/739] Compiling DoggieGeometry CGAffineTransform.swift
[704/739] Compiling DoggieGeometry CGPath.swift
[705/739] Compiling DoggieGeometry CGPoint.swift
[706/739] Compiling DoggieGeometry CGRect.swift
[707/739] Compiling DoggieGeometry CGSize.swift
[708/744] Compiling DoggieGeometry Matrix.swift
[709/744] Compiling DoggieGeometry Point.swift
[710/744] Compiling DoggieGeometry Rect.swift
[711/744] Compiling DoggieGeometry SDTransform.swift
[712/744] Compiling DoggieGeometry Size.swift
[713/744] Compiling DoggieGeometry BreakLoop.swift
[714/744] Compiling DoggieGeometry PathBuilder.swift
[715/744] Compiling DoggieGeometry ShapeRegion.swift
[716/744] Compiling DoggieGeometry ShapeRegionOp.swift
[717/744] Compiling DoggieGeometry ShapeRegionWinding.swift
[718/744] Compiling DoggieGeometry CubicBezier.swift
[719/744] Compiling DoggieGeometry CubicBezierPatch.swift
[720/744] Compiling DoggieGeometry CubicBezierTriangularPatch.swift
[721/744] Compiling DoggieGeometry LineSegment.swift
[722/744] Compiling DoggieGeometry QuadBezier.swift
[723/744] Compiling DoggieGeometry Tensor.swift
[724/744] Compiling DoggieGeometry Vector.swift
[725/744] Compiling DoggieGeometry PathCoder.swift
[726/744] Compiling DoggieGeometry PathStroke.swift
[727/744] Compiling DoggieGeometry SVGPathCoder.swift
[728/744] Compiling DoggieGeometry Shape.swift
[729/744] Compiling DoggieGeometry ShapeSegment.swift
[730/744] Compiling DoggieGeometry ShapeTweening.swift
[731/744] Compiling DoggieGeometry ShapeWinding.swift
[732/744] Compiling DoggieGeometry VariableRoundStroke.swift
[733/744] Compiling DoggieGeometry SwiftPlayground.swift
[734/744] Compiling DoggieGeometry Arithmetic.swift
[735/744] Compiling DoggieGeometry Bezier.swift
[736/744] Compiling DoggieGeometry BezierArc.swift
[737/744] Compiling DoggieGeometry BezierOffset.swift
[738/744] Compiling DoggieGeometry BezierProtocol.swift
[739/744] Compiling DoggieGeometry Exported.swift
[740/744] Compiling DoggieGeometry Extension.swift
[741/744] Compiling DoggieGeometry EdgeInsets.swift
[742/744] Compiling DoggieGeometry Ellipse.swift
[743/744] Compiling DoggieGeometry Geometry.swift
[744/744] Emitting module DoggieGeometry
[746/914] Compiling DoggieGraphics AppleExported.swift
[747/914] Compiling DoggieGraphics CGColor.swift
[748/914] Compiling DoggieGraphics CGColorSpace.swift
[749/914] Compiling DoggieGraphics CGContext.swift
[750/914] Compiling DoggieGraphics CGFont.swift
[751/914] Compiling DoggieGraphics CGGradient.swift
[752/914] Compiling DoggieGraphics CGPattern.swift
[753/914] Compiling DoggieGraphics CGShading.swift
[754/914] Compiling DoggieGraphics CoreText.swift
[755/914] Compiling DoggieGraphics CGImage.swift
[756/914] Compiling DoggieGraphics CVPixelFormat.swift
[757/914] Compiling DoggieGraphics CoreVideo.swift
[758/914] Compiling DoggieGraphics IOSurface.swift
[759/914] Compiling DoggieGraphics NSImage.swift
[760/914] Compiling DoggieGraphics UIImage.swift
[761/914] Compiling DoggieGraphics AVDepthData.swift
[762/914] Compiling DoggieGraphics AVPortraitEffectsMatte.swift
[763/914] Compiling DoggieGraphics CGAnimatedImage.swift
[764/914] Compiling DoggieGraphics CGImageDestination.swift
[765/914] Compiling DoggieGraphics CGImageRep.swift
[766/914] Compiling DoggieGraphics CGImageSource.swift
[767/914] Compiling DoggieGraphics Metal.swift
[768/914] Compiling DoggieGraphics CIContext.swift
[769/914] Compiling DoggieGraphics CIContextPool.swift
[770/938] Compiling DoggieGraphics TIFFDecoder.swift
[771/938] Compiling DoggieGraphics WEBPDecoder.swift
[772/938] Compiling DoggieGraphics BMPEncoder.swift
[773/938] Compiling DoggieGraphics ImageRepEncoder.swift
[774/938] Compiling DoggieGraphics JPEGEncoder.swift
[775/938] Compiling DoggieGraphics PNGEncoder.swift
[776/938] Compiling DoggieGraphics TIFFEncoder.swift
[777/938] Compiling DoggieGraphics WEBPEncoder.swift
[778/938] Compiling DoggieGraphics ImageRep.swift
[779/938] Compiling DoggieGraphics FastDecode.swift
[780/938] Compiling DoggieGraphics _fast_decode_alpha_first.swift
[781/938] Compiling DoggieGraphics _fast_decode_alpha_last.swift
[782/938] Compiling DoggieGraphics _fast_decode_alpha_none.swift
[783/938] Compiling DoggieGraphics _fast_decode_float.swift
[784/938] Compiling DoggieGraphics _fast_decode_pixel.swift
[785/938] Compiling DoggieGraphics RawBitmap.swift
[786/938] Compiling DoggieGraphics SlowDecode.swift
[787/938] Compiling DoggieGraphics _aligned_channel.swift
[788/938] Compiling DoggieGraphics _aligned_float_channel.swift
[789/938] Compiling DoggieGraphics _channel_to_double.swift
[790/938] Compiling DoggieGraphics _float_channel.swift
[791/938] Compiling DoggieGraphics _unsigned_aligned_channel.swift
[792/938] Compiling DoggieGraphics _unsigned_channel.swift
[793/938] Compiling DoggieGraphics _unsigned_pixel.swift
[794/962] Compiling DoggieGraphics SFNTHEAD.swift
[795/962] Compiling DoggieGraphics SFNTHHEA.swift
[796/962] Compiling DoggieGraphics SFNTLTAG.swift
[797/962] Compiling DoggieGraphics SFNTMAXP.swift
[798/962] Compiling DoggieGraphics SFNTMORX.swift
[799/962] Compiling DoggieGraphics SFNTNAME.swift
[800/962] Compiling DoggieGraphics SFNTOS2.swift
[801/962] Compiling DoggieGraphics SFNTPOST.swift
[802/962] Compiling DoggieGraphics SFNTPlatform.swift
[803/962] Compiling DoggieGraphics SFNTSBIX.swift
[804/962] Compiling DoggieGraphics SFNTVHEA.swift
[805/962] Compiling DoggieGraphics TTCDecoder.swift
[806/962] Compiling DoggieGraphics WOFFDecoder.swift
[807/962] Compiling DoggieGraphics FontFaceEncoder.swift
[808/962] Compiling DoggieGraphics OTFEncoder.swift
[809/962] Compiling DoggieGraphics WOFFEncoder.swift
[810/962] Compiling DoggieGraphics Font.swift
[811/962] Compiling DoggieGraphics FontCollection.swift
[812/962] Compiling DoggieGraphics AnyImage.swift
[813/962] Compiling DoggieGraphics Image.swift
[814/962] Compiling DoggieGraphics ImageOrientation.swift
[815/962] Compiling DoggieGraphics ImageProtocol.swift
[816/962] Compiling DoggieGraphics RawPixelProtocol.swift
[817/962] Compiling DoggieGraphics Resampling.swift
[818/962] Compiling DoggieGraphics Resolution.swift
[819/962] Compiling DoggieGraphics StencilTexture.swift
[820/962] Compiling DoggieGraphics Texture.swift
[821/962] Compiling DoggieGraphics TextureProtocol.swift
[822/962] Compiling DoggieGraphics GrayPixelDecoder.swift
[823/962] Compiling DoggieGraphics PNGChunk.swift
[824/962] Compiling DoggieGraphics PNGFilter0.swift
[825/962] Compiling DoggieGraphics PNGInterlace.swift
[826/962] Compiling DoggieGraphics PNGRegion.swift
[827/962] Compiling DoggieGraphics RGBPixelDecoder.swift
[828/962] Compiling DoggieGraphics TIFFCompression.swift
[829/962] Compiling DoggieGraphics TIFFLZWCompression.swift
[830/962] Compiling DoggieGraphics TIFFPackBitsCompression.swift
[831/962] Compiling DoggieGraphics TIFFEncodablePixel.swift
[832/962] Compiling DoggieGraphics TIFFPrediction.swift
[833/962] Compiling DoggieGraphics TIFFRawRepresentable.swift
[834/962] Compiling DoggieGraphics AnimatedImage.swift
[835/962] Compiling DoggieGraphics PNGAnimatedEncoder.swift
[836/962] Compiling DoggieGraphics WEBPAnimatedEncoder.swift
[837/962] Compiling DoggieGraphics APNGDecoder.swift
[838/962] Compiling DoggieGraphics BMPDecoder.swift
[839/962] Compiling DoggieGraphics ImageRepDecoder.swift
[840/962] Compiling DoggieGraphics JPEGDecoder.swift
[841/962] Compiling DoggieGraphics PNGDecoder.swift
[842/1010] Compiling DoggieGraphics FloatComponentPixel.swift
[843/1010] Compiling DoggieGraphics Gray16ColorPixel.swift
[844/1010] Compiling DoggieGraphics Gray32ColorPixel.swift
[845/1010] Compiling DoggieGraphics GrayColorPixel.swift
[846/1010] Compiling DoggieGraphics ABGR32ColorPixel.swift
[847/1010] Compiling DoggieGraphics ARGB32ColorPixel.swift
[848/1010] Compiling DoggieGraphics ARGB64ColorPixel.swift
[849/1010] Compiling DoggieGraphics BGRA32ColorPixel.swift
[850/1010] Compiling DoggieGraphics RGBA32ColorPixel.swift
[851/1010] Compiling DoggieGraphics RGBA64ColorPixel.swift
[852/1010] Compiling DoggieGraphics RGBColorPixel.swift
[853/1010] Compiling DoggieGraphics AnyColorSpace.swift
[854/1010] Compiling DoggieGraphics ChromaticAdaptationAlgorithm.swift
[855/1010] Compiling DoggieGraphics ColorSpace.swift
[856/1010] Compiling DoggieGraphics CIELabColorSpace.swift
[857/1010] Compiling DoggieGraphics CIELuvColorSpace.swift
[858/1010] Compiling DoggieGraphics CIEXYZColorSpace.swift
[859/1010] Compiling DoggieGraphics CIEYxyColorSpace.swift
[860/1010] Compiling DoggieGraphics CalibratedGrayColorSpace.swift
[861/1010] Compiling DoggieGraphics AdobeRGB.swift
[862/1010] Compiling DoggieGraphics CalibratedRGBColorSpace.swift
[863/1010] Compiling DoggieGraphics displayP3.swift
[864/1010] Compiling DoggieGraphics sRGB.swift
[865/1010] Compiling DoggieGraphics ColorSpaceBaseProtocol.swift
[866/1010] Compiling DoggieGraphics Stroke.swift
[867/1010] Compiling DoggieGraphics Exported.swift
[868/1010] Compiling DoggieGraphics CFF2Decoder.swift
[869/1010] Compiling DoggieGraphics CFF2INDEX.swift
[870/1010] Compiling DoggieGraphics CFFCharStrings.swift
[871/1010] Compiling DoggieGraphics CFFDICT.swift
[872/1010] Compiling DoggieGraphics CFFDecoder.swift
[873/1010] Compiling DoggieGraphics CFFEncoding.swift
[874/1010] Compiling DoggieGraphics CFFFDSelect.swift
[875/1010] Compiling DoggieGraphics CFFFontFace.swift
[876/1010] Compiling DoggieGraphics CFFINDEX.swift
[877/1010] Compiling DoggieGraphics FontDecoder.swift
[878/1010] Compiling DoggieGraphics OpenTypeDecoder.swift
[879/1010] Compiling DoggieGraphics AATStateTable.swift
[880/1010] Compiling DoggieGraphics OTFFeatureList.swift
[881/1010] Compiling DoggieGraphics OTFGDEF.swift
[882/1010] Compiling DoggieGraphics OTFGPOS.swift
[883/1010] Compiling DoggieGraphics OTFGSUB.swift
[884/1010] Compiling DoggieGraphics OTFLookupList.swift
[885/1010] Compiling DoggieGraphics OTFScriptList.swift
[886/1010] Compiling DoggieGraphics SFNTCMAP.swift
[887/1010] Compiling DoggieGraphics SFNTFEAT.swift
[888/1010] Compiling DoggieGraphics SFNTFontFace.swift
[889/1010] Compiling DoggieGraphics SFNTGLYF.swift
[890/1010] Emitting module DoggieGraphics
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[891/1010] Compiling DoggieGraphics ICC Creator.swift
[892/1010] Compiling DoggieGraphics ICCColorSpace.swift
[893/1010] Compiling DoggieGraphics iccProfile.swift
[894/1010] Compiling DoggieGraphics iccCurve.swift
[895/1010] Compiling DoggieGraphics iccLUTTransform.swift
[896/1010] Compiling DoggieGraphics iccMultiLocalizedUnicode.swift
[897/1010] Compiling DoggieGraphics iccNamedColor.swift
[898/1010] Compiling DoggieGraphics iccTagData.swift
[899/1010] Compiling DoggieGraphics iccTextDescription.swift
[900/1010] Compiling DoggieGraphics iccTransform.swift
[901/1010] Compiling DoggieGraphics iccDateTimeNumber.swift
[902/1010] Compiling DoggieGraphics iccMatrix.swift
[903/1010] Compiling DoggieGraphics iccType.swift
[904/1010] Compiling DoggieGraphics iccXYZNumber.swift
[905/1010] Compiling DoggieGraphics LinearToneColorSpace.swift
[906/1010] Compiling DoggieGraphics PredefinedColorSpace.swift
[907/1010] Compiling DoggieGraphics WrappedColorSpace.swift
[908/1010] Compiling DoggieGraphics ColorSpaceProtocol.swift
[909/1010] Compiling DoggieGraphics Illuminant.swift
[910/1010] Compiling DoggieGraphics RenderingIntent.swift
[911/1010] Compiling DoggieGraphics DrawableContext.swift
[912/1010] Compiling DoggieGraphics Gradient.swift
[913/1010] Compiling DoggieGraphics MeshGradient.swift
[914/1010] Compiling DoggieGraphics Pattern.swift
[915/1010] Compiling DoggieGraphics SwiftPlayground.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[916/1010] Compiling DoggieGraphics AnyColor.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[917/1010] Compiling DoggieGraphics Color.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[918/1010] Compiling DoggieGraphics ColorProtocol.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[919/1010] Compiling DoggieGraphics PredefinedColor.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[920/1010] Compiling DoggieGraphics ColorBlendKernel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[921/1010] Compiling DoggieGraphics ColorBlendMode.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[922/1010] Compiling DoggieGraphics ColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[923/1010] Compiling DoggieGraphics CMYColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[924/1010] Compiling DoggieGraphics CMYKColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[925/1010] Compiling DoggieGraphics DeviceNColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[926/1010] Compiling DoggieGraphics GrayColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[927/1010] Compiling DoggieGraphics LabColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[928/1010] Compiling DoggieGraphics LuvColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[929/1010] Compiling DoggieGraphics RGBColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[930/1010] Compiling DoggieGraphics XYZColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[931/1010] Compiling DoggieGraphics YCbCrColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[932/1010] Compiling DoggieGraphics YxyColorModel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[933/1010] Compiling DoggieGraphics ColorCompositingKernel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[934/1010] Compiling DoggieGraphics ColorCompositingMode.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[935/1010] Compiling DoggieGraphics ColorPixel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[936/1010] Compiling DoggieGraphics Float16ColorPixel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[937/1010] Compiling DoggieGraphics Float32ColorPixel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[938/1010] Compiling DoggieGraphics Float64ColorPixel.swift
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |
118 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
125 |
126 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
    | |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
133 |
134 |     @inlinable
/host/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 25 |
 26 | @frozen
 27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
    |                     `- note: 'Model' previously declared here
 28 |
 29 |     public var colorSpace: DoggieGraphics.ColorSpace<Model>
    :
469 |
470 |     @inlinable
471 |     public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
    |                         `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 |         let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 |         return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[939/1010] Compiling DoggieGraphics AvailableColorSpaces.swift
[940/1010] Compiling DoggieGraphics AvailableFonts.swift
[941/1010] Compiling DoggieGraphics Prespecialize.swift
[942/1010] Compiling DoggieGraphics SVGContext.swift
[943/1010] Compiling DoggieGraphics SVGBlendEffect.swift
[944/1010] Compiling DoggieGraphics SVGColorMatrixEffect.swift
[945/1010] Compiling DoggieGraphics SVGComponentTransferEffect.swift
[946/1010] Compiling DoggieGraphics SVGConvolveMatrixEffect.swift
[947/1010] Compiling DoggieGraphics SVGDisplacementMapEffect.swift
[948/1010] Compiling DoggieGraphics SVGDropShadowEffect.swift
[949/1010] Compiling DoggieGraphics SVGEffect.swift
[950/1010] Compiling DoggieGraphics SVGFloodEffect.swift
[951/1010] Compiling DoggieGraphics SVGGaussianBlurEffect.swift
[952/1010] Compiling DoggieGraphics SVGHueRotateEffect.swift
[953/1010] Compiling DoggieGraphics SVGImageEffect.swift
[954/1010] Compiling DoggieGraphics SVGLightingEffect.swift
[955/1010] Compiling DoggieGraphics SVGLuminanceToAlphaEffect.swift
[956/1010] Compiling DoggieGraphics SVGMergeEffect.swift
[957/1010] Compiling DoggieGraphics SVGMorphologyEffect.swift
[958/1010] Compiling DoggieGraphics SVGOffsetEffect.swift
[959/1010] Compiling DoggieGraphics SVGSaturateEffect.swift
[960/1010] Compiling DoggieGraphics SVGTileEffect.swift
[961/1010] Compiling DoggieGraphics SVGTurbulenceEffect.swift
[962/1010] Compiling DoggieGraphics FixedNumber.swift
[963/1010] Compiling DoggieGraphics DrawGradient.swift
[964/1010] Compiling DoggieGraphics DrawImage.swift
[965/1010] Compiling DoggieGraphics DrawMeshGradient.swift
[966/1010] Compiling DoggieGraphics DrawPattern.swift
[967/1010] Compiling DoggieGraphics DrawShadow.swift
[968/1010] Compiling DoggieGraphics DrawShape.swift
[969/1010] Compiling DoggieGraphics ImageContext.swift
[970/1010] Compiling DoggieGraphics ImageContextExtension.swift
[971/1010] Compiling DoggieGraphics PixelBlender.swift
[972/1010] Compiling DoggieGraphics Rasterizer.swift
[973/1010] Compiling DoggieGraphics Rendering.swift
[974/1010] Compiling DoggieGraphics SetClip.swift
[975/1010] Compiling DoggieGraphics Stencil.swift
[976/1010] Compiling DoggieGraphics BayerDithering.swift
[977/1010] Compiling DoggieGraphics BilateralFilter.swift
[978/1010] Compiling DoggieGraphics ColorSeparation.swift
[979/1010] Compiling DoggieGraphics DifferenceOfGaussian.swift
[980/1010] Compiling DoggieGraphics DisplacementMap.swift
[981/1010] Compiling DoggieGraphics GaussianBlur.swift
[982/1010] Compiling DoggieGraphics ImageConvolution.swift
[983/1010] Compiling DoggieGraphics LaplacianOfGaussian.swift
[984/1010] Compiling DoggieGraphics SVGTurbulence.swift
[985/1010] Compiling DoggieGraphics Underpainting.swift
[986/1010] Compiling DoggieGraphics kMeansClustering.swift
[987/1010] Compiling DoggieGraphics SVGNoiseGenerator.swift
[988/1010] Compiling DoggieGraphics SimplexNoise.swift
[989/1010] Compiling DoggieGraphics PDFContext.swift
[990/1010] Compiling DoggieGraphics PDFContextEncoder.swift
[991/1010] Compiling DoggieGraphics PDFContextImage.swift
[992/1010] Compiling DoggieGraphics PDFContextPage.swift
[993/1010] Compiling DoggieGraphics PDFDecoder.swift
[994/1010] Compiling DoggieGraphics PDFDocument.swift
[995/1010] Compiling DoggieGraphics ASCII85Filter.swift
[996/1010] Compiling DoggieGraphics ASCIIHexFilter.swift
[997/1010] Compiling DoggieGraphics PDFFilter.swift
[998/1010] Compiling DoggieGraphics PDFName.swift
[999/1010] Compiling DoggieGraphics PDFNumber.swift
[1000/1010] Compiling DoggieGraphics PDFObject.swift
[1001/1010] Compiling DoggieGraphics PDFPage.swift
[1002/1010] Compiling DoggieGraphics PDFBitmap.swift
[1003/1010] Compiling DoggieGraphics PDFColorSpace.swift
[1004/1010] Compiling DoggieGraphics PDFCommand.swift
[1005/1010] Compiling DoggieGraphics PDFDrawPage.swift
[1006/1010] Compiling DoggieGraphics PDFFunction.swift
[1007/1010] Compiling DoggieGraphics PDFRenderer.swift
[1008/1010] Compiling DoggieGraphics PDFStream.swift
[1009/1010] Compiling DoggieGraphics PDFString.swift
[1010/1010] Compiling DoggieGraphics PDFXref.swift
[1012/1036] Compiling DoggieGPU GPContext.swift
[1013/1036] Compiling DoggieGPU GPContextBase.swift
[1014/1036] Compiling DoggieGPU GPContextExtension.swift
[1015/1036] Compiling DoggieGPU ShaderLoader.swift
[1016/1036] Compiling DoggieGPU WrapTileKernel.swift
[1017/1036] Compiling DoggieGPU kMeansClusteringKernel.swift
[1018/1036] Compiling DoggieGPU GPContextPattern.swift
[1019/1036] Compiling DoggieGPU MeshGradientKernel.swift
[1020/1036] Compiling DoggieGPU MTLDevice.swift
[1021/1039] Compiling DoggieGPU BilateralFilter.swift
[1022/1039] Compiling DoggieGPU CIImage.swift
[1023/1039] Compiling DoggieGPU CIVector.swift
[1024/1039] Compiling DoggieGPU ConvolveKernel.swift
[1025/1039] Compiling DoggieGPU Exported.swift
[1026/1039] Compiling DoggieGPU CGContextProcessorKernel.swift
[1027/1039] Compiling DoggieGPU CGPathProcessorKernel.swift
[1028/1039] Compiling DoggieGPU SVGConvolveKernel.swift
[1029/1039] Compiling DoggieGPU SVGDisplacementMapKernel.swift
[1030/1039] Compiling DoggieGPU SVGLightingKernel.swift
[1031/1039] Compiling DoggieGPU SVGTurbulenceKernel.swift
[1032/1039] Compiling DoggieGPU CoreImage.swift
[1033/1039] Compiling DoggieGPU MorphologyKernel.swift
[1034/1039] Compiling DoggieGPU PalettizeKernel.swift
[1035/1039] Compiling DoggieGPU SVGComponentTransferKernel.swift
[1036/1039] Emitting module DoggieGPU
[1037/1039] Compiling DoggieGPU Packed.swift
[1038/1039] Compiling DoggieGPU SIMD.swift
[1039/1039] Compiling DoggieGPU resource_bundle_accessor.swift
[1041/1042] Compiling Doggie Exported.swift
[1042/1042] Emitting module Doggie
Build complete! (288.12s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-numerics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-numerics"
    },
    {
      "identity" : "swift-algorithms",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-algorithms"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections"
    },
    {
      "identity" : "float16",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/Float16"
    },
    {
      "identity" : "brotli",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/brotli"
    },
    {
      "identity" : "libwebp",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/libwebp"
    },
    {
      "identity" : "libjpeg",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SusanDoggie/libjpeg"
    }
  ],
  "manifest_display_name" : "Doggie",
  "name" : "Doggie",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "DoggieCore",
      "targets" : [
        "DoggieCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieMath",
      "targets" : [
        "DoggieMath"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieGeometry",
      "targets" : [
        "DoggieGeometry"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieGraphics",
      "targets" : [
        "DoggieGraphics"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DoggieGPU",
      "targets" : [
        "DoggieGPU"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Doggie",
      "targets" : [
        "Doggie"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "zlib_c",
      "module_type" : "ClangTarget",
      "name" : "zlib_c",
      "path" : "Sources/zlib_c",
      "product_memberships" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "empty.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieTests",
      "module_type" : "SwiftTarget",
      "name" : "DoggieTests",
      "path" : "Tests/DoggieTests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/DoggieTests/images",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ArithmeticTest.swift",
        "BrotliTest.swift",
        "CollectionTest.swift",
        "ColorSpaceTest.swift",
        "ColorTest.swift",
        "ConcurrencyTest.swift",
        "FontTest.swift",
        "FourierSpeedTest.swift",
        "FourierTest.swift",
        "GeometryTest.swift",
        "ImageCodecTest.swift",
        "ImageContextTest.swift",
        "ImageTest.swift",
        "JsonTest.swift",
        "LayoutTest.swift",
        "MappedBufferTest.swift",
        "MathTest.swift",
        "PDFContextTest.swift",
        "PolynomialTest.swift",
        "ShapeRegionTest.swift",
        "XMLTest.swift",
        "ZlibTest.swift"
      ],
      "target_dependencies" : [
        "Doggie"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DoggieMath",
      "module_type" : "SwiftTarget",
      "name" : "DoggieMath",
      "path" : "Sources/DoggieMath",
      "product_memberships" : [
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "Accelerate/CircularConvolve.swift",
        "Accelerate/CircularConvolve2D.swift",
        "Accelerate/CooleyTukey2D.swift",
        "Accelerate/DirectConvolve.swift",
        "Accelerate/LinearAlgebra.swift",
        "Accelerate/Move.swift",
        "Accelerate/OverlapAddConvolve.swift",
        "Accelerate/Radix2CooleyTukey/HalfInverseRadix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/HalfRadix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/InverseRadix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/Radix2CooleyTukey.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_16.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_2.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_4.swift",
        "Accelerate/Radix2CooleyTukey/cooleytukey_8.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_16.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_2.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_4.swift",
        "Accelerate/Radix2CooleyTukey/half_cooleytukey_8.swift",
        "Accelerate/Wrapper.swift",
        "Arithmetic.swift",
        "Complex.swift",
        "Exported.swift",
        "Extension.swift",
        "Fourier.swift",
        "Maths.swift",
        "Polynomial.swift",
        "Rational.swift",
        "SafeFunction.swift"
      ],
      "target_dependencies" : [
        "DoggieCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieGraphics",
      "module_type" : "SwiftTarget",
      "name" : "DoggieGraphics",
      "path" : "Sources/DoggieGraphics",
      "product_dependencies" : [
        "libwebp",
        "libjpeg"
      ],
      "product_memberships" : [
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "ApplePlatform/AppleExported.swift",
        "ApplePlatform/Graphic/CGColor.swift",
        "ApplePlatform/Graphic/CGColorSpace.swift",
        "ApplePlatform/Graphic/CGContext.swift",
        "ApplePlatform/Graphic/CGFont.swift",
        "ApplePlatform/Graphic/CGGradient.swift",
        "ApplePlatform/Graphic/CGPattern.swift",
        "ApplePlatform/Graphic/CGShading.swift",
        "ApplePlatform/Graphic/CoreText.swift",
        "ApplePlatform/Image/CGImage.swift",
        "ApplePlatform/Image/CVPixelFormat.swift",
        "ApplePlatform/Image/CoreVideo.swift",
        "ApplePlatform/Image/IOSurface.swift",
        "ApplePlatform/Image/NSImage.swift",
        "ApplePlatform/Image/UIImage.swift",
        "ApplePlatform/ImageIO/AVDepthData.swift",
        "ApplePlatform/ImageIO/AVPortraitEffectsMatte.swift",
        "ApplePlatform/ImageIO/CGAnimatedImage.swift",
        "ApplePlatform/ImageIO/CGImageDestination.swift",
        "ApplePlatform/ImageIO/CGImageRep.swift",
        "ApplePlatform/ImageIO/CGImageSource.swift",
        "ApplePlatform/Metal.swift",
        "ApplePlatform/Performance/CIContext.swift",
        "ApplePlatform/Performance/CIContextPool.swift",
        "ApplePlatform/SwiftPlayground.swift",
        "Color/AnyColor.swift",
        "Color/Color.swift",
        "Color/ColorProtocol.swift",
        "Color/PredefinedColor.swift",
        "ColorModel/ColorBlendKernel.swift",
        "ColorModel/ColorBlendMode.swift",
        "ColorModel/ColorModel.swift",
        "ColorModel/Model/CMYColorModel.swift",
        "ColorModel/Model/CMYKColorModel.swift",
        "ColorModel/Model/DeviceNColorModel.swift",
        "ColorModel/Model/GrayColorModel.swift",
        "ColorModel/Model/LabColorModel.swift",
        "ColorModel/Model/LuvColorModel.swift",
        "ColorModel/Model/RGBColorModel.swift",
        "ColorModel/Model/XYZColorModel.swift",
        "ColorModel/Model/YCbCrColorModel.swift",
        "ColorModel/Model/YxyColorModel.swift",
        "ColorPixel/ColorCompositingKernel.swift",
        "ColorPixel/ColorCompositingMode.swift",
        "ColorPixel/ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/Float16ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/Float32ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/Float64ColorPixel.swift",
        "ColorPixel/FloatComponentPixel/FloatComponentPixel.swift",
        "ColorPixel/Gray/Gray16ColorPixel.swift",
        "ColorPixel/Gray/Gray32ColorPixel.swift",
        "ColorPixel/Gray/GrayColorPixel.swift",
        "ColorPixel/RGB/ABGR32ColorPixel.swift",
        "ColorPixel/RGB/ARGB32ColorPixel.swift",
        "ColorPixel/RGB/ARGB64ColorPixel.swift",
        "ColorPixel/RGB/BGRA32ColorPixel.swift",
        "ColorPixel/RGB/RGBA32ColorPixel.swift",
        "ColorPixel/RGB/RGBA64ColorPixel.swift",
        "ColorPixel/RGB/RGBColorPixel.swift",
        "ColorSpace/AnyColorSpace.swift",
        "ColorSpace/ChromaticAdaptationAlgorithm.swift",
        "ColorSpace/ColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIELabColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIELuvColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIEXYZColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CIEColorSpace/CIEYxyColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CalibratedGrayColorSpace/CalibratedGrayColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/AdobeRGB.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/CalibratedRGBColorSpace.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/displayP3.swift",
        "ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift",
        "ColorSpace/ColorSpaceBase/ColorSpaceBaseProtocol.swift",
        "ColorSpace/ColorSpaceBase/ICC/ICC Creator.swift",
        "ColorSpace/ColorSpaceBase/ICC/ICCColorSpace.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccProfile.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccCurve.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccLUTTransform.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccMultiLocalizedUnicode.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccNamedColor.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTagData.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTextDescription.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTransform.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccDateTimeNumber.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccMatrix.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccType.swift",
        "ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccXYZNumber.swift",
        "ColorSpace/ColorSpaceBase/LinearToneColorSpace.swift",
        "ColorSpace/ColorSpaceBase/PredefinedColorSpace.swift",
        "ColorSpace/ColorSpaceBase/WrappedColorSpace.swift",
        "ColorSpace/ColorSpaceProtocol.swift",
        "ColorSpace/Illuminant.swift",
        "ColorSpace/RenderingIntent.swift",
        "DrawableContext/DrawableContext.swift",
        "DrawableContext/Gradient.swift",
        "DrawableContext/MeshGradient.swift",
        "DrawableContext/Pattern.swift",
        "DrawableContext/Stroke.swift",
        "Exported.swift",
        "Font/Decoder/CFF2Decoder/CFF2Decoder.swift",
        "Font/Decoder/CFF2Decoder/CFF2INDEX.swift",
        "Font/Decoder/CFFDecoder/CFFCharStrings.swift",
        "Font/Decoder/CFFDecoder/CFFDICT.swift",
        "Font/Decoder/CFFDecoder/CFFDecoder.swift",
        "Font/Decoder/CFFDecoder/CFFEncoding.swift",
        "Font/Decoder/CFFDecoder/CFFFDSelect.swift",
        "Font/Decoder/CFFDecoder/CFFFontFace.swift",
        "Font/Decoder/CFFDecoder/CFFINDEX.swift",
        "Font/Decoder/FontDecoder.swift",
        "Font/Decoder/OpenTypeDecoder.swift",
        "Font/Decoder/SFNTFontFace/AATStateTable.swift",
        "Font/Decoder/SFNTFontFace/OTFFeatureList.swift",
        "Font/Decoder/SFNTFontFace/OTFGDEF.swift",
        "Font/Decoder/SFNTFontFace/OTFGPOS.swift",
        "Font/Decoder/SFNTFontFace/OTFGSUB.swift",
        "Font/Decoder/SFNTFontFace/OTFLookupList.swift",
        "Font/Decoder/SFNTFontFace/OTFScriptList.swift",
        "Font/Decoder/SFNTFontFace/SFNTCMAP.swift",
        "Font/Decoder/SFNTFontFace/SFNTFEAT.swift",
        "Font/Decoder/SFNTFontFace/SFNTFontFace.swift",
        "Font/Decoder/SFNTFontFace/SFNTGLYF.swift",
        "Font/Decoder/SFNTFontFace/SFNTHEAD.swift",
        "Font/Decoder/SFNTFontFace/SFNTHHEA.swift",
        "Font/Decoder/SFNTFontFace/SFNTLTAG.swift",
        "Font/Decoder/SFNTFontFace/SFNTMAXP.swift",
        "Font/Decoder/SFNTFontFace/SFNTMORX.swift",
        "Font/Decoder/SFNTFontFace/SFNTNAME.swift",
        "Font/Decoder/SFNTFontFace/SFNTOS2.swift",
        "Font/Decoder/SFNTFontFace/SFNTPOST.swift",
        "Font/Decoder/SFNTFontFace/SFNTPlatform.swift",
        "Font/Decoder/SFNTFontFace/SFNTSBIX.swift",
        "Font/Decoder/SFNTFontFace/SFNTVHEA.swift",
        "Font/Decoder/TTCDecoder.swift",
        "Font/Decoder/WOFFDecoder.swift",
        "Font/Encoder/FontFaceEncoder.swift",
        "Font/Encoder/OTFEncoder.swift",
        "Font/Encoder/WOFFEncoder.swift",
        "Font/Font.swift",
        "Font/FontCollection.swift",
        "Image/AnyImage.swift",
        "Image/Image.swift",
        "Image/ImageOrientation.swift",
        "Image/ImageProtocol.swift",
        "Image/RawPixelProtocol.swift",
        "Image/Resampling.swift",
        "Image/Resolution.swift",
        "Image/StencilTexture.swift",
        "Image/Texture.swift",
        "Image/TextureProtocol.swift",
        "ImageCodec/Algorithm/GrayPixelDecoder.swift",
        "ImageCodec/Algorithm/PNG/PNGChunk.swift",
        "ImageCodec/Algorithm/PNG/PNGFilter0.swift",
        "ImageCodec/Algorithm/PNG/PNGInterlace.swift",
        "ImageCodec/Algorithm/PNG/PNGRegion.swift",
        "ImageCodec/Algorithm/RGBPixelDecoder.swift",
        "ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFCompression.swift",
        "ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFLZWCompression.swift",
        "ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFPackBitsCompression.swift",
        "ImageCodec/Algorithm/TIFF/TIFFEncodablePixel.swift",
        "ImageCodec/Algorithm/TIFF/TIFFPrediction.swift",
        "ImageCodec/Algorithm/TIFF/TIFFRawRepresentable.swift",
        "ImageCodec/AnimatedEncoder/AnimatedImage.swift",
        "ImageCodec/AnimatedEncoder/PNGAnimatedEncoder.swift",
        "ImageCodec/AnimatedEncoder/WEBPAnimatedEncoder.swift",
        "ImageCodec/Decoder/APNGDecoder.swift",
        "ImageCodec/Decoder/BMPDecoder.swift",
        "ImageCodec/Decoder/ImageRepDecoder.swift",
        "ImageCodec/Decoder/JPEGDecoder.swift",
        "ImageCodec/Decoder/PNGDecoder.swift",
        "ImageCodec/Decoder/TIFFDecoder.swift",
        "ImageCodec/Decoder/WEBPDecoder.swift",
        "ImageCodec/Encoder/BMPEncoder.swift",
        "ImageCodec/Encoder/ImageRepEncoder.swift",
        "ImageCodec/Encoder/JPEGEncoder.swift",
        "ImageCodec/Encoder/PNGEncoder.swift",
        "ImageCodec/Encoder/TIFFEncoder.swift",
        "ImageCodec/Encoder/WEBPEncoder.swift",
        "ImageCodec/ImageRep.swift",
        "ImageCodec/RawBitmap/FastDecode.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_first.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_last.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_none.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_float.swift",
        "ImageCodec/RawBitmap/FastDecode/_fast_decode_pixel.swift",
        "ImageCodec/RawBitmap/RawBitmap.swift",
        "ImageCodec/RawBitmap/SlowDecode.swift",
        "ImageCodec/RawBitmap/SlowDecode/_aligned_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_aligned_float_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_channel_to_double.swift",
        "ImageCodec/RawBitmap/SlowDecode/_float_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_unsigned_aligned_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_unsigned_channel.swift",
        "ImageCodec/RawBitmap/SlowDecode/_unsigned_pixel.swift",
        "ImageContext/DrawGradient.swift",
        "ImageContext/DrawImage.swift",
        "ImageContext/DrawMeshGradient.swift",
        "ImageContext/DrawPattern.swift",
        "ImageContext/DrawShadow.swift",
        "ImageContext/DrawShape.swift",
        "ImageContext/ImageContext.swift",
        "ImageContext/ImageContextExtension.swift",
        "ImageContext/PixelBlender.swift",
        "ImageContext/Rasterizer.swift",
        "ImageContext/Rendering.swift",
        "ImageContext/SetClip.swift",
        "ImageContext/Stencil.swift",
        "ImageFilter/BayerDithering.swift",
        "ImageFilter/BilateralFilter.swift",
        "ImageFilter/ColorSeparation.swift",
        "ImageFilter/DifferenceOfGaussian.swift",
        "ImageFilter/DisplacementMap.swift",
        "ImageFilter/GaussianBlur.swift",
        "ImageFilter/ImageConvolution.swift",
        "ImageFilter/LaplacianOfGaussian.swift",
        "ImageFilter/SVGTurbulence.swift",
        "ImageFilter/Underpainting.swift",
        "ImageFilter/kMeansClustering.swift",
        "Noise/SVGNoiseGenerator.swift",
        "Noise/SimplexNoise.swift",
        "PDFContext/PDFContext.swift",
        "PDFContext/PDFContextEncoder.swift",
        "PDFContext/PDFContextImage.swift",
        "PDFContext/PDFContextPage.swift",
        "PDFDocument/PDFDecoder.swift",
        "PDFDocument/PDFDocument.swift",
        "PDFDocument/PDFFilter/ASCII85Filter.swift",
        "PDFDocument/PDFFilter/ASCIIHexFilter.swift",
        "PDFDocument/PDFFilter/PDFFilter.swift",
        "PDFDocument/PDFName.swift",
        "PDFDocument/PDFNumber.swift",
        "PDFDocument/PDFObject.swift",
        "PDFDocument/PDFPage.swift",
        "PDFDocument/PDFRenderer/PDFBitmap.swift",
        "PDFDocument/PDFRenderer/PDFColorSpace.swift",
        "PDFDocument/PDFRenderer/PDFCommand.swift",
        "PDFDocument/PDFRenderer/PDFDrawPage.swift",
        "PDFDocument/PDFRenderer/PDFFunction.swift",
        "PDFDocument/PDFRenderer/PDFRenderer.swift",
        "PDFDocument/PDFStream.swift",
        "PDFDocument/PDFString.swift",
        "PDFDocument/PDFXref.swift",
        "Platform/AvailableColorSpaces.swift",
        "Platform/AvailableFonts.swift",
        "Prespecialize.swift",
        "SVGContext/SVGContext.swift",
        "SVGContext/SVGEffect/SVGBlendEffect.swift",
        "SVGContext/SVGEffect/SVGColorMatrixEffect.swift",
        "SVGContext/SVGEffect/SVGComponentTransferEffect.swift",
        "SVGContext/SVGEffect/SVGConvolveMatrixEffect.swift",
        "SVGContext/SVGEffect/SVGDisplacementMapEffect.swift",
        "SVGContext/SVGEffect/SVGDropShadowEffect.swift",
        "SVGContext/SVGEffect/SVGEffect.swift",
        "SVGContext/SVGEffect/SVGFloodEffect.swift",
        "SVGContext/SVGEffect/SVGGaussianBlurEffect.swift",
        "SVGContext/SVGEffect/SVGHueRotateEffect.swift",
        "SVGContext/SVGEffect/SVGImageEffect.swift",
        "SVGContext/SVGEffect/SVGLightingEffect.swift",
        "SVGContext/SVGEffect/SVGLuminanceToAlphaEffect.swift",
        "SVGContext/SVGEffect/SVGMergeEffect.swift",
        "SVGContext/SVGEffect/SVGMorphologyEffect.swift",
        "SVGContext/SVGEffect/SVGOffsetEffect.swift",
        "SVGContext/SVGEffect/SVGSaturateEffect.swift",
        "SVGContext/SVGEffect/SVGTileEffect.swift",
        "SVGContext/SVGEffect/SVGTurbulenceEffect.swift",
        "Serialization/FixedNumber.swift"
      ],
      "target_dependencies" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieGeometry",
      "module_type" : "SwiftTarget",
      "name" : "DoggieGeometry",
      "path" : "Sources/DoggieGeometry",
      "product_memberships" : [
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "ApplePlatform/AppleExported.swift",
        "ApplePlatform/Geometry/CGAffineTransform.swift",
        "ApplePlatform/Geometry/CGPath.swift",
        "ApplePlatform/Geometry/CGPoint.swift",
        "ApplePlatform/Geometry/CGRect.swift",
        "ApplePlatform/Geometry/CGSize.swift",
        "ApplePlatform/SwiftPlayground.swift",
        "Arithmetic.swift",
        "Bezier/Bezier.swift",
        "Bezier/BezierArc.swift",
        "Bezier/BezierOffset.swift",
        "Bezier/BezierProtocol.swift",
        "Bezier/CubicBezier.swift",
        "Bezier/CubicBezierPatch.swift",
        "Bezier/CubicBezierTriangularPatch.swift",
        "Bezier/LineSegment.swift",
        "Bezier/QuadBezier.swift",
        "Exported.swift",
        "Extension.swift",
        "Geometry/EdgeInsets.swift",
        "Geometry/Ellipse.swift",
        "Geometry/Geometry.swift",
        "Geometry/Matrix.swift",
        "Geometry/Point.swift",
        "Geometry/Rect.swift",
        "Geometry/SDTransform.swift",
        "Geometry/Size.swift",
        "Geometry/Tensor.swift",
        "Geometry/Vector.swift",
        "Shape/PathCoder.swift",
        "Shape/PathStroke.swift",
        "Shape/SVGPathCoder.swift",
        "Shape/Shape.swift",
        "Shape/ShapeSegment.swift",
        "Shape/ShapeTweening.swift",
        "Shape/ShapeWinding.swift",
        "Shape/VariableRoundStroke.swift",
        "ShapeRegion/BreakLoop.swift",
        "ShapeRegion/PathBuilder.swift",
        "ShapeRegion/ShapeRegion.swift",
        "ShapeRegion/ShapeRegionOp.swift",
        "ShapeRegion/ShapeRegionWinding.swift"
      ],
      "target_dependencies" : [
        "DoggieCore",
        "DoggieMath"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieGPU",
      "module_type" : "SwiftTarget",
      "name" : "DoggieGPU",
      "path" : "Sources/DoggieGPU",
      "product_memberships" : [
        "DoggieGPU",
        "Doggie"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/BilateralFilter.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/PalettizeKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGComponentTransferKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGConvolveKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGDisplacementMapKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGLightingKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGTurbulenceKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/WrapTileKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/kMeansClusteringKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/DoggieGPU/GPContext/Shaders/MeshGradientKernel.metal",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CoreImage/BilateralFilter.swift",
        "CoreImage/CIImage.swift",
        "CoreImage/CIVector.swift",
        "CoreImage/ConvolveKernel.swift",
        "CoreImage/CoreImage.swift",
        "CoreImage/MorphologyKernel.swift",
        "CoreImage/PalettizeKernel.swift",
        "CoreImage/SVGComponentTransferKernel.swift",
        "CoreImage/SVGConvolveKernel.swift",
        "CoreImage/SVGDisplacementMapKernel.swift",
        "CoreImage/SVGLightingKernel.swift",
        "CoreImage/SVGTurbulenceKernel.swift",
        "CoreImage/ShaderLoader.swift",
        "CoreImage/WrapTileKernel.swift",
        "CoreImage/kMeansClusteringKernel.swift",
        "Exported.swift",
        "GPContext/CGContextProcessorKernel.swift",
        "GPContext/CGPathProcessorKernel.swift",
        "GPContext/GPContext.swift",
        "GPContext/GPContextBase.swift",
        "GPContext/GPContextExtension.swift",
        "GPContext/GPContextPattern.swift",
        "GPContext/MeshGradientKernel.swift",
        "Metal/MTLDevice.swift",
        "Packed.swift",
        "SIMD.swift"
      ],
      "target_dependencies" : [
        "DoggieGraphics"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DoggieCore",
      "module_type" : "SwiftTarget",
      "name" : "DoggieCore",
      "path" : "Sources/DoggieCore",
      "product_dependencies" : [
        "RealModule",
        "Algorithms",
        "Collections",
        "Float16",
        "brotli"
      ],
      "product_memberships" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU",
        "Doggie"
      ],
      "sources" : [
        "ApplePlatform/AppleCompression.swift",
        "ApplePlatform/AppleExported.swift",
        "ApplePlatform/Metal.swift",
        "ApplePlatform/NSItemProvider.swift",
        "Compression/CompressionCodec.swift",
        "Compression/brotli/BrotliDecoder.swift",
        "Compression/brotli/BrotliEncoder.swift",
        "Compression/zlib/Deflate.swift",
        "Compression/zlib/Inflate.swift",
        "Compression/zlib/zlib.swift",
        "Concurrency/Sendable.swift",
        "Concurrency/SerialRunLoop.swift",
        "Concurrency/UnsafeSendable.swift",
        "Exported.swift",
        "Foundation/Algorithm.swift",
        "Foundation/Cache.swift",
        "Foundation/ContiguousBuffer.swift",
        "Foundation/Data.swift",
        "Foundation/Date.swift",
        "Foundation/FileManager.swift",
        "Foundation/Graph.swift",
        "Foundation/Locking.swift",
        "Foundation/MappedBuffer.swift",
        "Foundation/Parallel.swift",
        "Foundation/TypePunned.swift",
        "Foundation/TypedData.swift",
        "Foundation/URLComponents.swift",
        "Foundation/UUID.swift",
        "Foundation/WeakDictionary.swift",
        "Foundation/WeakSet.swift",
        "Json/Json.swift",
        "Json/JsonCodable.swift",
        "Json/JsonConvertible.swift",
        "Json/JsonNumber.swift",
        "Json/JsonNumberCodable.swift",
        "MediaType/FileExtension.swift",
        "MediaType/MIMEType.swift",
        "MediaType/MediaType.swift",
        "Serialization/BinaryFixedPoint.swift",
        "Serialization/ByteCodable.swift",
        "Serialization/Endianness.swift",
        "Serialization/Signature.swift",
        "Swift/CollectionExtension.swift",
        "Swift/Decimal.swift",
        "Swift/Dictionary.swift",
        "Swift/Equatable.swift",
        "Swift/FloatingPoint.swift",
        "Swift/Integer.swift",
        "Swift/OptionOneCollection.swift",
        "Swift/Policy.swift",
        "Swift/RawBitPattern.swift",
        "Swift/String.swift",
        "Swift/replaceValue.swift",
        "XML/SDXMLAttribute.swift",
        "XML/SDXMLDocument.swift",
        "XML/SDXMLElement.swift",
        "XML/SDXMLParser.swift",
        "XML/SDXMLString.swift"
      ],
      "target_dependencies" : [
        "zlib_c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Doggie",
      "module_type" : "SwiftTarget",
      "name" : "Doggie",
      "path" : "Sources/Doggie",
      "product_memberships" : [
        "Doggie"
      ],
      "sources" : [
        "Exported.swift"
      ],
      "target_dependencies" : [
        "DoggieCore",
        "DoggieMath",
        "DoggieGeometry",
        "DoggieGraphics",
        "DoggieGPU"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.