The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Franz, reference 1.0.2 (c859f1), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 10:07:09 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kellanburket/franz.git
Reference: 1.0.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/kellanburket/franz
 * tag               1.0.2      -> FETCH_HEAD
HEAD is now at c859f1a Update podspec
Cloned https://github.com/kellanburket/franz.git
Revision (git rev-parse @):
c859f1a584ea949000b82d85b301b6bc25fad90e
SUCCESS checkout https://github.com/kellanburket/franz.git at 1.0.2
========================================
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": "franz",
      "name": "Franz",
      "url": "https://github.com/kellanburket/franz.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/franz",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/kellanburket/franz.git
[1/1166] Fetching franz
Fetched https://github.com/kellanburket/franz.git from cache (1.00s)
Creating working copy for https://github.com/kellanburket/franz.git
Working copy of https://github.com/kellanburket/franz.git resolved at 1.0.2 (c859f1a)
warning: '.resolve-product-dependencies': dependency 'franz' 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/kellanburket/franz.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/26] Emitting module Franz
/Users/admin/builder/spi-builder-workspace/Sources/Franz/Crypt/CRC32.swift:145:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CRC32' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
143 |     private(set) var crc: UInt32 = 0
144 |
145 |     var hashValue: Int {
    |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CRC32' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
146 |         return Int(crc)
147 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Franz/Group.swift:72:2: warning: 'internal(set)' modifier is redundant for an internal property
 70 |
 71 | 	var topics = Set<TopicName>()
 72 | 	internal(set) var assignedPartitions = [TopicName: [PartitionId]]()
    |  `- warning: 'internal(set)' modifier is redundant for an internal property
 73 | }
 74 |
/Users/admin/builder/spi-builder-workspace/Sources/Franz/GroupMembershipAPI.swift:411:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
361 | typealias MemberId = String
362 |
363 | class SyncGroupRequestMessage<T: KafkaMetadata>: KafkaType {
    |                               `- note: 'T' previously declared here
364 |
365 |     private var _groupId: String
    :
409 |
410 |
411 | 	class GroupAssignment<T: KafkaMetadata>: KafkaType {
    |                        `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
412 |
413 | 		let memberId: String
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[4/28] Compiling Franz Topic.swift
[5/28] Compiling Franz Variables.swift
[6/28] Compiling Franz OffsetAPI.swift
[7/28] Compiling Franz OffsetCommitAPI.swift
[8/28] Compiling Franz KafkaProtocol.swift
[9/28] Compiling Franz KafkaRequest.swift
[10/28] Compiling Franz KafkaResponse.swift
[11/28] Compiling Franz Group.swift
/Users/admin/builder/spi-builder-workspace/Sources/Franz/Group.swift:72:2: warning: 'internal(set)' modifier is redundant for an internal property
 70 |
 71 | 	var topics = Set<TopicName>()
 72 | 	internal(set) var assignedPartitions = [TopicName: [PartitionId]]()
    |  `- warning: 'internal(set)' modifier is redundant for an internal property
 73 | }
 74 |
/Users/admin/builder/spi-builder-workspace/Sources/Franz/GroupMembershipAPI.swift:411:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
361 | typealias MemberId = String
362 |
363 | class SyncGroupRequestMessage<T: KafkaMetadata>: KafkaType {
    |                               `- note: 'T' previously declared here
364 |
365 |     private var _groupId: String
    :
409 |
410 |
411 | 	class GroupAssignment<T: KafkaMetadata>: KafkaType {
    |                        `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
412 |
413 | 		let memberId: String
[12/28] Compiling Franz GroupCoordinatorAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/Franz/Group.swift:72:2: warning: 'internal(set)' modifier is redundant for an internal property
 70 |
 71 | 	var topics = Set<TopicName>()
 72 | 	internal(set) var assignedPartitions = [TopicName: [PartitionId]]()
    |  `- warning: 'internal(set)' modifier is redundant for an internal property
 73 | }
 74 |
/Users/admin/builder/spi-builder-workspace/Sources/Franz/GroupMembershipAPI.swift:411:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
361 | typealias MemberId = String
362 |
363 | class SyncGroupRequestMessage<T: KafkaMetadata>: KafkaType {
    |                               `- note: 'T' previously declared here
364 |
365 |     private var _groupId: String
    :
409 |
410 |
411 | 	class GroupAssignment<T: KafkaMetadata>: KafkaType {
    |                        `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
412 |
413 | 		let memberId: String
[13/28] Compiling Franz GroupMembershipAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/Franz/Group.swift:72:2: warning: 'internal(set)' modifier is redundant for an internal property
 70 |
 71 | 	var topics = Set<TopicName>()
 72 | 	internal(set) var assignedPartitions = [TopicName: [PartitionId]]()
    |  `- warning: 'internal(set)' modifier is redundant for an internal property
 73 | }
 74 |
/Users/admin/builder/spi-builder-workspace/Sources/Franz/GroupMembershipAPI.swift:411:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
361 | typealias MemberId = String
362 |
363 | class SyncGroupRequestMessage<T: KafkaMetadata>: KafkaType {
    |                               `- note: 'T' previously declared here
364 |
365 |     private var _groupId: String
    :
409 |
410 |
411 | 	class GroupAssignment<T: KafkaMetadata>: KafkaType {
    |                        `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
412 |
413 | 		let memberId: String
[14/28] Compiling Franz MessageSet.swift
[15/28] Compiling Franz MetadataAPI.swift
[16/28] Compiling Franz CRC32.swift
/Users/admin/builder/spi-builder-workspace/Sources/Franz/Crypt/CRC32.swift:145:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CRC32' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
143 |     private(set) var crc: UInt32 = 0
144 |
145 |     var hashValue: Int {
    |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CRC32' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
146 |         return Int(crc)
147 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[17/28] Compiling Franz Enumerations.swift
/Users/admin/builder/spi-builder-workspace/Sources/Franz/Crypt/CRC32.swift:145:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CRC32' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
143 |     private(set) var crc: UInt32 = 0
144 |
145 |     var hashValue: Int {
    |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CRC32' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
146 |         return Int(crc)
147 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[18/28] Compiling Franz FetchAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/Franz/Crypt/CRC32.swift:145:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CRC32' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
143 |     private(set) var crc: UInt32 = 0
144 |
145 |     var hashValue: Int {
    |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'CRC32' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
146 |         return Int(crc)
147 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[19/28] Compiling Franz Partition.swift
[20/28] Compiling Franz ProduceAPI.swift
[21/28] Compiling Franz OffsetFetchAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/Franz/OldConsumers.swift:182:3: warning: using '_' to ignore the result of a Void-returning function is redundant
180 | 		}
181 |
182 | 		_ = coordinator.poll(topics: [_topic: [_partition: offset]], clientId: _clientId, replicaId: .none, callback: { topicName, partitionId, offset, messages in
    |   `- warning: using '_' to ignore the result of a Void-returning function is redundant
183 | 			messages.forEach { self.delegate.consumerDidReturnMessage($0, offset: offset) }
184 | 		}, errorCallback: { error in
[22/28] Compiling Franz OldConsumers.swift
/Users/admin/builder/spi-builder-workspace/Sources/Franz/OldConsumers.swift:182:3: warning: using '_' to ignore the result of a Void-returning function is redundant
180 | 		}
181 |
182 | 		_ = coordinator.poll(topics: [_topic: [_partition: offset]], clientId: _clientId, replicaId: .none, callback: { topicName, partitionId, offset, messages in
    |   `- warning: using '_' to ignore the result of a Void-returning function is redundant
183 | 			messages.forEach { self.delegate.consumerDidReturnMessage($0, offset: offset) }
184 | 		}, errorCallback: { error in
[23/28] Compiling Franz Cluster.swift
[24/28] Compiling Franz Connection.swift
[25/28] Compiling Franz Consumer.swift
[26/28] Compiling Franz AdminAPI.swift
[27/28] Compiling Franz Assignment.swift
[28/28] Compiling Franz Broker.swift
Build complete! (5.35s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Franz",
  "name" : "Franz",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Franz",
      "targets" : [
        "Franz"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4"
  ],
  "targets" : [
    {
      "c99name" : "FranzTests",
      "module_type" : "SwiftTarget",
      "name" : "FranzTests",
      "path" : "Tests/FranzTests",
      "sources" : [
        "AssignmentTests.swift",
        "CRCTests.swift",
        "Protocol/ArrayProtocolTests.swift",
        "Protocol/IntegerProtocolTests.swift",
        "Protocol/MessageTests.swift",
        "Protocol/VariableLengthProtocolTests.swift"
      ],
      "target_dependencies" : [
        "Franz"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Franz",
      "module_type" : "SwiftTarget",
      "name" : "Franz",
      "path" : "Sources/Franz",
      "product_memberships" : [
        "Franz"
      ],
      "sources" : [
        "AdminAPI.swift",
        "Assignment.swift",
        "Broker.swift",
        "Cluster.swift",
        "Connection.swift",
        "Consumer.swift",
        "Crypt/CRC32.swift",
        "Enumerations.swift",
        "FetchAPI.swift",
        "Group.swift",
        "GroupCoordinatorAPI.swift",
        "GroupMembershipAPI.swift",
        "KafkaProtocol.swift",
        "KafkaRequest.swift",
        "KafkaResponse.swift",
        "MessageSet.swift",
        "MetadataAPI.swift",
        "OffsetAPI.swift",
        "OffsetCommitAPI.swift",
        "OffsetFetchAPI.swift",
        "OldConsumers.swift",
        "Partition.swift",
        "ProduceAPI.swift",
        "Topic.swift",
        "Variables.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.