The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of DataKit, reference 0.1.1 (37d845), with Swift 6.0 for Linux on 30 Nov 2024 17:59:45 UTC.

Swift 6 data race errors: 5

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/QuickBirdEng/DataKit.git
Reference: 0.1.1
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/QuickBirdEng/DataKit
 * tag               0.1.1      -> FETCH_HEAD
HEAD is now at 37d845d Merge pull request #2 from Beam-Studio/main
Cloned https://github.com/QuickBirdEng/DataKit.git
Revision (git rev-parse @):
37d845d584c3d63917035c8e7597fc49bc6d15ff
SUCCESS checkout https://github.com/QuickBirdEng/DataKit.git at 0.1.1
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/QuickBirdEng/DataKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/QuickBirdEng/crc-swift.git
[1/115] Fetching crc-swift
Fetched https://github.com/QuickBirdEng/crc-swift.git from cache (0.20s)
Computing version for https://github.com/QuickBirdEng/crc-swift.git
Computed https://github.com/QuickBirdEng/crc-swift.git at 0.1.1 (0.84s)
Creating working copy for https://github.com/QuickBirdEng/crc-swift.git
Working copy of https://github.com/QuickBirdEng/crc-swift.git resolved at 0.1.1
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/12] Compiling CRC CRC64.swift
[5/13] Compiling CRC CRC32.swift
[6/13] Compiling CRC CRC8.swift
[7/13] Compiling CRC CRCCalculator.swift
[8/13] Compiling CRC Checksum.swift
[9/13] Compiling CRC CRC16.swift
[10/13] Emitting module CRC
[11/13] Compiling CRC CRC+Verify.swift
[12/13] Compiling CRC CRC.swift
[13/13] Compiling CRC Hex.swift
[15/58] Emitting module DataKit
/host/spi-builder-workspace/Sources/DataKit/Error.swift:11:16: warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 9 |
10 | public struct ConversionError: Error {
11 |     public let source: Any
   |                `- warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
12 |     public let targetType: Any.Type
13 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:18:16: warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
16 |
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
   |                `- warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |     public let actualValue: Any
20 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:19:16: warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
19 |     public let actualValue: Any
   |                `- warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 | }
21 |
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:15:20: warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
13 |
14 |     public struct ValueDoesNotExistError: Error {
15 |         public let keyPath: PartialKeyPath<Root>
   |                    `- warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
16 |     }
17 |
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:19:20: warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |
18 |     public struct ValueTypeMismatchError: Error {
19 |         public let value: Any
   |                    `- warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |         public let expectedType: Any.Type
21 |     }
[16/64] Compiling DataKit Environment.swift
[17/64] Compiling DataKit EnvironmentProperty.swift
[18/64] Compiling DataKit KeyPath.swift
[19/64] Compiling DataKit OnRead.swift
[20/64] Compiling DataKit OnWrite.swift
[21/64] Compiling DataKit Property+Conversion.swift
[22/64] Compiling DataKit Property+Custom.swift
[23/64] Compiling DataKit Property.swift
[24/64] Compiling DataKit Scope.swift
[25/64] Compiling DataKit Using.swift
[26/64] Compiling DataKit Format.swift
[27/64] Compiling DataKit ReadWritable.swift
[28/64] Compiling DataKit DataBuilder.swift
[29/64] Compiling DataKit FormatBuilder+Read.swift
[30/64] Compiling DataKit FormatBuilder+ReadWrite.swift
[31/64] Compiling DataKit FormatBuilder+Write.swift
[32/64] Compiling DataKit FormatBuilder.swift
[33/64] Compiling DataKit Conversion+Cast.swift
[34/64] Compiling DataKit Conversion+Clamped.swift
[35/64] Compiling DataKit Conversion+Reversible.swift
[36/64] Compiling DataKit Conversion+VariableCount.swift
[37/64] Compiling DataKit Conversion.swift
[38/64] Compiling DataKit Environment+Endianness.swift
[39/64] Compiling DataKit Environment+Suffix.swift
[40/64] Compiling DataKit EnvironmentValues.swift
[41/64] Compiling DataKit ReadWritableProperty.swift
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:15:20: warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
13 |
14 |     public struct ValueDoesNotExistError: Error {
15 |         public let keyPath: PartialKeyPath<Root>
   |                    `- warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
16 |     }
17 |
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:19:20: warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |
18 |     public struct ValueTypeMismatchError: Error {
19 |         public let value: Any
   |                    `- warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |         public let expectedType: Any.Type
21 |     }
[42/64] Compiling DataKit ReadContainer.swift
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:15:20: warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
13 |
14 |     public struct ValueDoesNotExistError: Error {
15 |         public let keyPath: PartialKeyPath<Root>
   |                    `- warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
16 |     }
17 |
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:19:20: warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |
18 |     public struct ValueTypeMismatchError: Error {
19 |         public let value: Any
   |                    `- warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |         public let expectedType: Any.Type
21 |     }
[43/64] Compiling DataKit ReadContext.swift
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:15:20: warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
13 |
14 |     public struct ValueDoesNotExistError: Error {
15 |         public let keyPath: PartialKeyPath<Root>
   |                    `- warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
16 |     }
17 |
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:19:20: warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |
18 |     public struct ValueTypeMismatchError: Error {
19 |         public let value: Any
   |                    `- warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |         public let expectedType: Any.Type
21 |     }
[44/64] Compiling DataKit Readable.swift
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:15:20: warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
13 |
14 |     public struct ValueDoesNotExistError: Error {
15 |         public let keyPath: PartialKeyPath<Root>
   |                    `- warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
16 |     }
17 |
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:19:20: warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |
18 |     public struct ValueTypeMismatchError: Error {
19 |         public let value: Any
   |                    `- warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |         public let expectedType: Any.Type
21 |     }
[45/64] Compiling DataKit ReadableProperty.swift
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:15:20: warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
13 |
14 |     public struct ValueDoesNotExistError: Error {
15 |         public let keyPath: PartialKeyPath<Root>
   |                    `- warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
16 |     }
17 |
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:19:20: warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |
18 |     public struct ValueTypeMismatchError: Error {
19 |         public let value: Any
   |                    `- warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |         public let expectedType: Any.Type
21 |     }
[46/64] Compiling DataKit ReadWritable+FloatingPoint.swift
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:15:20: warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
13 |
14 |     public struct ValueDoesNotExistError: Error {
15 |         public let keyPath: PartialKeyPath<Root>
   |                    `- warning: stored property 'keyPath' of 'Sendable'-conforming struct 'ValueDoesNotExistError' has non-sendable type 'PartialKeyPath<Root>'; this is an error in the Swift 6 language mode
16 |     }
17 |
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/DataKit/Readable/ReadContext.swift:19:20: warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 |
18 |     public struct ValueTypeMismatchError: Error {
19 |         public let value: Any
   |                    `- warning: stored property 'value' of 'Sendable'-conforming struct 'ValueTypeMismatchError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 |         public let expectedType: Any.Type
21 |     }
[47/64] Compiling DataKit SkipChecksumVerification.swift
/host/spi-builder-workspace/Sources/DataKit/Error.swift:11:16: warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 9 |
10 | public struct ConversionError: Error {
11 |     public let source: Any
   |                `- warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
12 |     public let targetType: Any.Type
13 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:18:16: warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
16 |
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
   |                `- warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |     public let actualValue: Any
20 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:19:16: warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
19 |     public let actualValue: Any
   |                `- warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 | }
