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 Bytes, reference 0.3.1 (987dd1), with Swift 6.0 for macOS (SPM) on 4 Nov 2024 09:16:08 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mochidev/Bytes.git
Reference: 0.3.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/mochidev/Bytes
 * tag               0.3.1      -> FETCH_HEAD
HEAD is now at 987dd14 Updated Swift Package version to 5.7
Cloned https://github.com/mochidev/Bytes.git
Revision (git rev-parse @):
987dd14603cd92f9243efc4464de36493caa6c4c
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/mochidev/Bytes.git at 0.3.1
========================================
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",
  "dependencies": [
    {
      "identity": "bytes",
      "name": "Bytes",
      "url": "https://github.com/mochidev/Bytes.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Bytes",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/mochidev/Bytes.git
[5/452] Fetching bytes
Fetched https://github.com/mochidev/Bytes.git from cache (0.81s)
Creating working copy for https://github.com/mochidev/Bytes.git
Working copy of https://github.com/mochidev/Bytes.git resolved at 0.3.1 (987dd14)
warning: '.resolve-product-dependencies': dependency 'bytes' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/mochidev/Bytes.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/12] Compiling Bytes String.swift
[4/12] Compiling Bytes RawRepresentable.swift
[5/13] Compiling Bytes Bytes.swift
[6/13] Compiling Bytes BytesError.swift
[7/13] Compiling Bytes ByteIterator.swift
[8/13] Compiling Bytes AsyncByteIterator.swift
[9/13] Compiling Bytes AsyncChunkedBytes.swift
[10/13] Compiling Bytes Integer.swift
[11/13] Compiling Bytes UUID.swift
[12/13] Emitting module Bytes
[13/13] Compiling Bytes Colletion+Casting.swift
Build complete! (10.91s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Bytes",
  "name" : "Bytes",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Bytes",
      "targets" : [
        "Bytes"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BytesTests",
      "module_type" : "SwiftTarget",
      "name" : "BytesTests",
      "path" : "Tests/BytesTests",
      "sources" : [
        "BytesTests.swift",
        "IntegerTests.swift",
        "RawRepresentableTests.swift",
        "StringTests.swift",
        "UUIDTests.swift"
      ],
      "target_dependencies" : [
        "Bytes"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Bytes",
      "module_type" : "SwiftTarget",
      "name" : "Bytes",
      "path" : "Sources/Bytes",
      "product_memberships" : [
        "Bytes"
      ],
      "sources" : [
        "AsyncByteIterator.swift",
        "AsyncChunkedBytes.swift",
        "ByteIterator.swift",
        "Bytes.swift",
        "BytesError.swift",
        "Colletion+Casting.swift",
        "Integer.swift",
        "RawRepresentable.swift",
        "String.swift",
        "UUID.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/mochidev/bytes/0.3.1
Repository:               mochidev/Bytes
Swift version used:       6.0
Target:                   Bytes
Extracting symbol information for 'Bytes'...
Finished extracting symbol information for 'Bytes'. (3.90s)
Building documentation for 'Bytes'...
warning: Parameter 'bigEndianBytes' not found in initializer declaration
  --> ../Integer.swift:33:21-33:35
31 |
32 |     /// Initialize a fixed width integer from a contiguous sequence of Bytes representing a little endian type.
33 +     /// - Parameter bigEndianBytes: The Bytes to interpret as a little endian integer.
   |                     ╰─suggestion: Replace 'bigEndianBytes' with 'littleEndianBytes'
34 |     /// - Throws:
35 |     ///     - `BytesError.invalidMemorySize` if the byte sequence does not match the size of the integer type.
warning: Parameter 'littleEndianBytes' is missing documentation
  --> ../Integer.swift:33:87-33:87
31 |
32 |     /// Initialize a fixed width integer from a contiguous sequence of Bytes representing a little endian type.
33 +     /// - Parameter bigEndianBytes: The Bytes to interpret as a little endian integer.
   |                                                                                       ╰─suggestion: Document 'littleEndianBytes' parameter
34 |     /// - Throws:
35 |     ///     - `BytesError.invalidMemorySize` if the byte sequence does not match the size of the integer type.
warning: Parameter 'bigEndianBytes' not found in initializer declaration
  --> ../RawRepresentable.swift:17:9-17:84
15 |
16 |     /// Initialize a raw representable type from a contiguous sequence of Bytes representing the `rawValue`.
17 +     /// - Parameter bigEndianBytes: The Bytes to interpret as a big endian integer.
   |         ╰─suggestion: Remove 'bigEndianBytes' parameter documentation
18 |     /// - Throws:
19 |     ///     - `BytesError.invalidMemorySize` if the byte sequence does not match the size of the `rawValue`'s type.
warning: Parameter 'rawBytes' is missing documentation
  --> ../RawRepresentable.swift:17:84-17:84
15 |
16 |     /// Initialize a raw representable type from a contiguous sequence of Bytes representing the `rawValue`.
17 +     /// - Parameter bigEndianBytes: The Bytes to interpret as a big endian integer.
   |                                                                                    ╰─suggestion: Document 'rawBytes' parameter
18 |     /// - Throws:
19 |     ///     - `BytesError.invalidMemorySize` if the byte sequence does not match the size of the `rawValue`'s type.
warning: Parameter 'bigEndianBytes' not found in initializer declaration
  --> ../RawRepresentable.swift:59:21-59:35
57 |
58 |     /// Initialize a raw representable type as a fixed width integer from a contiguous sequence of Bytes representing a little endian type.
59 +     /// - Parameter bigEndianBytes: The Bytes to interpret as a little endian integer.
   |                     ╰─suggestion: Replace 'bigEndianBytes' with 'littleEndianBytes'
60 |     /// - Throws:
61 |     ///     - `BytesError.invalidMemorySize` if the byte sequence does not match the size of the integer type.
warning: Parameter 'littleEndianBytes' is missing documentation
  --> ../RawRepresentable.swift:59:87-59:87
57 |
58 |     /// Initialize a raw representable type as a fixed width integer from a contiguous sequence of Bytes representing a little endian type.
59 +     /// - Parameter bigEndianBytes: The Bytes to interpret as a little endian integer.
   |                                                                                       ╰─suggestion: Document 'littleEndianBytes' parameter
60 |     /// - Throws:
61 |     ///     - `BytesError.invalidMemorySize` if the byte sequence does not match the size of the integer type.
warning: Parameter 'bytes' not found in initializer declaration
  --> ../UUID.swift:49:9-49:68
47 |
48 |     /// Initialize a UUID from a contiguous sequence of Bytes representing the 36-character format.
49 +     /// - Parameter bytes: The Bytes to interpret as a UUID string.
   |         ╰─suggestion: Remove 'bytes' parameter documentation
50 |     /// - Throws:
51 |     ///     - `BytesError.invalidUUIDByteSequence` if the byte sequence does not represent a valid UUID.
warning: Parameter 'stringBytes' is missing documentation
  --> ../UUID.swift:49:68-49:68
47 |
48 |     /// Initialize a UUID from a contiguous sequence of Bytes representing the 36-character format.
49 +     /// - Parameter bytes: The Bytes to interpret as a UUID string.
   |                                                                    ╰─suggestion: Document 'stringBytes' parameter
50 |     /// - Throws:
51 |     ///     - `BytesError.invalidUUIDByteSequence` if the byte sequence does not represent a valid UUID.
warning: Parameter 'rawBytes' not found in initializer declaration
  --> ../UUID.swift:72:9-72:84
70 |
71 |     /// Initialize a collection of UUIDs with a sequence of Bytes representing the individual 16-byte UUIDs.
72 +     /// - Parameter rawBytes: The Bytes to interpret as a sequence of binary UUIDs.
   |         ╰─suggestion: Remove 'rawBytes' parameter documentation
73 |     /// - Throws:
74 |     ///     - `BytesError.invalidMemorySize` if the byte sequence is not a multiple of 16-bytes.
warning: Parameter 'bytes' is missing documentation
  --> ../UUID.swift:72:84-72:84
70 |
71 |     /// Initialize a collection of UUIDs with a sequence of Bytes representing the individual 16-byte UUIDs.
72 +     /// - Parameter rawBytes: The Bytes to interpret as a sequence of binary UUIDs.
   |                                                                                    ╰─suggestion: Document 'bytes' parameter
73 |     /// - Throws:
74 |     ///     - `BytesError.invalidMemorySize` if the byte sequence is not a multiple of 16-bytes.
warning: Parameter 'rawBytes' not found in initializer declaration
  --> ../UUID.swift:88:21-88:29
86 |
87 |     /// Initialize a collection of UUIDs with a sequence of Bytes representing the individual 36-character UUIDs.
88 +     /// - Parameter rawBytes: The Bytes to interpret as a sequence of binary UUIDs.
   |                     ╰─suggestion: Replace 'rawBytes' with 'stringBytes'
89 |     /// - Throws:
90 |     ///     - `BytesError.invalidMemorySize` if the byte sequence is not a multiple of 36-bytes.
warning: Parameter 'stringBytes' is missing documentation
  --> ../UUID.swift:88:84-88:84
86 |
87 |     /// Initialize a collection of UUIDs with a sequence of Bytes representing the individual 36-character UUIDs.
88 +     /// - Parameter rawBytes: The Bytes to interpret as a sequence of binary UUIDs.
   |                                                                                    ╰─suggestion: Document 'stringBytes' parameter
89 |     /// - Throws:
90 |     ///     - `BytesError.invalidMemorySize` if the byte sequence is not a multiple of 36-bytes.
warning: Parameter 'rawBytes' not found in initializer declaration
   --> ../UUID.swift:103:9-103:84
101 | extension Set where Element == UUID {
102 |     /// Initialize a Set of UUIDs with a sequence of Bytes representing the individual 16-byte UUIDs.
103 +     /// - Parameter rawBytes: The Bytes to interpret as a sequence of binary UUIDs.
    |         ╰─suggestion: Remove 'rawBytes' parameter documentation
104 |     /// - Throws:
105 |     ///     - `BytesError.invalidMemorySize` if the byte sequence is not a multiple of 16-bytes.
warning: Parameter 'bytes' is missing documentation
   --> ../UUID.swift:103:84-103:84
101 | extension Set where Element == UUID {
102 |     /// Initialize a Set of UUIDs with a sequence of Bytes representing the individual 16-byte UUIDs.
103 +     /// - Parameter rawBytes: The Bytes to interpret as a sequence of binary UUIDs.
    |                                                                                    ╰─suggestion: Document 'bytes' parameter
104 |     /// - Throws:
105 |     ///     - `BytesError.invalidMemorySize` if the byte sequence is not a multiple of 16-bytes.
warning: Parameter 'rawBytes' not found in initializer declaration
   --> ../UUID.swift:113:21-113:29
111 |
112 |     /// Initialize a Set of UUIDs with a sequence of Bytes representing the individual 36-character UUIDs.
113 +     /// - Parameter rawBytes: The Bytes to interpret as a sequence of binary UUIDs.
    |                     ╰─suggestion: Replace 'rawBytes' with 'stringBytes'
114 |     /// - Throws:
115 |     ///     - `BytesError.invalidMemorySize` if the byte sequence is not a multiple of 36-bytes.
warning: Parameter 'stringBytes' is missing documentation
   --> ../UUID.swift:113:84-113:84
111 |
112 |     /// Initialize a Set of UUIDs with a sequence of Bytes representing the individual 36-character UUIDs.
113 +     /// - Parameter rawBytes: The Bytes to interpret as a sequence of binary UUIDs.
    |                                                                                    ╰─suggestion: Document 'stringBytes' parameter
114 |     /// - Throws:
115 |     ///     - `BytesError.invalidMemorySize` if the byte sequence is not a multiple of 36-bytes.Finished building documentation for 'Bytes' (0.27s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/mochidev/bytes/0.3.1
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.29s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.65s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3153] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.33s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.67s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit DeclarationFragments.swift
[8/57] Compiling SymbolKit Fragment.swift
[9/57] Compiling SymbolKit FragmentKind.swift
[10/57] Compiling SymbolKit FunctionParameter.swift
[11/57] Compiling SymbolKit FunctionSignature.swift
[12/57] Compiling SymbolKit SemanticVersion.swift
[13/57] Compiling SymbolKit AccessControl.swift
[14/57] Compiling SymbolKit Availability.swift
[15/57] Compiling SymbolKit AvailabilityItem.swift
[16/57] Compiling SymbolKit Domain.swift
[17/57] Compiling SymbolKit Names.swift
[18/57] Compiling SymbolKit SPI.swift
[19/57] Compiling SymbolKit Snippet.swift
[20/57] Compiling SymbolKit Extension.swift
[21/57] Compiling SymbolKit Identifier.swift
[22/57] Compiling SymbolKit KindIdentifier.swift
[23/57] Compiling SymbolKit Location.swift
[24/57] Compiling SymbolKit Mutability.swift
[25/57] Compiling SymbolKit GenericConstraint.swift
[26/57] Compiling SymbolKit GenericParameter.swift
[27/57] Compiling SymbolKit Generics.swift
[28/57] Compiling SymbolKit Namespace.swift
[29/57] Compiling SymbolKit Relationship.swift
[30/57] Compiling SymbolKit RelationshipKind.swift
[31/57] Compiling SymbolKit SourceOrigin.swift
[32/57] Compiling SymbolKit GenericConstraints.swift
[33/57] Compiling SymbolKit Swift.swift
[34/57] Compiling SymbolKit Mixin+Equals.swift
[35/57] Compiling SymbolKit Mixin+Hash.swift
[36/57] Compiling SymbolKit Mixin.swift
[37/57] Compiling SymbolKit LineList.swift
[38/57] Compiling SymbolKit Position.swift
[39/57] Compiling SymbolKit Symbol.swift
[40/57] Compiling SymbolKit SymbolKind.swift
[41/57] Compiling SymbolKit SymbolGraph.swift
[42/57] Compiling SymbolKit GraphCollector.swift
[43/57] Compiling SymbolKit SourceRange.swift
[44/57] Compiling SymbolKit Metadata.swift
[45/57] Compiling SymbolKit Module.swift
[46/57] Compiling SymbolKit OperatingSystem.swift
[47/57] Compiling SymbolKit Platform.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.35s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/11] Compiling Bytes String.swift
[3/11] Compiling Bytes Integer.swift
[4/11] Compiling Bytes Colletion+Casting.swift
[5/11] Compiling Bytes Bytes.swift
[6/11] Compiling Bytes RawRepresentable.swift
[7/11] Compiling Bytes ByteIterator.swift
[8/11] Compiling Bytes BytesError.swift
[9/12] Compiling Bytes AsyncChunkedBytes.swift
[10/12] Compiling Bytes AsyncByteIterator.swift
[11/12] Emitting module Bytes
[12/12] Compiling Bytes UUID.swift
Build of target: 'Bytes' complete! (1.51s)
     504
5	/Users/admin/builder/spi-builder-workspace/.docs/mochidev/bytes/0.3.1
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/mochidev/bytes/0.3.1
File count: 504
Doc size:   5.0MB
Preparing doc bundle ...
Uploading prod-mochidev-bytes-0.3.1-883e95f1.zip to s3://spi-docs-inbox/prod-mochidev-bytes-0.3.1-883e95f1.zip
Copying... [13%]
Copying... [26%]
Copying... [33%]
Copying... [46%]
Copying... [53%]
Copying... [66%]
Copying... [72%]
Copying... [86%]
Copying... [92%]
Copying... [100%]
Done.