Build Information
Successful build of swift-jpeg, reference 2.1.0 (c7aa48), with Swift 6.3 for macOS (SPM) on 16 Apr 2026 10:19:33 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tayloraswift/swift-jpeg.git
Reference: 2.1.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tayloraswift/swift-jpeg
* tag 2.1.0 -> FETCH_HEAD
HEAD is now at c7aa484 Merge pull request #34 from tayloraswift/format-code
Cloned https://github.com/tayloraswift/swift-jpeg.git
Revision (git rev-parse @):
c7aa48486cd8920120dd69cda5de62aeb93e1708
SUCCESS checkout https://github.com/tayloraswift/swift-jpeg.git at 2.1.0
Fetching https://github.com/ordo-one/dollup
[1/23] Fetching dollup
Fetched https://github.com/ordo-one/dollup from cache (0.57s)
Computing version for https://github.com/ordo-one/dollup
Computed https://github.com/ordo-one/dollup at 1.0.4 (1.15s)
Creating working copy for https://github.com/ordo-one/dollup
Working copy of https://github.com/ordo-one/dollup resolved at 1.0.4
Downloading binary artifact https://download.rarestype.com/dollup/1.0.4/macOS-arm64/dollup.artifactbundle.zip
[8196/3964729] Downloading https://download.rarestype.com/dollup/1.0.4/macOS-arm64/dollup.artifactbundle.zip
Downloaded https://download.rarestype.com/dollup/1.0.4/macOS-arm64/dollup.artifactbundle.zip (0.64s)
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "swift-jpeg",
"name": "swift-jpeg",
"url": "https://github.com/tayloraswift/swift-jpeg.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-jpeg",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/tayloraswift/swift-jpeg.git
[1/4049] Fetching swift-jpeg
Fetched https://github.com/tayloraswift/swift-jpeg.git from cache (3.00s)
Creating working copy for https://github.com/tayloraswift/swift-jpeg.git
Working copy of https://github.com/tayloraswift/swift-jpeg.git resolved at 2.1.0 (c7aa484)
warning: '.resolve-product-dependencies': dependency 'swift-jpeg' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/tayloraswift/swift-jpeg.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin DollupPlugin
Building for debugging...
[1/57] Write sources
[7/57] Write JPEGUnitTests-entitlement.plist
[11/57] Write JPEGIntegrationTests-entitlement.plist
[11/57] Write JPEGFuzzer-entitlement.plist
[11/57] Write JPEGRegressionTests-entitlement.plist
[14/57] Write JPEGComparator-entitlement.plist
[14/57] Write sources
[23/57] Write swift-version--6988338F2F200930.txt
[25/68] Emitting module JPEGInspection
[26/68] Compiling JPEGInspection String (ext).swift
[27/68] Compiling JPEGInspection Highlight.swift
[28/68] Compiling JPEG metadata.swift
[29/68] Compiling JPEG jpeg.swift
[30/68] Compiling JPEG encode.swift
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/encode.swift:445:49: warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
443 | // there are only a few ways validation can fail, and all of them
444 | // are programmer errors (zero width, broken `Format` implementation)
445 | preconditionFailure((error as? JPEG.Error)?.message ?? "\(error)")
| `- warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
446 | }
447 | }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[31/68] Compiling JPEG error.swift
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:199:14: warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'
197 | /// - Parameter process:
198 | /// The coding process specified by the frame header.
199 | case invalidFrameQuantizationSelector(JPEG.Table.Quantization.Selector, Process)
| `- warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'
200 | /// A component in a frame header had an invalid sampling factor.
201 | ///
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:230:14: warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'
228 | /// - Parameter process:
229 | /// The coding process specified by the frame header.
230 | case invalidScanHuffmanDCSelector(JPEG.Table.HuffmanDC.Selector, Process)
| `- warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'
231 | /// A component in a frame header segment used an AC huffman table
232 | /// selector which is well-formed but unavailable given the frame header coding process.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:239:14: warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'
237 | /// - Parameter process:
238 | /// The coding process specified by the frame header.
239 | case invalidScanHuffmanACSelector(JPEG.Table.HuffmanAC.Selector, Process)
| `- warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'
240 | /// A scan header had more that the maximum allowed number of components
241 | /// given the image coding process.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:611:14: warning: associated value 'undefinedScanHuffmanDCReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'
609 | /// - Parameter _:
610 | /// The table selector.
611 | case undefinedScanHuffmanDCReference(Table.HuffmanDC.Selector)
| `- warning: associated value 'undefinedScanHuffmanDCReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'
612 | /// An AC huffman table selector in a scan referenced a table
613 | /// slot with no bound table.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:617:14: warning: associated value 'undefinedScanHuffmanACReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'
615 | /// - Parameter _:
616 | /// The table selector.
617 | case undefinedScanHuffmanACReference(Table.HuffmanAC.Selector)
| `- warning: associated value 'undefinedScanHuffmanACReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'
618 | /// A quantization table selector in the first scan for a particular
619 | /// component referenced a table slot with no bound table.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:623:14: warning: associated value 'undefinedScanQuantizationReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'
621 | /// - Parameter _:
622 | /// The table selector.
623 | case undefinedScanQuantizationReference(Table.Quantization.Selector)
| `- warning: associated value 'undefinedScanQuantizationReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'
624 | /// A quantization table had the wrong precision mode for the image
625 | /// color format.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
[32/68] Compiling JPEG debug.swift
[33/68] Emitting module JPEG
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:199:14: warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'
197 | /// - Parameter process:
198 | /// The coding process specified by the frame header.
199 | case invalidFrameQuantizationSelector(JPEG.Table.Quantization.Selector, Process)
| `- warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'
200 | /// A component in a frame header had an invalid sampling factor.
201 | ///
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:230:14: warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'
228 | /// - Parameter process:
229 | /// The coding process specified by the frame header.
230 | case invalidScanHuffmanDCSelector(JPEG.Table.HuffmanDC.Selector, Process)
| `- warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'
231 | /// A component in a frame header segment used an AC huffman table
232 | /// selector which is well-formed but unavailable given the frame header coding process.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:239:14: warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'
237 | /// - Parameter process:
238 | /// The coding process specified by the frame header.
239 | case invalidScanHuffmanACSelector(JPEG.Table.HuffmanAC.Selector, Process)
| `- warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' contains non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'
240 | /// A scan header had more that the maximum allowed number of components
241 | /// given the image coding process.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:611:14: warning: associated value 'undefinedScanHuffmanDCReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'
609 | /// - Parameter _:
610 | /// The table selector.
611 | case undefinedScanHuffmanDCReference(Table.HuffmanDC.Selector)
| `- warning: associated value 'undefinedScanHuffmanDCReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'
612 | /// An AC huffman table selector in a scan referenced a table
613 | /// slot with no bound table.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:617:14: warning: associated value 'undefinedScanHuffmanACReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'
615 | /// - Parameter _:
616 | /// The table selector.
617 | case undefinedScanHuffmanACReference(Table.HuffmanAC.Selector)
| `- warning: associated value 'undefinedScanHuffmanACReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'
618 | /// A quantization table selector in the first scan for a particular
619 | /// component referenced a table slot with no bound table.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/JPEG/error.swift:623:14: warning: associated value 'undefinedScanQuantizationReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'
621 | /// - Parameter _:
622 | /// The table selector.
623 | case undefinedScanQuantizationReference(Table.Quantization.Selector)
| `- warning: associated value 'undefinedScanQuantizationReference' of 'Sendable'-conforming enum 'DecodingError' has non-Sendable type 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'
624 | /// A quantization table had the wrong precision mode for the image
625 | /// color format.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
| `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
[34/68] Compiling JPEG common.swift
[35/68] Compiling JPEG decode.swift
[36/70] Emitting module JPEGSystem
[37/70] Compiling JPEGSystem os.swift
/Users/admin/builder/spi-builder-workspace/Sources/JPEGSystem/os.swift:232:56: warning: capture of non-Sendable type 'Format.Type' in an isolated closure [#SendableMetatypes]
230 | /// the given file path.
231 | public static func decompress(path: String) throws -> Self? {
232 | return try System.File.Source.open(path: path, Self.decompress(stream:))
| `- warning: capture of non-Sendable type 'Format.Type' in an isolated closure [#SendableMetatypes]
233 | }
234 | /// Compresses a spectral image to the given file path.
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[38/96] Emitting module JPEGComparator
[39/96] Compiling EncodeBasic EncodeBasic.swift
[40/96] Emitting module EncodeBasic
[41/96] Compiling InMemory InMemory.swift
[42/96] Emitting module InMemory
[43/96] Compiling EncodeAdvanced EncodeAdvanced.swift
[44/96] Emitting module EncodeAdvanced
[45/96] Compiling Recompress Recompress.swift
[46/96] Emitting module Recompress
[47/100] Compiling Rotate Rotate.swift
[48/100] Emitting module Rotate
[49/100] Emitting module JPEGFuzzer
[50/100] Compiling JPEGFuzzer main.swift
[50/102] Write Objects.LinkFileList
[56/104] Compiling JPEGComparator main.swift
[57/104] Compiling DecodeBasic DecodeBasic.swift
[58/104] Emitting module DecodeBasic
[58/104] Linking Rotate
[59/104] Linking Recompress
[60/104] Write Objects.LinkFileList
[63/104] Compiling DecodeAdvanced DecodeAdvanced.swift
[64/104] Emitting module DecodeAdvanced
[64/104] Linking InMemory
[65/104] Write Objects.LinkFileList
[67/104] Linking EncodeBasic
[69/104] Compiling DecodeOnline DecodeOnline.swift
[70/104] Emitting module DecodeOnline
[71/104] Compiling CustomColor CustomColor.swift
[72/104] Emitting module CustomColor
[72/104] Write Objects.LinkFileList
[74/104] Linking EncodeAdvanced
[75/104] Linking JPEGFuzzer
[76/104] Applying JPEGFuzzer
[77/104] Linking JPEGComparator
[78/104] Applying JPEGComparator
[79/104] Linking DecodeBasic
[80/104] Linking DecodeAdvanced
[81/104] Linking CustomColor
[82/104] Linking DecodeOnline
[84/104] Compiling JPEGRegressionTests result.swift
[85/104] Compiling JPEGRegressionTests tests.swift
/Users/admin/builder/spi-builder-workspace/tests/regression/tests.swift:132:39: warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
130 | if let error: Failure = error as? Failure {
131 | return .failure(error)
132 | } else if let error: JPEG.Error = error as? JPEG.Error {
| `- warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
133 | return .failure(.init(message: error.message))
134 | } else {
/Users/admin/builder/spi-builder-workspace/tests/regression/tests.swift:132:62: warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
130 | if let error: Failure = error as? Failure {
131 | return .failure(error)
132 | } else if let error: JPEG.Error = error as? JPEG.Error {
| `- warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
133 | return .failure(.init(message: error.message))
134 | } else {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[86/104] Compiling JPEGIntegrationTests result.swift
[87/104] Compiling JPEGIntegrationTests tests.swift
/Users/admin/builder/spi-builder-workspace/tests/integration/tests.swift:208:32: warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
206 | Self.print(image: rgb, size: image.size)
207 | } catch {
208 | if let error: JPEG.Error = error as? JPEG.Error {
| `- warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
209 | return .failure(.init(message: error.message))
210 | } else {
/Users/admin/builder/spi-builder-workspace/tests/integration/tests.swift:208:55: warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
206 | Self.print(image: rgb, size: image.size)
207 | } catch {
208 | if let error: JPEG.Error = error as? JPEG.Error {
| `- warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
209 | return .failure(.init(message: error.message))
210 | } else {
/Users/admin/builder/spi-builder-workspace/tests/integration/tests.swift:378:32: warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
376 | Self.print(image: rectangular.unpack(as: JPEG.RGB.self), size: size)
377 | } catch {
378 | if let error: JPEG.Error = error as? JPEG.Error {
| `- warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
379 | return .failure(.init(message: error.message))
380 | } else {
/Users/admin/builder/spi-builder-workspace/tests/integration/tests.swift:378:55: warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
376 | Self.print(image: rectangular.unpack(as: JPEG.RGB.self), size: size)
377 | } catch {
378 | if let error: JPEG.Error = error as? JPEG.Error {
| `- warning: use of protocol 'JPEG.Error' as a type must be written 'any JPEG.Error'; this will be an error in a future Swift language mode [#ExistentialAny]
379 | return .failure(.init(message: error.message))
380 | } else {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[88/104] Emitting module JPEGIntegrationTests
[89/104] Compiling JPEGIntegrationTests main.swift
[90/104] Emitting module JPEGRegressionTests
[91/104] Compiling JPEGRegressionTests main.swift
[92/104] Emitting module JPEGUnitTests
[93/104] Compiling JPEGUnitTests main.swift
[93/104] Write Objects.LinkFileList
[95/104] Linking JPEGIntegrationTests
[96/104] Linking JPEGRegressionTests
[97/104] Applying JPEGIntegrationTests
[98/104] Applying JPEGRegressionTests
[100/104] Compiling JPEGUnitTests result.swift
[101/104] Compiling JPEGUnitTests tests.swift
[101/104] Write Objects.LinkFileList
[102/104] Linking JPEGUnitTests
[103/104] Applying JPEGUnitTests
Build complete! (14.77s)
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/tests/fuzz/data': File not found.
Build complete.
{
"dependencies" : [
{
"identity" : "dollup",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ordo-one/dollup"
}
],
"manifest_display_name" : "swift-jpeg",
"name" : "swift-jpeg",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "JPEG",
"targets" : [
"JPEG"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "JPEGSystem",
"targets" : [
"JPEGSystem"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "JPEGUnitTests",
"targets" : [
"JPEGUnitTests"
],
"type" : {
"executable" : null
}
},
{
"name" : "JPEGRegressionTests",
"targets" : [
"JPEGRegressionTests"
],
"type" : {
"executable" : null
}
},
{
"name" : "JPEGIntegrationTests",
"targets" : [
"JPEGIntegrationTests"
],
"type" : {
"executable" : null
}
},
{
"name" : "JPEGFuzzer",
"targets" : [
"JPEGFuzzer"
],
"type" : {
"executable" : null
}
},
{
"name" : "JPEGComparator",
"targets" : [
"JPEGComparator"
],
"type" : {
"executable" : null
}
},
{
"name" : "DecodeBasic",
"targets" : [
"DecodeBasic"
],
"type" : {
"snippet" : null
}
},
{
"name" : "CustomColor",
"targets" : [
"CustomColor"
],
"type" : {
"snippet" : null
}
},
{
"name" : "EncodeBasic",
"targets" : [
"EncodeBasic"
],
"type" : {
"snippet" : null
}
},
{
"name" : "DecodeAdvanced",
"targets" : [
"DecodeAdvanced"
],
"type" : {
"snippet" : null
}
},
{
"name" : "Rotate",
"targets" : [
"Rotate"
],
"type" : {
"snippet" : null
}
},
{
"name" : "EncodeAdvanced",
"targets" : [
"EncodeAdvanced"
],
"type" : {
"snippet" : null
}
},
{
"name" : "DecodeOnline",
"targets" : [
"DecodeOnline"
],
"type" : {
"snippet" : null
}
},
{
"name" : "Recompress",
"targets" : [
"Recompress"
],
"type" : {
"snippet" : null
}
},
{
"name" : "InMemory",
"targets" : [
"InMemory"
],
"type" : {
"snippet" : null
}
}
],
"targets" : [
{
"c99name" : "JPEGUnitTests",
"module_type" : "SwiftTarget",
"name" : "JPEGUnitTests",
"path" : "tests/unit",
"product_memberships" : [
"JPEGUnitTests"
],
"sources" : [
"main.swift",
"result.swift",
"tests.swift"
],
"target_dependencies" : [
"JPEG",
"JPEGInspection",
"JPEGSystem"
],
"type" : "executable"
},
{
"c99name" : "JPEGSystem",
"module_type" : "SwiftTarget",
"name" : "JPEGSystem",
"path" : "Sources/JPEGSystem",
"product_memberships" : [
"JPEGSystem",
"JPEGUnitTests",
"JPEGRegressionTests",
"JPEGIntegrationTests",
"JPEGFuzzer",
"JPEGComparator",
"DecodeBasic",
"CustomColor",
"EncodeBasic",
"DecodeAdvanced",
"Rotate",
"EncodeAdvanced",
"DecodeOnline",
"Recompress",
"InMemory"
],
"sources" : [
"os.swift"
],
"target_dependencies" : [
"JPEG"
],
"type" : "library"
},
{
"c99name" : "JPEGRegressionTests",
"module_type" : "SwiftTarget",
"name" : "JPEGRegressionTests",
"path" : "tests/regression",
"product_memberships" : [
"JPEGRegressionTests"
],
"sources" : [
"main.swift",
"result.swift",
"tests.swift"
],
"target_dependencies" : [
"JPEG",
"JPEGInspection",
"JPEGSystem"
],
"type" : "executable"
},
{
"c99name" : "JPEGIntegrationTests",
"module_type" : "SwiftTarget",
"name" : "JPEGIntegrationTests",
"path" : "tests/integration",
"product_memberships" : [
"JPEGIntegrationTests"
],
"sources" : [
"main.swift",
"result.swift",
"tests.swift"
],
"target_dependencies" : [
"JPEG",
"JPEGInspection",
"JPEGSystem"
],
"type" : "executable"
},
{
"c99name" : "JPEGInspection",
"module_type" : "SwiftTarget",
"name" : "JPEGInspection",
"path" : "Sources/JPEGInspection",
"product_memberships" : [
"JPEGUnitTests",
"JPEGRegressionTests",
"JPEGIntegrationTests",
"JPEGFuzzer",
"JPEGComparator"
],
"sources" : [
"Highlight.swift",
"String (ext).swift"
],
"type" : "library"
},
{
"c99name" : "JPEGFuzzer",
"module_type" : "SwiftTarget",
"name" : "JPEGFuzzer",
"path" : "tests/fuzz",
"product_memberships" : [
"JPEGFuzzer"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"JPEG",
"JPEGInspection",
"JPEGSystem"
],
"type" : "executable"
},
{
"c99name" : "JPEGComparator",
"module_type" : "SwiftTarget",
"name" : "JPEGComparator",
"path" : "tests/compare",
"product_memberships" : [
"JPEGComparator"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"JPEG",
"JPEGInspection",
"JPEGSystem"
],
"type" : "executable"
},
{
"c99name" : "JPEG",
"module_type" : "SwiftTarget",
"name" : "JPEG",
"path" : "Sources/JPEG",
"product_memberships" : [
"JPEG",
"JPEGSystem",
"JPEGUnitTests",
"JPEGRegressionTests",
"JPEGIntegrationTests",
"JPEGFuzzer",
"JPEGComparator",
"DecodeBasic",
"CustomColor",
"EncodeBasic",
"DecodeAdvanced",
"Rotate",
"EncodeAdvanced",
"DecodeOnline",
"Recompress",
"InMemory"
],
"sources" : [
"common.swift",
"debug.swift",
"decode.swift",
"encode.swift",
"error.swift",
"jpeg.swift",
"metadata.swift"
],
"type" : "library"
},
{
"c99name" : "DecodeBasic",
"module_type" : "SwiftTarget",
"name" : "DecodeBasic",
"path" : "Snippets",
"product_memberships" : [
"DecodeBasic"
],
"sources" : [
"DecodeBasic.swift"
],
"target_dependencies" : [
"JPEGSystem",
"JPEG"
],
"type" : "snippet"
},
{
"c99name" : "CustomColor",
"module_type" : "SwiftTarget",
"name" : "CustomColor",
"path" : "Snippets",
"product_memberships" : [
"CustomColor"
],
"sources" : [
"CustomColor.swift"
],
"target_dependencies" : [
"JPEGSystem",
"JPEG"
],
"type" : "snippet"
},
{
"c99name" : "EncodeBasic",
"module_type" : "SwiftTarget",
"name" : "EncodeBasic",
"path" : "Snippets",
"product_memberships" : [
"EncodeBasic"
],
"sources" : [
"EncodeBasic.swift"
],
"target_dependencies" : [
"JPEGSystem",
"JPEG"
],
"type" : "snippet"
},
{
"c99name" : "DecodeAdvanced",
"module_type" : "SwiftTarget",
"name" : "DecodeAdvanced",
"path" : "Snippets",
"product_memberships" : [
"DecodeAdvanced"
],
"sources" : [
"DecodeAdvanced.swift"
],
"target_dependencies" : [
"JPEGSystem",
"JPEG"
],
"type" : "snippet"
},
{
"c99name" : "Rotate",
"module_type" : "SwiftTarget",
"name" : "Rotate",
"path" : "Snippets",
"product_memberships" : [
"Rotate"
],
"sources" : [
"Rotate.swift"
],
"target_dependencies" : [
"JPEGSystem",
"JPEG"
],
"type" : "snippet"
},
{
"c99name" : "EncodeAdvanced",
"module_type" : "SwiftTarget",
"name" : "EncodeAdvanced",
"path" : "Snippets",
"product_memberships" : [
"EncodeAdvanced"
],
"sources" : [
"EncodeAdvanced.swift"
],
"target_dependencies" : [
"JPEGSystem",
"JPEG"
],
"type" : "snippet"
},
{
"c99name" : "DecodeOnline",
"module_type" : "SwiftTarget",
"name" : "DecodeOnline",
"path" : "Snippets",
"product_memberships" : [
"DecodeOnline"
],
"sources" : [
"DecodeOnline.swift"
],
"target_dependencies" : [
"JPEGSystem",
"JPEG"
],
"type" : "snippet"
},
{
"c99name" : "Recompress",
"module_type" : "SwiftTarget",
"name" : "Recompress",
"path" : "Snippets",
"product_memberships" : [
"Recompress"
],
"sources" : [
"Recompress.swift"
],
"target_dependencies" : [
"JPEGSystem",
"JPEG"
],
"type" : "snippet"
},
{
"c99name" : "InMemory",
"module_type" : "SwiftTarget",
"name" : "InMemory",
"path" : "Snippets",
"product_memberships" : [
"InMemory"
],
"sources" : [
"InMemory.swift"
],
"target_dependencies" : [
"JPEGSystem",
"JPEG"
],
"type" : "snippet"
}
],
"tools_version" : "6.0"
}
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/tests/fuzz/data': File not found.
Done.