This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 5

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/QuickBirdEng/DataKit.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/QuickBirdEng/DataKit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
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 main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/QuickBirdEng/DataKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/13] Compiling CRC Hex.swift
[5/13] Compiling CRC CRCCalculator.swift
[6/13] Compiling CRC CRC8.swift
[7/13] Compiling CRC CRC32.swift
[8/13] Compiling CRC CRC64.swift
[9/13] Emitting module CRC
[10/13] Compiling CRC CRC+Verify.swift
[11/13] Compiling CRC CRC16.swift
[12/13] Compiling CRC CRC.swift
[13/13] Compiling CRC Checksum.swift
[14/59] Emitting module DataKit
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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 | }
/Users/admin/builder/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 |     }
[15/63] Compiling DataKit Conversion.swift
[16/63] Compiling DataKit Environment+Endianness.swift
[17/63] Compiling DataKit Environment+Suffix.swift
[18/63] Compiling DataKit EnvironmentValues.swift
[19/63] Compiling DataKit SkipChecksumVerification.swift
[20/63] Compiling DataKit Format.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 |     }
[21/63] Compiling DataKit ReadWritable.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 |     }
[22/63] Compiling DataKit ReadWritableProperty.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 |     }
[23/63] Compiling DataKit ReadContainer.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 |     }
[24/63] Compiling DataKit ReadContext.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 |     }
[25/63] Compiling DataKit Conversion+Cast.swift
[26/63] Compiling DataKit Conversion+Clamped.swift
[27/63] Compiling DataKit Conversion+Encoding.swift
[28/63] Compiling DataKit Conversion+Exactly.swift
[29/63] Compiling DataKit Conversion+KeyPath.swift
[30/63] Compiling DataKit Error.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
[31/63] Compiling DataKit Exports.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
[32/63] Compiling DataKit Checksum.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
[33/63] Compiling DataKit Convert.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
[34/63] Compiling DataKit Custom.swift
/Users/admin/builder/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 | }
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
[35/63] Compiling DataKit Environment.swift
[36/63] Compiling DataKit EnvironmentProperty.swift
[37/63] Compiling DataKit KeyPath.swift
[38/63] Compiling DataKit OnRead.swift
[39/63] Compiling DataKit OnWrite.swift
[40/63] Compiling DataKit Property+Conversion.swift
[41/63] Compiling DataKit Property+Custom.swift
[42/63] Compiling DataKit Property.swift
[43/63] Compiling DataKit Scope.swift
[44/63] Compiling DataKit Using.swift
[45/63] Compiling DataKit Readable.swift
[46/63] Compiling DataKit ReadableProperty.swift
[47/63] Compiling DataKit ReadWritable+FloatingPoint.swift
[48/63] Compiling DataKit ReadWritable+Integer.swift
[49/63] Compiling DataKit ReadWritable+Optional.swift
[50/63] Compiling DataKit DataBuilder.swift
[51/63] Compiling DataKit FormatBuilder+Read.swift
[52/63] Compiling DataKit FormatBuilder+ReadWrite.swift
[53/63] Compiling DataKit FormatBuilder+Write.swift
[54/63] Compiling DataKit FormatBuilder.swift
[55/63] Compiling DataKit Conversion+Map.swift
[56/63] Compiling DataKit Conversion+Measurement.swift
[57/63] Compiling DataKit Conversion+PrefixCount.swift
[58/63] Compiling DataKit Conversion+Reversible.swift
[59/63] Compiling DataKit Conversion+VariableCount.swift
[60/63] Compiling DataKit ReadWritable+Raw.swift
[61/63] Compiling DataKit Writable.swift
[62/63] Compiling DataKit WritableProperty.swift
[63/63] Compiling DataKit WriteContainer.swift
Build complete! (25.53s)
Fetching https://github.com/QuickBirdEng/crc-swift.git
[1/115] Fetching crc-swift
Fetched https://github.com/QuickBirdEng/crc-swift.git from cache (0.87s)
Computing version for https://github.com/QuickBirdEng/crc-swift.git
Computed https://github.com/QuickBirdEng/crc-swift.git at 0.1.1 (0.66s)
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
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" : "/Users/admin/builder/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"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.