Build Information
Successful build of swift-png, reference 4.4.9 (d444d9
), with Swift 6.1 for macOS (SPM) on 30 Apr 2025 08:26:54 UTC.
Swift 6 data race errors: 30
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
118 | /// The numerical type code for this type identifier is `0x6348524d`.
119 | public static
120 | let cHRM:Self = .init(unchecked: 0x63_48_52_4d)
| |- warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'cHRM' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | /// The `gAMA` chunk type.
122 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:125:13: warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
123 | /// The numerical type code for this type identifier is `0x67414d41`.
124 | public static
125 | let gAMA:Self = .init(unchecked: 0x67_41_4d_41)
| |- warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'gAMA' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | /// The `iCCP` chunk type.
127 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:130:13: warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
128 | /// The numerical type code for this type identifier is `0x69434350`.
129 | public static
130 | let iCCP:Self = .init(unchecked: 0x69_43_43_50)
| |- warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iCCP' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | /// The `sBIT` chunk type.
132 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:135:13: warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
133 | /// The numerical type code for this type identifier is `0x73424954`.
134 | public static
135 | let sBIT:Self = .init(unchecked: 0x73_42_49_54)
| |- warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sBIT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | /// The `sRGB` chunk type.
137 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:140:13: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
138 | /// The numerical type code for this type identifier is `0x73524742`.
139 | public static
140 | let sRGB:Self = .init(unchecked: 0x73_52_47_42)
| |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 | /// The `bKGD` chunk type.
142 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:145:13: warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
143 | /// The numerical type code for this type identifier is `0x624b4744`.
144 | public static
145 | let bKGD:Self = .init(unchecked: 0x62_4b_47_44)
| |- warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bKGD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | /// The `hIST` chunk type.
147 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:150:13: warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
148 | /// The numerical type code for this type identifier is `0x68495354`.
149 | public static
150 | let hIST:Self = .init(unchecked: 0x68_49_53_54)
| |- warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hIST' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | /// The `tRNS` chunk type.
152 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:155:13: warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
153 | /// The numerical type code for this type identifier is `0x74524e53`.
154 | public static
155 | let tRNS:Self = .init(unchecked: 0x74_52_4e_53)
| |- warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tRNS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |
157 | /// The `pHYs` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:161:13: warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
159 | /// The numerical type code for this type identifier is `0x70485973`.
160 | public static
161 | let pHYs:Self = .init(unchecked: 0x70_48_59_73)
| |- warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'pHYs' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 | /// The `sPLT` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:167:13: warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
165 | /// The numerical type code for this type identifier is `0x73504c54`.
166 | public static
167 | let sPLT:Self = .init(unchecked: 0x73_50_4c_54)
| |- warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sPLT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | /// The `tIME` chunk type.
169 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:172:13: warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
170 | /// The numerical type code for this type identifier is `0x74494d45`.
171 | public static
172 | let tIME:Self = .init(unchecked: 0x74_49_4d_45)
| |- warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tIME' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 |
174 | /// The `iTXt` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:178:13: warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
176 | /// The numerical type code for this type identifier is `0x69545874`.
177 | public static
178 | let iTXt:Self = .init(unchecked: 0x69_54_58_74)
| |- warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | /// The `tEXt` chunk type.
180 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:183:13: warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
181 | /// The numerical type code for this type identifier is `0x74455874`.
182 | public static
183 | let tEXt:Self = .init(unchecked: 0x74_45_58_74)
| |- warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tEXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
184 | /// The `zTXt` chunk type.
185 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:188:13: warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
186 | /// The numerical type code for this type identifier is `0x7a545874`.
187 | public static
188 | let zTXt:Self = .init(unchecked: 0x7a_54_58_74)
| |- warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 | }
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.ParsingError.swift:31:14: warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
29 | /// images, so library-generated instances of this error case always have
30 | /// this field set to ``Standard/ios``.
31 | case invalidHeaderPixelFormat(PNG.Format.Pixel, standard:PNG.Standard)
| `- warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
32 |
33 | /// An ``Chunk/IHDR`` chunk had an invalid compression method code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.Standard.swift:5:10: note: consider making enum 'Standard' conform to the 'Sendable' protocol
3 | /// A PNG standard.
4 | public
5 | enum Standard
| `- note: consider making enum 'Standard' conform to the 'Sendable' protocol
6 | {
7 | /// The core PNG color formats.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.Percentmille.swift:16:13: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A rational percentmille value.
4 | public
5 | struct Percentmille:AdditiveArithmetic, ExpressibleByIntegerLiteral
| `- note: consider making struct 'Percentmille' conform to the 'Sendable' protocol
6 | {
7 | /// The numerator of this percentmille value.
:
14 | /// A percentmille value of zero.
15 | public static
16 | let zero:Self = 0
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | /// Creates a percentmille value with the given numerator.
[93/169] Compiling PNG PNG.Layout.swift
[94/169] Compiling PNG General.swift
[95/169] Compiling PNG LZ77.DecompressionError (ext).swift
[96/169] Compiling PNG LZ77.DeflateHeaderError (ext).swift
[97/169] Compiling PNG PNG.BytestreamDestination.swift
[98/169] Compiling PNG PNG.SuggestedPalette.Entries.swift
[99/169] Compiling PNG PNG.SuggestedPalette.swift
[100/169] Compiling PNG PNG.Text.swift
[101/169] Compiling PNG PNG.TimeModified.swift
[102/169] Compiling PNG PNG.Transparency.Case.swift
[103/169] Compiling PNG PNG.ColorRendering.swift
[104/169] Compiling PNG PNG.Gamma.swift
[105/169] Compiling PNG PNG.Header.swift
[106/169] Compiling PNG PNG.Histogram.swift
[107/169] Compiling PNG PNG.Palette.swift
[108/169] Compiling PNG PNG.Context.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:29:14: warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
| `- warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
31 |
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
[109/169] Compiling PNG PNG.Decoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:29:14: warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
| `- warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
31 |
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
[110/169] Compiling PNG PNG.DecodingError.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:29:14: warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
| `- warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
31 |
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
[111/169] Compiling PNG PNG.Metadata.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:29:14: warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
| `- warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
31 |
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
[112/169] Compiling PNG PNG.Standard.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:28:14: warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
26 | /// - Parameter after:
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
| `- warning: associated value 'required(chunk:before:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:29:14: warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
27 | /// The type of the preceeding chunk that precludes the encountered chunk.
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
| `- warning: associated value 'duplicate(chunk:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
31 |
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.DecodingError.swift:30:14: warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
28 | case required(chunk:PNG.Chunk, before:PNG.Chunk)
29 | case duplicate(chunk:PNG.Chunk)
30 | case unexpected(chunk:PNG.Chunk, after:PNG.Chunk)
| `- warning: associated value 'unexpected(chunk:after:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'PNG.Chunk'; this is an error in the Swift 6 language mode
31 |
32 | /// The decoder finished processing the last ``Chunk/IDAT`` chunk
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:5:12: note: consider making struct 'Chunk' conform to the 'Sendable' protocol
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
[113/169] Compiling PNG Array (ext).swift
[114/169] Compiling PNG ArraySlice (ext).swift
[115/169] Compiling PNG PNG.Color.swift
[116/169] Compiling PNG PNG.RGBA.swift
[117/169] Compiling PNG PNG.VA.swift
[118/169] Compiling PNG PNG.ParsingError.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.ParsingError.swift:31:14: warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
29 | /// images, so library-generated instances of this error case always have
30 | /// this field set to ``Standard/ios``.
31 | case invalidHeaderPixelFormat(PNG.Format.Pixel, standard:PNG.Standard)
| `- warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
32 |
33 | /// An ``Chunk/IHDR`` chunk had an invalid compression method code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.Standard.swift:5:10: note: consider making enum 'Standard' conform to the 'Sendable' protocol
3 | /// A PNG standard.
4 | public
5 | enum Standard
| `- note: consider making enum 'Standard' conform to the 'Sendable' protocol
6 | {
7 | /// The core PNG color formats.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.Percentmille.swift:16:13: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A rational percentmille value.
4 | public
5 | struct Percentmille:AdditiveArithmetic, ExpressibleByIntegerLiteral
| `- note: consider making struct 'Percentmille' conform to the 'Sendable' protocol
6 | {
7 | /// The numerator of this percentmille value.
:
14 | /// A percentmille value of zero.
15 | public static
16 | let zero:Self = 0
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | /// Creates a percentmille value with the given numerator.
[119/169] Compiling PNG PNG.Percentmille.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.ParsingError.swift:31:14: warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
29 | /// images, so library-generated instances of this error case always have
30 | /// this field set to ``Standard/ios``.
31 | case invalidHeaderPixelFormat(PNG.Format.Pixel, standard:PNG.Standard)
| `- warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
32 |
33 | /// An ``Chunk/IHDR`` chunk had an invalid compression method code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.Standard.swift:5:10: note: consider making enum 'Standard' conform to the 'Sendable' protocol
3 | /// A PNG standard.
4 | public
5 | enum Standard
| `- note: consider making enum 'Standard' conform to the 'Sendable' protocol
6 | {
7 | /// The core PNG color formats.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.Percentmille.swift:16:13: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A rational percentmille value.
4 | public
5 | struct Percentmille:AdditiveArithmetic, ExpressibleByIntegerLiteral
| `- note: consider making struct 'Percentmille' conform to the 'Sendable' protocol
6 | {
7 | /// The numerator of this percentmille value.
:
14 | /// A percentmille value of zero.
15 | public static
16 | let zero:Self = 0
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | /// Creates a percentmille value with the given numerator.
[120/169] Compiling PNG PNG.PhysicalDimensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.ParsingError.swift:31:14: warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
29 | /// images, so library-generated instances of this error case always have
30 | /// this field set to ``Standard/ios``.
31 | case invalidHeaderPixelFormat(PNG.Format.Pixel, standard:PNG.Standard)
| `- warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
32 |
33 | /// An ``Chunk/IHDR`` chunk had an invalid compression method code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.Standard.swift:5:10: note: consider making enum 'Standard' conform to the 'Sendable' protocol
3 | /// A PNG standard.
4 | public
5 | enum Standard
| `- note: consider making enum 'Standard' conform to the 'Sendable' protocol
6 | {
7 | /// The core PNG color formats.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.Percentmille.swift:16:13: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A rational percentmille value.
4 | public
5 | struct Percentmille:AdditiveArithmetic, ExpressibleByIntegerLiteral
| `- note: consider making struct 'Percentmille' conform to the 'Sendable' protocol
6 | {
7 | /// The numerator of this percentmille value.
:
14 | /// A percentmille value of zero.
15 | public static
16 | let zero:Self = 0
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | /// Creates a percentmille value with the given numerator.
[121/169] Compiling PNG PNG.SignificantBits.Case.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.ParsingError.swift:31:14: warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
29 | /// images, so library-generated instances of this error case always have
30 | /// this field set to ``Standard/ios``.
31 | case invalidHeaderPixelFormat(PNG.Format.Pixel, standard:PNG.Standard)
| `- warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
32 |
33 | /// An ``Chunk/IHDR`` chunk had an invalid compression method code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.Standard.swift:5:10: note: consider making enum 'Standard' conform to the 'Sendable' protocol
3 | /// A PNG standard.
4 | public
5 | enum Standard
| `- note: consider making enum 'Standard' conform to the 'Sendable' protocol
6 | {
7 | /// The core PNG color formats.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.Percentmille.swift:16:13: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A rational percentmille value.
4 | public
5 | struct Percentmille:AdditiveArithmetic, ExpressibleByIntegerLiteral
| `- note: consider making struct 'Percentmille' conform to the 'Sendable' protocol
6 | {
7 | /// The numerator of this percentmille value.
:
14 | /// A percentmille value of zero.
15 | public static
16 | let zero:Self = 0
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | /// Creates a percentmille value with the given numerator.
[122/169] Compiling PNG PNG.SignificantBits.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.ParsingError.swift:31:14: warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
29 | /// images, so library-generated instances of this error case always have
30 | /// this field set to ``Standard/ios``.
31 | case invalidHeaderPixelFormat(PNG.Format.Pixel, standard:PNG.Standard)
| `- warning: associated value 'invalidHeaderPixelFormat(_:standard:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'PNG.Standard'; this is an error in the Swift 6 language mode
32 |
33 | /// An ``Chunk/IHDR`` chunk had an invalid compression method code.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Decoding/PNG.Standard.swift:5:10: note: consider making enum 'Standard' conform to the 'Sendable' protocol
3 | /// A PNG standard.
4 | public
5 | enum Standard
| `- note: consider making enum 'Standard' conform to the 'Sendable' protocol
6 | {
7 | /// The core PNG color formats.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Parsing/PNG.Percentmille.swift:16:13: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A rational percentmille value.
4 | public
5 | struct Percentmille:AdditiveArithmetic, ExpressibleByIntegerLiteral
| `- note: consider making struct 'Percentmille' conform to the 'Sendable' protocol
6 | {
7 | /// The numerator of this percentmille value.
:
14 | /// A percentmille value of zero.
15 | public static
16 | let zero:Self = 0
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'PNG.Percentmille' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | /// Creates a percentmille value with the given numerator.
[123/169] Compiling PNG PNG.BytestreamSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:94:13: warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
92 | /// The numerical type code for this type identifier is `0x43674249`.
93 | public static
94 | let CgBI:Self = .init(unchecked: 0x43_67_42_49)
| |- warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CgBI' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 | /// The `IHDR` chunk type.
96 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:99:13: warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
97 | /// The numerical type code for this type identifier is `0x49484452`.
98 | public static
99 | let IHDR:Self = .init(unchecked: 0x49_48_44_52)
| |- warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IHDR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | /// The `PLTE` chunk type.
101 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:104:13: warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
102 | /// The numerical type code for this type identifier is `0x504c5445`.
103 | public static
104 | let PLTE:Self = .init(unchecked: 0x50_4c_54_45)
| |- warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PLTE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | /// The `IDAT` chunk type.
106 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:109:13: warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
107 | /// The numerical type code for this type identifier is `0x49444154`.
108 | public static
109 | let IDAT:Self = .init(unchecked: 0x49_44_41_54)
| |- warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IDAT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | /// The `IEND` chunk type.
111 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:114:13: warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
112 | /// The numerical type code for this type identifier is `0x49454e44`.
113 | public static
114 | let IEND:Self = .init(unchecked: 0x49_45_4e_44)
| |- warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IEND' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |
116 | /// The `cHRM` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:120:13: warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
118 | /// The numerical type code for this type identifier is `0x6348524d`.
119 | public static
120 | let cHRM:Self = .init(unchecked: 0x63_48_52_4d)
| |- warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'cHRM' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | /// The `gAMA` chunk type.
122 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:125:13: warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
123 | /// The numerical type code for this type identifier is `0x67414d41`.
124 | public static
125 | let gAMA:Self = .init(unchecked: 0x67_41_4d_41)
| |- warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'gAMA' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | /// The `iCCP` chunk type.
127 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:130:13: warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
128 | /// The numerical type code for this type identifier is `0x69434350`.
129 | public static
130 | let iCCP:Self = .init(unchecked: 0x69_43_43_50)
| |- warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iCCP' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | /// The `sBIT` chunk type.
132 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:135:13: warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
133 | /// The numerical type code for this type identifier is `0x73424954`.
134 | public static
135 | let sBIT:Self = .init(unchecked: 0x73_42_49_54)
| |- warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sBIT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | /// The `sRGB` chunk type.
137 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:140:13: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
138 | /// The numerical type code for this type identifier is `0x73524742`.
139 | public static
140 | let sRGB:Self = .init(unchecked: 0x73_52_47_42)
| |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 | /// The `bKGD` chunk type.
142 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:145:13: warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
143 | /// The numerical type code for this type identifier is `0x624b4744`.
144 | public static
145 | let bKGD:Self = .init(unchecked: 0x62_4b_47_44)
| |- warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bKGD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | /// The `hIST` chunk type.
147 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:150:13: warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
148 | /// The numerical type code for this type identifier is `0x68495354`.
149 | public static
150 | let hIST:Self = .init(unchecked: 0x68_49_53_54)
| |- warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hIST' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | /// The `tRNS` chunk type.
152 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:155:13: warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
153 | /// The numerical type code for this type identifier is `0x74524e53`.
154 | public static
155 | let tRNS:Self = .init(unchecked: 0x74_52_4e_53)
| |- warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tRNS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |
157 | /// The `pHYs` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:161:13: warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
159 | /// The numerical type code for this type identifier is `0x70485973`.
160 | public static
161 | let pHYs:Self = .init(unchecked: 0x70_48_59_73)
| |- warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'pHYs' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 | /// The `sPLT` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:167:13: warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
165 | /// The numerical type code for this type identifier is `0x73504c54`.
166 | public static
167 | let sPLT:Self = .init(unchecked: 0x73_50_4c_54)
| |- warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sPLT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | /// The `tIME` chunk type.
169 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:172:13: warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
170 | /// The numerical type code for this type identifier is `0x74494d45`.
171 | public static
172 | let tIME:Self = .init(unchecked: 0x74_49_4d_45)
| |- warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tIME' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 |
174 | /// The `iTXt` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:178:13: warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
176 | /// The numerical type code for this type identifier is `0x69545874`.
177 | public static
178 | let iTXt:Self = .init(unchecked: 0x69_54_58_74)
| |- warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | /// The `tEXt` chunk type.
180 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:183:13: warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
181 | /// The numerical type code for this type identifier is `0x74455874`.
182 | public static
183 | let tEXt:Self = .init(unchecked: 0x74_45_58_74)
| |- warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tEXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
184 | /// The `zTXt` chunk type.
185 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:188:13: warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
186 | /// The numerical type code for this type identifier is `0x7a545874`.
187 | public static
188 | let zTXt:Self = .init(unchecked: 0x7a_54_58_74)
| |- warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 | }
[124/169] Compiling PNG PNG.Chunk.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:94:13: warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
92 | /// The numerical type code for this type identifier is `0x43674249`.
93 | public static
94 | let CgBI:Self = .init(unchecked: 0x43_67_42_49)
| |- warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CgBI' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 | /// The `IHDR` chunk type.
96 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:99:13: warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
97 | /// The numerical type code for this type identifier is `0x49484452`.
98 | public static
99 | let IHDR:Self = .init(unchecked: 0x49_48_44_52)
| |- warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IHDR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | /// The `PLTE` chunk type.
101 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:104:13: warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
102 | /// The numerical type code for this type identifier is `0x504c5445`.
103 | public static
104 | let PLTE:Self = .init(unchecked: 0x50_4c_54_45)
| |- warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PLTE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | /// The `IDAT` chunk type.
106 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:109:13: warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
107 | /// The numerical type code for this type identifier is `0x49444154`.
108 | public static
109 | let IDAT:Self = .init(unchecked: 0x49_44_41_54)
| |- warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IDAT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | /// The `IEND` chunk type.
111 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:114:13: warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
112 | /// The numerical type code for this type identifier is `0x49454e44`.
113 | public static
114 | let IEND:Self = .init(unchecked: 0x49_45_4e_44)
| |- warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IEND' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |
116 | /// The `cHRM` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:120:13: warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
118 | /// The numerical type code for this type identifier is `0x6348524d`.
119 | public static
120 | let cHRM:Self = .init(unchecked: 0x63_48_52_4d)
| |- warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'cHRM' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | /// The `gAMA` chunk type.
122 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:125:13: warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
123 | /// The numerical type code for this type identifier is `0x67414d41`.
124 | public static
125 | let gAMA:Self = .init(unchecked: 0x67_41_4d_41)
| |- warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'gAMA' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | /// The `iCCP` chunk type.
127 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:130:13: warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
128 | /// The numerical type code for this type identifier is `0x69434350`.
129 | public static
130 | let iCCP:Self = .init(unchecked: 0x69_43_43_50)
| |- warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iCCP' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | /// The `sBIT` chunk type.
132 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:135:13: warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
133 | /// The numerical type code for this type identifier is `0x73424954`.
134 | public static
135 | let sBIT:Self = .init(unchecked: 0x73_42_49_54)
| |- warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sBIT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | /// The `sRGB` chunk type.
137 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:140:13: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
138 | /// The numerical type code for this type identifier is `0x73524742`.
139 | public static
140 | let sRGB:Self = .init(unchecked: 0x73_52_47_42)
| |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 | /// The `bKGD` chunk type.
142 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:145:13: warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
143 | /// The numerical type code for this type identifier is `0x624b4744`.
144 | public static
145 | let bKGD:Self = .init(unchecked: 0x62_4b_47_44)
| |- warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bKGD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | /// The `hIST` chunk type.
147 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:150:13: warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
148 | /// The numerical type code for this type identifier is `0x68495354`.
149 | public static
150 | let hIST:Self = .init(unchecked: 0x68_49_53_54)
| |- warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hIST' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | /// The `tRNS` chunk type.
152 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:155:13: warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
153 | /// The numerical type code for this type identifier is `0x74524e53`.
154 | public static
155 | let tRNS:Self = .init(unchecked: 0x74_52_4e_53)
| |- warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tRNS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |
157 | /// The `pHYs` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:161:13: warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
159 | /// The numerical type code for this type identifier is `0x70485973`.
160 | public static
161 | let pHYs:Self = .init(unchecked: 0x70_48_59_73)
| |- warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'pHYs' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 | /// The `sPLT` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:167:13: warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
165 | /// The numerical type code for this type identifier is `0x73504c54`.
166 | public static
167 | let sPLT:Self = .init(unchecked: 0x73_50_4c_54)
| |- warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sPLT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | /// The `tIME` chunk type.
169 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:172:13: warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
170 | /// The numerical type code for this type identifier is `0x74494d45`.
171 | public static
172 | let tIME:Self = .init(unchecked: 0x74_49_4d_45)
| |- warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tIME' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 |
174 | /// The `iTXt` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:178:13: warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
176 | /// The numerical type code for this type identifier is `0x69545874`.
177 | public static
178 | let iTXt:Self = .init(unchecked: 0x69_54_58_74)
| |- warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | /// The `tEXt` chunk type.
180 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:183:13: warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
181 | /// The numerical type code for this type identifier is `0x74455874`.
182 | public static
183 | let tEXt:Self = .init(unchecked: 0x74_45_58_74)
| |- warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tEXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
184 | /// The `zTXt` chunk type.
185 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:188:13: warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
186 | /// The numerical type code for this type identifier is `0x7a545874`.
187 | public static
188 | let zTXt:Self = .init(unchecked: 0x7a_54_58_74)
| |- warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 | }
[125/169] Compiling PNG PNG.LexingError.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:94:13: warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
92 | /// The numerical type code for this type identifier is `0x43674249`.
93 | public static
94 | let CgBI:Self = .init(unchecked: 0x43_67_42_49)
| |- warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CgBI' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 | /// The `IHDR` chunk type.
96 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:99:13: warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
97 | /// The numerical type code for this type identifier is `0x49484452`.
98 | public static
99 | let IHDR:Self = .init(unchecked: 0x49_48_44_52)
| |- warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IHDR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | /// The `PLTE` chunk type.
101 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:104:13: warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
102 | /// The numerical type code for this type identifier is `0x504c5445`.
103 | public static
104 | let PLTE:Self = .init(unchecked: 0x50_4c_54_45)
| |- warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PLTE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | /// The `IDAT` chunk type.
106 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:109:13: warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
107 | /// The numerical type code for this type identifier is `0x49444154`.
108 | public static
109 | let IDAT:Self = .init(unchecked: 0x49_44_41_54)
| |- warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IDAT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | /// The `IEND` chunk type.
111 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:114:13: warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
112 | /// The numerical type code for this type identifier is `0x49454e44`.
113 | public static
114 | let IEND:Self = .init(unchecked: 0x49_45_4e_44)
| |- warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IEND' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |
116 | /// The `cHRM` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:120:13: warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
118 | /// The numerical type code for this type identifier is `0x6348524d`.
119 | public static
120 | let cHRM:Self = .init(unchecked: 0x63_48_52_4d)
| |- warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'cHRM' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | /// The `gAMA` chunk type.
122 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:125:13: warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
123 | /// The numerical type code for this type identifier is `0x67414d41`.
124 | public static
125 | let gAMA:Self = .init(unchecked: 0x67_41_4d_41)
| |- warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'gAMA' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | /// The `iCCP` chunk type.
127 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:130:13: warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
128 | /// The numerical type code for this type identifier is `0x69434350`.
129 | public static
130 | let iCCP:Self = .init(unchecked: 0x69_43_43_50)
| |- warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iCCP' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | /// The `sBIT` chunk type.
132 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:135:13: warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
133 | /// The numerical type code for this type identifier is `0x73424954`.
134 | public static
135 | let sBIT:Self = .init(unchecked: 0x73_42_49_54)
| |- warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sBIT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | /// The `sRGB` chunk type.
137 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:140:13: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
138 | /// The numerical type code for this type identifier is `0x73524742`.
139 | public static
140 | let sRGB:Self = .init(unchecked: 0x73_52_47_42)
| |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 | /// The `bKGD` chunk type.
142 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:145:13: warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
143 | /// The numerical type code for this type identifier is `0x624b4744`.
144 | public static
145 | let bKGD:Self = .init(unchecked: 0x62_4b_47_44)
| |- warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bKGD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | /// The `hIST` chunk type.
147 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:150:13: warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
148 | /// The numerical type code for this type identifier is `0x68495354`.
149 | public static
150 | let hIST:Self = .init(unchecked: 0x68_49_53_54)
| |- warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hIST' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | /// The `tRNS` chunk type.
152 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:155:13: warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
153 | /// The numerical type code for this type identifier is `0x74524e53`.
154 | public static
155 | let tRNS:Self = .init(unchecked: 0x74_52_4e_53)
| |- warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tRNS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |
157 | /// The `pHYs` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:161:13: warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
159 | /// The numerical type code for this type identifier is `0x70485973`.
160 | public static
161 | let pHYs:Self = .init(unchecked: 0x70_48_59_73)
| |- warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'pHYs' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 | /// The `sPLT` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:167:13: warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
165 | /// The numerical type code for this type identifier is `0x73504c54`.
166 | public static
167 | let sPLT:Self = .init(unchecked: 0x73_50_4c_54)
| |- warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sPLT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | /// The `tIME` chunk type.
169 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:172:13: warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
170 | /// The numerical type code for this type identifier is `0x74494d45`.
171 | public static
172 | let tIME:Self = .init(unchecked: 0x74_49_4d_45)
| |- warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tIME' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 |
174 | /// The `iTXt` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:178:13: warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
176 | /// The numerical type code for this type identifier is `0x69545874`.
177 | public static
178 | let iTXt:Self = .init(unchecked: 0x69_54_58_74)
| |- warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | /// The `tEXt` chunk type.
180 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:183:13: warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
181 | /// The numerical type code for this type identifier is `0x74455874`.
182 | public static
183 | let tEXt:Self = .init(unchecked: 0x74_45_58_74)
| |- warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tEXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
184 | /// The `zTXt` chunk type.
185 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:188:13: warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
186 | /// The numerical type code for this type identifier is `0x7a545874`.
187 | public static
188 | let zTXt:Self = .init(unchecked: 0x7a_54_58_74)
| |- warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 | }
[126/169] Compiling PNG PNG.Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:94:13: warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
92 | /// The numerical type code for this type identifier is `0x43674249`.
93 | public static
94 | let CgBI:Self = .init(unchecked: 0x43_67_42_49)
| |- warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CgBI' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 | /// The `IHDR` chunk type.
96 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:99:13: warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
97 | /// The numerical type code for this type identifier is `0x49484452`.
98 | public static
99 | let IHDR:Self = .init(unchecked: 0x49_48_44_52)
| |- warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IHDR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | /// The `PLTE` chunk type.
101 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:104:13: warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
102 | /// The numerical type code for this type identifier is `0x504c5445`.
103 | public static
104 | let PLTE:Self = .init(unchecked: 0x50_4c_54_45)
| |- warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PLTE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | /// The `IDAT` chunk type.
106 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:109:13: warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
107 | /// The numerical type code for this type identifier is `0x49444154`.
108 | public static
109 | let IDAT:Self = .init(unchecked: 0x49_44_41_54)
| |- warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IDAT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | /// The `IEND` chunk type.
111 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:114:13: warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
112 | /// The numerical type code for this type identifier is `0x49454e44`.
113 | public static
114 | let IEND:Self = .init(unchecked: 0x49_45_4e_44)
| |- warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IEND' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |
116 | /// The `cHRM` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:120:13: warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
118 | /// The numerical type code for this type identifier is `0x6348524d`.
119 | public static
120 | let cHRM:Self = .init(unchecked: 0x63_48_52_4d)
| |- warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'cHRM' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | /// The `gAMA` chunk type.
122 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:125:13: warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
123 | /// The numerical type code for this type identifier is `0x67414d41`.
124 | public static
125 | let gAMA:Self = .init(unchecked: 0x67_41_4d_41)
| |- warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'gAMA' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | /// The `iCCP` chunk type.
127 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:130:13: warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
128 | /// The numerical type code for this type identifier is `0x69434350`.
129 | public static
130 | let iCCP:Self = .init(unchecked: 0x69_43_43_50)
| |- warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iCCP' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | /// The `sBIT` chunk type.
132 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:135:13: warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
133 | /// The numerical type code for this type identifier is `0x73424954`.
134 | public static
135 | let sBIT:Self = .init(unchecked: 0x73_42_49_54)
| |- warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sBIT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | /// The `sRGB` chunk type.
137 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:140:13: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
138 | /// The numerical type code for this type identifier is `0x73524742`.
139 | public static
140 | let sRGB:Self = .init(unchecked: 0x73_52_47_42)
| |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 | /// The `bKGD` chunk type.
142 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:145:13: warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
143 | /// The numerical type code for this type identifier is `0x624b4744`.
144 | public static
145 | let bKGD:Self = .init(unchecked: 0x62_4b_47_44)
| |- warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bKGD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | /// The `hIST` chunk type.
147 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:150:13: warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
148 | /// The numerical type code for this type identifier is `0x68495354`.
149 | public static
150 | let hIST:Self = .init(unchecked: 0x68_49_53_54)
| |- warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hIST' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | /// The `tRNS` chunk type.
152 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:155:13: warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
153 | /// The numerical type code for this type identifier is `0x74524e53`.
154 | public static
155 | let tRNS:Self = .init(unchecked: 0x74_52_4e_53)
| |- warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tRNS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |
157 | /// The `pHYs` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:161:13: warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
159 | /// The numerical type code for this type identifier is `0x70485973`.
160 | public static
161 | let pHYs:Self = .init(unchecked: 0x70_48_59_73)
| |- warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'pHYs' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 | /// The `sPLT` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:167:13: warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
165 | /// The numerical type code for this type identifier is `0x73504c54`.
166 | public static
167 | let sPLT:Self = .init(unchecked: 0x73_50_4c_54)
| |- warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sPLT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | /// The `tIME` chunk type.
169 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:172:13: warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
170 | /// The numerical type code for this type identifier is `0x74494d45`.
171 | public static
172 | let tIME:Self = .init(unchecked: 0x74_49_4d_45)
| |- warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tIME' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 |
174 | /// The `iTXt` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:178:13: warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
176 | /// The numerical type code for this type identifier is `0x69545874`.
177 | public static
178 | let iTXt:Self = .init(unchecked: 0x69_54_58_74)
| |- warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | /// The `tEXt` chunk type.
180 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:183:13: warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
181 | /// The numerical type code for this type identifier is `0x74455874`.
182 | public static
183 | let tEXt:Self = .init(unchecked: 0x74_45_58_74)
| |- warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tEXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
184 | /// The `zTXt` chunk type.
185 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:188:13: warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
186 | /// The numerical type code for this type identifier is `0x7a545874`.
187 | public static
188 | let zTXt:Self = .init(unchecked: 0x7a_54_58_74)
| |- warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 | }
[127/169] Compiling PNG PNG.Image.swift
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:94:13: warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
92 | /// The numerical type code for this type identifier is `0x43674249`.
93 | public static
94 | let CgBI:Self = .init(unchecked: 0x43_67_42_49)
| |- warning: static property 'CgBI' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'CgBI' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 | /// The `IHDR` chunk type.
96 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:99:13: warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
97 | /// The numerical type code for this type identifier is `0x49484452`.
98 | public static
99 | let IHDR:Self = .init(unchecked: 0x49_48_44_52)
| |- warning: static property 'IHDR' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IHDR' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | /// The `PLTE` chunk type.
101 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:104:13: warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
102 | /// The numerical type code for this type identifier is `0x504c5445`.
103 | public static
104 | let PLTE:Self = .init(unchecked: 0x50_4c_54_45)
| |- warning: static property 'PLTE' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'PLTE' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | /// The `IDAT` chunk type.
106 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:109:13: warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
107 | /// The numerical type code for this type identifier is `0x49444154`.
108 | public static
109 | let IDAT:Self = .init(unchecked: 0x49_44_41_54)
| |- warning: static property 'IDAT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IDAT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | /// The `IEND` chunk type.
111 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:114:13: warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
112 | /// The numerical type code for this type identifier is `0x49454e44`.
113 | public static
114 | let IEND:Self = .init(unchecked: 0x49_45_4e_44)
| |- warning: static property 'IEND' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'IEND' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |
116 | /// The `cHRM` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:120:13: warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
118 | /// The numerical type code for this type identifier is `0x6348524d`.
119 | public static
120 | let cHRM:Self = .init(unchecked: 0x63_48_52_4d)
| |- warning: static property 'cHRM' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'cHRM' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | /// The `gAMA` chunk type.
122 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:125:13: warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
123 | /// The numerical type code for this type identifier is `0x67414d41`.
124 | public static
125 | let gAMA:Self = .init(unchecked: 0x67_41_4d_41)
| |- warning: static property 'gAMA' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'gAMA' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | /// The `iCCP` chunk type.
127 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:130:13: warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
128 | /// The numerical type code for this type identifier is `0x69434350`.
129 | public static
130 | let iCCP:Self = .init(unchecked: 0x69_43_43_50)
| |- warning: static property 'iCCP' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iCCP' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | /// The `sBIT` chunk type.
132 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:135:13: warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
133 | /// The numerical type code for this type identifier is `0x73424954`.
134 | public static
135 | let sBIT:Self = .init(unchecked: 0x73_42_49_54)
| |- warning: static property 'sBIT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sBIT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | /// The `sRGB` chunk type.
137 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:140:13: warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
138 | /// The numerical type code for this type identifier is `0x73524742`.
139 | public static
140 | let sRGB:Self = .init(unchecked: 0x73_52_47_42)
| |- warning: static property 'sRGB' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sRGB' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 | /// The `bKGD` chunk type.
142 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:145:13: warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
143 | /// The numerical type code for this type identifier is `0x624b4744`.
144 | public static
145 | let bKGD:Self = .init(unchecked: 0x62_4b_47_44)
| |- warning: static property 'bKGD' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bKGD' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | /// The `hIST` chunk type.
147 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:150:13: warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
148 | /// The numerical type code for this type identifier is `0x68495354`.
149 | public static
150 | let hIST:Self = .init(unchecked: 0x68_49_53_54)
| |- warning: static property 'hIST' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hIST' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | /// The `tRNS` chunk type.
152 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:155:13: warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
153 | /// The numerical type code for this type identifier is `0x74524e53`.
154 | public static
155 | let tRNS:Self = .init(unchecked: 0x74_52_4e_53)
| |- warning: static property 'tRNS' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tRNS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |
157 | /// The `pHYs` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:161:13: warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
159 | /// The numerical type code for this type identifier is `0x70485973`.
160 | public static
161 | let pHYs:Self = .init(unchecked: 0x70_48_59_73)
| |- warning: static property 'pHYs' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'pHYs' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 | /// The `sPLT` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:167:13: warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
165 | /// The numerical type code for this type identifier is `0x73504c54`.
166 | public static
167 | let sPLT:Self = .init(unchecked: 0x73_50_4c_54)
| |- warning: static property 'sPLT' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sPLT' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | /// The `tIME` chunk type.
169 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:172:13: warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
170 | /// The numerical type code for this type identifier is `0x74494d45`.
171 | public static
172 | let tIME:Self = .init(unchecked: 0x74_49_4d_45)
| |- warning: static property 'tIME' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tIME' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 |
174 | /// The `iTXt` chunk type.
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:178:13: warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
176 | /// The numerical type code for this type identifier is `0x69545874`.
177 | public static
178 | let iTXt:Self = .init(unchecked: 0x69_54_58_74)
| |- warning: static property 'iTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'iTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | /// The `tEXt` chunk type.
180 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:183:13: warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
181 | /// The numerical type code for this type identifier is `0x74455874`.
182 | public static
183 | let tEXt:Self = .init(unchecked: 0x74_45_58_74)
| |- warning: static property 'tEXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tEXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
184 | /// The `zTXt` chunk type.
185 | ///
/Users/admin/builder/spi-builder-workspace/Sources/PNG/Lexing/PNG.Chunk.swift:188:13: warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
3 | /// A chunk type identifier.
4 | public
5 | struct Chunk:Hashable, Equatable, CustomStringConvertible
| `- note: consider making struct 'Chunk' conform to the 'Sendable' protocol
6 | {
7 | /// The chunk type code.
:
186 | /// The numerical type code for this type identifier is `0x7a545874`.
187 | public static
188 | let zTXt:Self = .init(unchecked: 0x7a_54_58_74)
| |- warning: static property 'zTXt' is not concurrency-safe because non-'Sendable' type 'PNG.Chunk' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'zTXt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 | }
[128/169] Compiling PNG PNG.swift
[129/169] Compiling PNG PNG.Background.Case.swift
[130/169] Compiling PNG PNG.Background.swift
[131/169] Compiling PNG PNG.Chromaticity.swift
[132/169] Compiling PNG PNG.ColorProfile.swift
[133/169] Compiling PNG PNG.Encoder.Pass.swift
[134/169] Compiling PNG PNG.Encoder.swift
[135/169] Compiling PNG PNG.FormattingError.swift
[136/169] Compiling PNG PNG.Format.Pixel.swift
[137/169] Compiling PNG PNG.Format.swift
[138/169] Compiling PNG PNG.Transparency.swift
[139/169] Compiling PNG System.swift
[140/169] Compiling PNG UnsafeMutableBufferPointer (ext).swift
[141/169] Compiling PNG __Entrypoint.swift
[142/191] Emitting module StreamingZlib
[143/191] Compiling StreamingZlib StreamingZlib.swift
[144/191] Emitting module ImageMetadata
[145/191] Compiling ImageMetadata ImageMetadata.swift
[146/193] Compiling iPhoneOptimized iPhoneOptimized.swift
[147/193] Emitting module iPhoneOptimized
[148/193] Compiling StreamingGzip StreamingGzip.swift
[149/193] Emitting module StreamingGzip
[150/193] Emitting module ImagesInMemory
[151/193] Compiling ImagesInMemory ImagesInMemory.swift
[151/193] Write Objects.LinkFileList
[154/195] Compiling Indexing Indexing.swift
[155/195] Emitting module Indexing
[156/195] Emitting module PNGCompressionBenchmarks
[157/195] Compiling PNGCompressionBenchmarks Main.swift
[158/195] Compiling PNGDecompressionBenchmarks Main.swift
[159/195] Emitting module PNGDecompressionBenchmarks
[159/195] Write Objects.LinkFileList
[162/195] Emitting module OnlineDecoding
[163/195] Compiling OnlineDecoding OnlineDecoding.swift
[163/197] Write Objects.LinkFileList
[166/199] Compiling BasicGzip BasicGzip.swift
[167/199] Emitting module BasicGzip
[168/199] Compiling BasicDecoding BasicDecoding.swift
[169/199] Emitting module BasicDecoding
[169/199] Write Objects.LinkFileList
[172/199] Emitting module BasicEncoding
[173/199] Compiling BasicEncoding BasicEncoding.swift
[173/199] Linking iPhoneOptimized
[174/199] Write Objects.LinkFileList
[174/199] Linking StreamingZlib
[176/199] Linking compression-benchmark
[177/199] Write Objects.LinkFileList
[179/199] Linking decompression-benchmark
[180/199] Write Objects.LinkFileList
[181/199] Linking StreamingGzip
[182/199] Applying compression-benchmark
[183/199] Applying decompression-benchmark
[185/199] Emitting module CustomColor
[186/199] Compiling CustomColor CustomColor.swift
[187/199] Compiling PNGInspection String (ext).swift
/Users/admin/builder/spi-builder-workspace/Sources/PNGInspection/String (ext).swift:4:9: warning: static property 'bold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 | {
3 | static
4 | var bold:Self = "\u{1B}[1m"
| |- warning: static property 'bold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'bold' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'bold' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | static
6 | var reset:Self = "\u{1B}[0m"
/Users/admin/builder/spi-builder-workspace/Sources/PNGInspection/String (ext).swift:6:9: warning: static property 'reset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | var bold:Self = "\u{1B}[1m"
5 | static
6 | var reset:Self = "\u{1B}[0m"
| |- warning: static property 'reset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reset' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reset' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | static
[188/199] Compiling PNGInspection PNG.Metadata (ext).swift
/Users/admin/builder/spi-builder-workspace/Sources/PNGInspection/PNG.Metadata (ext).swift:3:1: warning: extension declares a conformance of imported type 'Metadata' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'PNG' introduce this conformance in the future
1 | import PNG
2 |
3 | extension PNG.Metadata:CustomStringConvertible
| |- warning: extension declares a conformance of imported type 'Metadata' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'PNG' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | {
5 | public
[189/199] Compiling PNGInspection PNG.SuggestedPalette (ext).swift
/Users/admin/builder/spi-builder-workspace/Sources/PNGInspection/PNG.SuggestedPalette (ext).swift:3:1: warning: extension declares a conformance of imported type 'SuggestedPalette' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'PNG' introduce this conformance in the future
1 | import PNG
2 |
3 | extension PNG.SuggestedPalette:CustomStringConvertible
| |- warning: extension declares a conformance of imported type 'SuggestedPalette' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'PNG' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | {
5 | public
[190/199] Emitting module PNGInspection
/Users/admin/builder/spi-builder-workspace/Sources/PNGInspection/PNG.Metadata (ext).swift:3:1: warning: extension declares a conformance of imported type 'Metadata' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'PNG' introduce this conformance in the future
1 | import PNG
2 |
3 | extension PNG.Metadata:CustomStringConvertible
| |- warning: extension declares a conformance of imported type 'Metadata' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'PNG' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | {
5 | public
/Users/admin/builder/spi-builder-workspace/Sources/PNGInspection/PNG.SuggestedPalette (ext).swift:3:1: warning: extension declares a conformance of imported type 'SuggestedPalette' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'PNG' introduce this conformance in the future
1 | import PNG
2 |
3 | extension PNG.SuggestedPalette:CustomStringConvertible
| |- warning: extension declares a conformance of imported type 'SuggestedPalette' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'PNG' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | {
5 | public
/Users/admin/builder/spi-builder-workspace/Sources/PNGInspection/String (ext).swift:4:9: warning: static property 'bold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 | {
3 | static
4 | var bold:Self = "\u{1B}[1m"
| |- warning: static property 'bold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'bold' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'bold' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | static
6 | var reset:Self = "\u{1B}[0m"
/Users/admin/builder/spi-builder-workspace/Sources/PNGInspection/String (ext).swift:6:9: warning: static property 'reset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | var bold:Self = "\u{1B}[1m"
5 | static
6 | var reset:Self = "\u{1B}[0m"
| |- warning: static property 'reset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'reset' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'reset' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | static
[190/199] Write Objects.LinkFileList
[191/199] Linking OnlineDecoding
[192/199] Linking Indexing
[193/199] Linking ImagesInMemory
[194/199] Linking BasicGzip
[195/199] Linking BasicEncoding
[196/199] Linking ImageMetadata
[197/199] Linking BasicDecoding
[198/199] Linking CustomColor
Build complete! (8.44s)
Fetching https://github.com/tayloraswift/swift-hash
[1/868] Fetching swift-hash
Fetched https://github.com/tayloraswift/swift-hash from cache (0.72s)
Computing version for https://github.com/tayloraswift/swift-hash
Computed https://github.com/tayloraswift/swift-hash at 0.7.1 (1.23s)
Creating working copy for https://github.com/tayloraswift/swift-hash
Working copy of https://github.com/tayloraswift/swift-hash resolved at 0.7.1
Build complete.
{
"dependencies" : [
{
"identity" : "swift-hash",
"requirement" : {
"range" : [
{
"lower_bound" : "0.7.1",
"upper_bound" : "0.8.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/tayloraswift/swift-hash"
}
],
"manifest_display_name" : "swift-png",
"name" : "swift-png",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "LZ77",
"targets" : [
"LZ77"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "PNG",
"targets" : [
"PNG"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "compression-benchmark",
"targets" : [
"PNGCompressionBenchmarks"
],
"type" : {
"executable" : null
}
},
{
"name" : "decompression-benchmark",
"targets" : [
"PNGDecompressionBenchmarks"
],
"type" : {
"executable" : null
}
},
{
"name" : "StreamingZlib",
"targets" : [
"StreamingZlib"
],
"type" : {
"snippet" : null
}
},
{
"name" : "StreamingGzip",
"targets" : [
"StreamingGzip"
],
"type" : {
"snippet" : null
}
},
{
"name" : "BasicGzip",
"targets" : [
"BasicGzip"
],
"type" : {
"snippet" : null
}
},
{
"name" : "BasicDecoding",
"targets" : [
"BasicDecoding"
],
"type" : {
"snippet" : null
}
},
{
"name" : "CustomColor",
"targets" : [
"CustomColor"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ImageMetadata",
"targets" : [
"ImageMetadata"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ImagesInMemory",
"targets" : [
"ImagesInMemory"
],
"type" : {
"snippet" : null
}
},
{
"name" : "iPhoneOptimized",
"targets" : [
"iPhoneOptimized"
],
"type" : {
"snippet" : null
}
},
{
"name" : "OnlineDecoding",
"targets" : [
"OnlineDecoding"
],
"type" : {
"snippet" : null
}
},
{
"name" : "BasicEncoding",
"targets" : [
"BasicEncoding"
],
"type" : {
"snippet" : null
}
},
{
"name" : "Indexing",
"targets" : [
"Indexing"
],
"type" : {
"snippet" : null
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "PNGTests",
"module_type" : "SwiftTarget",
"name" : "PNGTests",
"path" : "Sources/PNGTests",
"sources" : [
"Filtering.swift",
"Premultiplication.swift"
],
"target_dependencies" : [
"PNG"
],
"type" : "test"
},
{
"c99name" : "PNGIntegrationTests",
"module_type" : "SwiftTarget",
"name" : "PNGIntegrationTests",
"path" : "Sources/PNGIntegrationTests",
"sources" : [
"Array (ext).swift",
"ArraySlice (ext).swift",
"ErrorHandling.swift",
"Roundtripping.swift"
],
"target_dependencies" : [
"PNG"
],
"type" : "test"
},
{
"c99name" : "PNGInspection",
"module_type" : "SwiftTarget",
"name" : "PNGInspection",
"path" : "Sources/PNGInspection",
"sources" : [
"PNG.Metadata (ext).swift",
"PNG.SuggestedPalette (ext).swift",
"String (ext).swift"
],
"target_dependencies" : [
"PNG"
],
"type" : "library"
},
{
"c99name" : "PNGDecompressionBenchmarks",
"module_type" : "SwiftTarget",
"name" : "PNGDecompressionBenchmarks",
"path" : "Benchmarks/Decompression/Swift",
"product_memberships" : [
"decompression-benchmark"
],
"sources" : [
"Main.swift"
],
"target_dependencies" : [
"PNG"
],
"type" : "executable"
},
{
"c99name" : "PNGCompressionTests",
"module_type" : "SwiftTarget",
"name" : "PNGCompressionTests",
"path" : "Sources/PNGCompressionTests",
"sources" : [
"Compression.swift"
],
"target_dependencies" : [
"PNG"
],
"type" : "test"
},
{
"c99name" : "PNGCompressionBenchmarks",
"module_type" : "SwiftTarget",
"name" : "PNGCompressionBenchmarks",
"path" : "Benchmarks/Compression/Swift",
"product_memberships" : [
"compression-benchmark"
],
"sources" : [
"Main.swift"
],
"target_dependencies" : [
"PNG"
],
"type" : "executable"
},
{
"c99name" : "PNG",
"module_type" : "SwiftTarget",
"name" : "PNG",
"path" : "Sources/PNG",
"product_memberships" : [
"PNG",
"compression-benchmark",
"decompression-benchmark",
"StreamingZlib",
"StreamingGzip",
"BasicGzip",
"BasicDecoding",
"CustomColor",
"ImageMetadata",
"ImagesInMemory",
"iPhoneOptimized",
"OnlineDecoding",
"BasicEncoding",
"Indexing"
],
"sources" : [
"Array (ext).swift",
"ArraySlice (ext).swift",
"ColorTargets/PNG.Color.swift",
"ColorTargets/PNG.RGBA.swift",
"ColorTargets/PNG.VA.swift",
"Decoding/PNG.Context.swift",
"Decoding/PNG.Decoder.swift",
"Decoding/PNG.DecodingError.swift",
"Decoding/PNG.Metadata.swift",
"Decoding/PNG.Standard.swift",
"Encoding/PNG.Encoder.Pass.swift",
"Encoding/PNG.Encoder.swift",
"Encoding/PNG.FormattingError.swift",
"Formats/PNG.Format.Pixel.swift",
"Formats/PNG.Format.swift",
"Formats/PNG.Layout.swift",
"General.swift",
"LZ77.DecompressionError (ext).swift",
"LZ77.DeflateHeaderError (ext).swift",
"Lexing/PNG.BytestreamDestination.swift",
"Lexing/PNG.BytestreamSource.swift",
"Lexing/PNG.Chunk.swift",
"Lexing/PNG.LexingError.swift",
"PNG.Error.swift",
"PNG.Image.swift",
"PNG.swift",
"Parsing/PNG.Background.Case.swift",
"Parsing/PNG.Background.swift",
"Parsing/PNG.Chromaticity.swift",
"Parsing/PNG.ColorProfile.swift",
"Parsing/PNG.ColorRendering.swift",
"Parsing/PNG.Gamma.swift",
"Parsing/PNG.Header.swift",
"Parsing/PNG.Histogram.swift",
"Parsing/PNG.Palette.swift",
"Parsing/PNG.ParsingError.swift",
"Parsing/PNG.Percentmille.swift",
"Parsing/PNG.PhysicalDimensions.swift",
"Parsing/PNG.SignificantBits.Case.swift",
"Parsing/PNG.SignificantBits.swift",
"Parsing/PNG.SuggestedPalette.Entries.swift",
"Parsing/PNG.SuggestedPalette.swift",
"Parsing/PNG.Text.swift",
"Parsing/PNG.TimeModified.swift",
"Parsing/PNG.Transparency.Case.swift",
"Parsing/PNG.Transparency.swift",
"System.swift",
"UnsafeMutableBufferPointer (ext).swift",
"__Entrypoint.swift"
],
"target_dependencies" : [
"LZ77"
],
"type" : "library"
},
{
"c99name" : "LZ77Tests",
"module_type" : "SwiftTarget",
"name" : "LZ77Tests",
"path" : "Sources/LZ77Tests",
"sources" : [
"Bitstreams.swift",
"Compression.swift",
"CompressionMicro.swift",
"HardwareAcceleration.swift"
],
"target_dependencies" : [
"LZ77"
],
"type" : "test"
},
{
"c99name" : "LZ77",
"module_type" : "SwiftTarget",
"name" : "LZ77",
"path" : "Sources/LZ77",
"product_dependencies" : [
"CRC"
],
"product_memberships" : [
"LZ77",
"PNG",
"compression-benchmark",
"decompression-benchmark",
"StreamingZlib",
"StreamingGzip",
"BasicGzip",
"BasicDecoding",
"CustomColor",
"ImageMetadata",
"ImagesInMemory",
"iPhoneOptimized",
"OnlineDecoding",
"BasicEncoding",
"Indexing"
],
"sources" : [
"Deflator/LZ77.Decades.swift",
"Deflator/LZ77.Deflator.swift",
"Deflator/LZ77.DeflatorBuffers.Stream.swift",
"Deflator/LZ77.DeflatorBuffers.swift",
"Deflator/LZ77.DeflatorDicing.Node.swift",
"Deflator/LZ77.DeflatorDicing.swift",
"Deflator/LZ77.DeflatorIn.swift",
"Deflator/LZ77.DeflatorMatches.Depths.swift",
"Deflator/LZ77.DeflatorMatches.swift",
"Deflator/LZ77.DeflatorOut.swift",
"Deflator/LZ77.DeflatorSearch.swift",
"Deflator/LZ77.DeflatorTables.swift",
"Deflator/LZ77.DeflatorTerm.Meta.swift",
"Deflator/LZ77.DeflatorTerm.swift",
"Deflator/LZ77.DeflatorWindow.Element.swift",
"Deflator/LZ77.DeflatorWindow.swift",
"F14/F14.District.Index.swift",
"F14/F14.District.swift",
"F14/F14.Hash.swift",
"F14/F14.HashTable.swift",
"F14/F14.swift",
"FixedWidthInteger (ext).swift",
"Gzip/Gzip.Deflator.swift",
"Gzip/Gzip.Format.Integral.swift",
"Gzip/Gzip.Format.swift",
"Gzip/Gzip.Inflator.swift",
"Gzip/Gzip.InflatorState.swift",
"Gzip/Gzip.StreamHeader.swift",
"Gzip/Gzip.StreamHeaderError.swift",
"Gzip/Gzip.swift",
"HuffmanCoding/LZ77.Codeword.swift",
"HuffmanCoding/LZ77.Distance.swift",
"HuffmanCoding/LZ77.Heap.swift",
"HuffmanCoding/LZ77.HuffmanPattern.swift",
"HuffmanCoding/LZ77.HuffmanTree.swift",
"HuffmanCoding/LZ77.Metaword.swift",
"HuffmanCoding/LZ77.RunLiteral.swift",
"Inflator/LZ77.BlockMetadata.swift",
"Inflator/LZ77.BlockShape.swift",
"Inflator/LZ77.BlockState.swift",
"Inflator/LZ77.BlockType.swift",
"Inflator/LZ77.DecompressionError.swift",
"Inflator/LZ77.Inflator.swift",
"Inflator/LZ77.InflatorBuffers.Stream.swift",
"Inflator/LZ77.InflatorBuffers.swift",
"Inflator/LZ77.InflatorIn.swift",
"Inflator/LZ77.InflatorOut.swift",
"Inflator/LZ77.InflatorState.swift",
"Inflator/LZ77.InflatorTables.swift",
"Inflator/LZ77.StreamHeader.swift",
"Inflator/LZ77.StreamHeaderError.swift",
"LZ77.Composites.swift",
"LZ77.Reversed.swift",
"LZ77.swift",
"SIMD16 (ext).swift",
"Wrappers/LZ77.Format.swift",
"Wrappers/LZ77.FormatType.swift",
"Wrappers/LZ77.MRC32.swift",
"Wrappers/LZ77.StreamIntegral.swift"
],
"type" : "library"
},
{
"c99name" : "StreamingZlib",
"module_type" : "SwiftTarget",
"name" : "StreamingZlib",
"path" : "Snippets/LZ77",
"product_memberships" : [
"StreamingZlib"
],
"sources" : [
"StreamingZlib.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "StreamingGzip",
"module_type" : "SwiftTarget",
"name" : "StreamingGzip",
"path" : "Snippets/LZ77",
"product_memberships" : [
"StreamingGzip"
],
"sources" : [
"StreamingGzip.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "BasicGzip",
"module_type" : "SwiftTarget",
"name" : "BasicGzip",
"path" : "Snippets/LZ77",
"product_memberships" : [
"BasicGzip"
],
"sources" : [
"BasicGzip.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "BasicDecoding",
"module_type" : "SwiftTarget",
"name" : "BasicDecoding",
"path" : "Snippets/PNG",
"product_memberships" : [
"BasicDecoding"
],
"sources" : [
"BasicDecoding.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "CustomColor",
"module_type" : "SwiftTarget",
"name" : "CustomColor",
"path" : "Snippets/PNG",
"product_memberships" : [
"CustomColor"
],
"sources" : [
"CustomColor.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "ImageMetadata",
"module_type" : "SwiftTarget",
"name" : "ImageMetadata",
"path" : "Snippets/PNG",
"product_memberships" : [
"ImageMetadata"
],
"sources" : [
"ImageMetadata.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "ImagesInMemory",
"module_type" : "SwiftTarget",
"name" : "ImagesInMemory",
"path" : "Snippets/PNG",
"product_memberships" : [
"ImagesInMemory"
],
"sources" : [
"ImagesInMemory.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "iPhoneOptimized",
"module_type" : "SwiftTarget",
"name" : "iPhoneOptimized",
"path" : "Snippets/PNG",
"product_memberships" : [
"iPhoneOptimized"
],
"sources" : [
"iPhoneOptimized.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "OnlineDecoding",
"module_type" : "SwiftTarget",
"name" : "OnlineDecoding",
"path" : "Snippets/PNG",
"product_memberships" : [
"OnlineDecoding"
],
"sources" : [
"OnlineDecoding.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "BasicEncoding",
"module_type" : "SwiftTarget",
"name" : "BasicEncoding",
"path" : "Snippets/PNG",
"product_memberships" : [
"BasicEncoding"
],
"sources" : [
"BasicEncoding.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
},
{
"c99name" : "Indexing",
"module_type" : "SwiftTarget",
"name" : "Indexing",
"path" : "Snippets/PNG",
"product_memberships" : [
"Indexing"
],
"sources" : [
"Indexing.swift"
],
"target_dependencies" : [
"PNG",
"LZ77"
],
"type" : "snippet"
}
],
"tools_version" : "5.8"
}
Done.