21 |
[48/64] Compiling DataKit Error.swift
/host/spi-builder-workspace/Sources/DataKit/Error.swift:11:16: warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 9 |
10 | public struct ConversionError: Error {
11 |     public let source: Any
   |                `- warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
12 |     public let targetType: Any.Type
13 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:18:16: warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
16 |
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
   |                `- warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |     public let actualValue: Any
20 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:19:16: warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
19 |     public let actualValue: Any
   |                `- warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 | }
21 |
[49/64] Compiling DataKit Exports.swift
/host/spi-builder-workspace/Sources/DataKit/Error.swift:11:16: warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 9 |
10 | public struct ConversionError: Error {
11 |     public let source: Any
   |                `- warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
12 |     public let targetType: Any.Type
13 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:18:16: warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
16 |
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
   |                `- warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |     public let actualValue: Any
20 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:19:16: warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
19 |     public let actualValue: Any
   |                `- warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 | }
21 |
[50/64] Compiling DataKit Checksum.swift
/host/spi-builder-workspace/Sources/DataKit/Error.swift:11:16: warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 9 |
10 | public struct ConversionError: Error {
11 |     public let source: Any
   |                `- warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
12 |     public let targetType: Any.Type
13 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:18:16: warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
16 |
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
   |                `- warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |     public let actualValue: Any
20 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:19:16: warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
19 |     public let actualValue: Any
   |                `- warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 | }
21 |
[51/64] Compiling DataKit Convert.swift
/host/spi-builder-workspace/Sources/DataKit/Error.swift:11:16: warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 9 |
10 | public struct ConversionError: Error {
11 |     public let source: Any
   |                `- warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
12 |     public let targetType: Any.Type
13 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:18:16: warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
16 |
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
   |                `- warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |     public let actualValue: Any
20 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:19:16: warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
19 |     public let actualValue: Any
   |                `- warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 | }
21 |
[52/64] Compiling DataKit Custom.swift
/host/spi-builder-workspace/Sources/DataKit/Error.swift:11:16: warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 9 |
10 | public struct ConversionError: Error {
11 |     public let source: Any
   |                `- warning: stored property 'source' of 'Sendable'-conforming struct 'ConversionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
12 |     public let targetType: Any.Type
13 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:18:16: warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
16 |
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
   |                `- warning: stored property 'expectedValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |     public let actualValue: Any
20 | }
/host/spi-builder-workspace/Sources/DataKit/Error.swift:19:16: warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
17 | public struct UnexpectedValueError: Error {
18 |     public let expectedValue: Any
19 |     public let actualValue: Any
   |                `- warning: stored property 'actualValue' of 'Sendable'-conforming struct 'UnexpectedValueError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
20 | }
21 |
[53/64] Compiling DataKit ReadWritable+Integer.swift
[54/64] Compiling DataKit ReadWritable+Optional.swift
[55/64] Compiling DataKit ReadWritable+Raw.swift
[56/64] Compiling DataKit Writable.swift
[57/64] Compiling DataKit WritableProperty.swift
[58/64] Compiling DataKit WriteContainer.swift
[59/64] Compiling DataKit Conversion+Encoding.swift
[60/64] Compiling DataKit Conversion+Exactly.swift
[61/64] Compiling DataKit Conversion+KeyPath.swift
[62/64] Compiling DataKit Conversion+Map.swift
[63/64] Compiling DataKit Conversion+Measurement.swift
[64/64] Compiling DataKit Conversion+PrefixCount.swift
Build complete! (16.43s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "crc-swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/QuickBirdEng/crc-swift.git"
    }
  ],
  "manifest_display_name" : "DataKit",
  "name" : "DataKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "DataKit",
      "targets" : [
        "DataKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "DataKitTests",
      "module_type" : "SwiftTarget",
      "name" : "DataKitTests",
      "path" : "Tests/DataKitTests",
      "sources" : [
        "Conversion/StringConversionTests.swift",
        "DataBuilderTests.swift",
        "DataKitTests.swift",
        "Extensions.swift",
        "Models.swift",
        "Readme/Readme.swift",
        "Readme/ReadmeExtensions.swift",
        "Readme/ReadmeTests.swift"
      ],
      "target_dependencies" : [
        "DataKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DataKit",
      "module_type" : "SwiftTarget",
      "name" : "DataKit",
      "path" : "Sources/DataKit",
      "product_dependencies" : [
        "CRC"
      ],
      "product_memberships" : [
        "DataKit"
      ],
      "sources" : [
        "Builder/DataBuilder.swift",
        "Builder/FormatBuilder+Read.swift",
        "Builder/FormatBuilder+ReadWrite.swift",
        "Builder/FormatBuilder+Write.swift",
        "Builder/FormatBuilder.swift",
        "Conversions/Conversion+Cast.swift",
        "Conversions/Conversion+Clamped.swift",
        "Conversions/Conversion+Encoding.swift",
        "Conversions/Conversion+Exactly.swift",
        "Conversions/Conversion+KeyPath.swift",
        "Conversions/Conversion+Map.swift",
        "Conversions/Conversion+Measurement.swift",
        "Conversions/Conversion+PrefixCount.swift",
        "Conversions/Conversion+Reversible.swift",
        "Conversions/Conversion+VariableCount.swift",
        "Conversions/Conversion.swift",
        "Environment/Environment+Endianness.swift",
        "Environment/Environment+Suffix.swift",
        "Environment/EnvironmentValues.swift",
        "Environment/SkipChecksumVerification.swift",
        "Error.swift",
        "Exports.swift",
        "Property/Checksum.swift",
        "Property/Convert.swift",
        "Property/Custom.swift",
        "Property/Environment.swift",
        "Property/EnvironmentProperty.swift",
        "Property/KeyPath.swift",
        "Property/OnRead.swift",
        "Property/OnWrite.swift",
        "Property/Property+Conversion.swift",
        "Property/Property+Custom.swift",
        "Property/Property.swift",
        "Property/Scope.swift",
        "Property/Using.swift",
        "ReadWritable/Format.swift",
        "ReadWritable/ReadWritable.swift",
        "ReadWritable/ReadWritableProperty.swift",
        "Readable/ReadContainer.swift",
        "Readable/ReadContext.swift",
        "Readable/Readable.swift",
        "Readable/ReadableProperty.swift",
        "Values/ReadWritable+FloatingPoint.swift",
        "Values/ReadWritable+Integer.swift",
        "Values/ReadWritable+Optional.swift",
        "Values/ReadWritable+Raw.swift",
        "Writable/Writable.swift",
        "Writable/WritableProperty.swift",
        "Writable/WriteContainer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.4"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.