The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Lark, reference master (b1ed2b), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 02:12:04 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/bouke/lark.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/bouke/lark
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at b1ed2b1 Use SonarQube scanner for code quality
Cloned https://github.com/bouke/lark.git
Revision (git rev-parse @):
b1ed2b1393f89a61c04fda9d7c1c91d47bfa680a
SUCCESS checkout https://github.com/bouke/lark.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/bouke/lark.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/10] Write sources
[4/10] Write lark-generate-client-entitlement.plist
[4/10] Write sources
[6/10] Write swift-version-1EA4D86E10B52AF.txt
[8/27] Compiling Alamofire Timeline.swift
[9/28] Compiling Alamofire DispatchQueue+Alamofire.swift
[10/28] Compiling Alamofire MultipartFormData.swift
[11/28] Emitting module Alamofire
[12/28] Compiling Alamofire Result.swift
[13/28] Compiling Alamofire ServerTrustPolicy.swift
[14/28] Compiling Alamofire ParameterEncoding.swift
[15/28] Compiling Alamofire Request.swift
[16/28] Compiling Alamofire NetworkReachabilityManager.swift
[17/28] Compiling Alamofire Notifications.swift
[18/28] Compiling Alamofire Response.swift
[19/28] Compiling Alamofire ResponseSerialization.swift
[20/28] Compiling Alamofire TaskDelegate.swift
[21/28] Compiling Alamofire AFError.swift
[22/28] Compiling Alamofire Alamofire.swift
[23/28] Compiling Alamofire SessionDelegate.swift
[24/28] Compiling Alamofire SessionManager.swift
[25/28] Compiling Alamofire Validation.swift
[26/37] Compiling Lark StringSerializableList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Lark/StringSerializableList.swift:4:20: warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 2 |
 3 | public protocol StringSerializableList: XMLDeserializable, XMLSerializable, Sequence, Collection, ExpressibleByArrayLiteral {
 4 |     associatedtype Element: StringDeserializable, StringSerializable
   |                    `- warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 5 |
 6 |     var _contents: [Element] { get }
Swift.Collection.Element:2:16: note: 'Element' declared here
1 | protocol Collection {
2 | associatedtype Element}
  |                `- note: 'Element' declared here
3 |
[27/37] Compiling Lark Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/Lark/StringSerializableList.swift:4:20: warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 2 |
 3 | public protocol StringSerializableList: XMLDeserializable, XMLSerializable, Sequence, Collection, ExpressibleByArrayLiteral {
 4 |     associatedtype Element: StringDeserializable, StringSerializable
   |                    `- warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 5 |
 6 |     var _contents: [Element] { get }
Swift.Collection.Element:2:16: note: 'Element' declared here
1 | protocol Collection {
2 | associatedtype Element}
  |                `- note: 'Element' declared here
3 |
[28/37] Compiling Lark Validation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Lark/Validation.swift:56:16: warning: stored property 'detail' of 'Sendable'-conforming struct 'Fault' has non-sendable type '[XMLNode]'; this is an error in the Swift 6 language mode
 54 |
 55 |     /// Carries application specific error information related to the `Body` element.
 56 |     public let detail: [XMLNode]
    |                `- warning: stored property 'detail' of 'Sendable'-conforming struct 'Fault' has non-sendable type '[XMLNode]'; this is an error in the Swift 6 language mode
 57 |
 58 |     /// A textual representation of this `Fault` instance.
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
[29/37] Compiling Lark Envelope.swift
[30/37] Compiling Lark QualifiedName.swift
/Users/admin/builder/spi-builder-workspace/Sources/Lark/StringSerializableList.swift:4:20: warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 2 |
 3 | public protocol StringSerializableList: XMLDeserializable, XMLSerializable, Sequence, Collection, ExpressibleByArrayLiteral {
 4 |     associatedtype Element: StringDeserializable, StringSerializable
   |                    `- warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 5 |
 6 |     var _contents: [Element] { get }
Swift.Collection.Element:2:16: note: 'Element' declared here
1 | protocol Collection {
2 | associatedtype Element}
  |                `- note: 'Element' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/Lark/QualifiedName.swift:31:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'QualifiedName' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
29 |
30 | extension QualifiedName: Hashable {
31 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'QualifiedName' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
32 |         return uri.hashValue % 17 + localName.hashValue
33 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[31/37] Compiling Lark Client.swift
[32/37] Emitting module Lark
/Users/admin/builder/spi-builder-workspace/Sources/Lark/StringSerializableList.swift:4:20: warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 2 |
 3 | public protocol StringSerializableList: XMLDeserializable, XMLSerializable, Sequence, Collection, ExpressibleByArrayLiteral {
 4 |     associatedtype Element: StringDeserializable, StringSerializable
   |                    `- warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 5 |
 6 |     var _contents: [Element] { get }
Swift.Collection.Element:2:16: note: 'Element' declared here
1 | protocol Collection {
2 | associatedtype Element}
  |                `- note: 'Element' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/Lark/QualifiedName.swift:31:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'QualifiedName' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
29 |
30 | extension QualifiedName: Hashable {
31 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'QualifiedName' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
32 |         return uri.hashValue % 17 + localName.hashValue
33 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Lark/Validation.swift:56:16: warning: stored property 'detail' of 'Sendable'-conforming struct 'Fault' has non-sendable type '[XMLNode]'; this is an error in the Swift 6 language mode
 54 |
 55 |     /// Carries application specific error information related to the `Body` element.
 56 |     public let detail: [XMLNode]
    |                `- warning: stored property 'detail' of 'Sendable'-conforming struct 'Fault' has non-sendable type '[XMLNode]'; this is an error in the Swift 6 language mode
 57 |
 58 |     /// A textual representation of this `Fault` instance.
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[33/37] Compiling Lark Alamofire+Extensions.swift
[34/37] Compiling Lark Serialization.swift
/Users/admin/builder/spi-builder-workspace/Sources/Lark/StringSerializableList.swift:4:20: warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 2 |
 3 | public protocol StringSerializableList: XMLDeserializable, XMLSerializable, Sequence, Collection, ExpressibleByArrayLiteral {
 4 |     associatedtype Element: StringDeserializable, StringSerializable
   |                    `- warning: redeclaration of associated type 'Element' from protocol 'Collection' is better expressed as a 'where' clause on the protocol
 5 |
 6 |     var _contents: [Element] { get }
Swift.Collection.Element:2:16: note: 'Element' declared here
1 | protocol Collection {
2 | associatedtype Element}
  |                `- note: 'Element' declared here
3 |
[35/44] Emitting module SchemaParser
/Users/admin/builder/spi-builder-workspace/Sources/SchemaParser/Schema+Extensions.swift:10:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Element' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 8 |
 9 | extension Element: Hashable {
10 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Element' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
11 |         return name.hashValue
12 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[36/44] Compiling SchemaParser WebServiceDescription.swift
[37/44] Compiling SchemaParser QualifiedName+XMLElement.swift
[38/44] Compiling SchemaParser Schema.swift
[39/44] Compiling SchemaParser Schema+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchemaParser/Schema+Extensions.swift:10:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Element' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 8 |
 9 | extension Element: Hashable {
10 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Element' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
11 |         return name.hashValue
12 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[40/44] Compiling SchemaParser SchemaParser.swift
[41/44] Compiling SchemaParser Utils.swift
[42/53] Compiling CodeGenerator WebServiceDescription+verify.swift
/Users/admin/builder/spi-builder-workspace/Sources/CodeGenerator/WebServiceDescription+verify.swift:162:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'WebServiceDescription.Node' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
160 |     }
161 |
162 |     var hashValue: Int {
    |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'WebServiceDescription.Node' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
163 |         switch self {
164 |         case let .service(qname): return qname.hashValue
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[43/53] Compiling CodeGenerator Utils.swift
[44/53] Compiling CodeGenerator Schema+toSwift.swift
[45/53] Compiling CodeGenerator NameTranslation.swift
[46/53] Compiling CodeGenerator Models.swift
[47/53] Emitting module CodeGenerator
/Users/admin/builder/spi-builder-workspace/Sources/CodeGenerator/Generator.swift:54:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Type' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 52 |     }
 53 |
 54 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Type' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 55 |         switch self {
 56 |         case let .element(qname): return qname.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/CodeGenerator/WebServiceDescription+verify.swift:162:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'WebServiceDescription.Node' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
160 |     }
161 |
162 |     var hashValue: Int {
    |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'WebServiceDescription.Node' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
163 |         switch self {
164 |         case let .service(qname): return qname.hashValue
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[48/53] Compiling CodeGenerator Graph.swift
[49/53] Compiling CodeGenerator Generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/CodeGenerator/Generator.swift:54:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Type' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 52 |     }
 53 |
 54 |     public var hashValue: Int {
    |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'Type' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
 55 |         switch self {
 56 |         case let .element(qname): return qname.hashValue
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[50/53] Compiling CodeGenerator SwiftCodeGenerator.swift
[51/55] Compiling lark_generate_client main.swift
/Users/admin/builder/spi-builder-workspace/Sources/lark-generate-client/main.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 | var standardError = FileHandle.standardError
 6 |
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |     public func write(_ string: String) {
 9 |         guard let data = string.data(using: .utf8) else { return }
[52/55] Emitting module lark_generate_client
/Users/admin/builder/spi-builder-workspace/Sources/lark-generate-client/main.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 | var standardError = FileHandle.standardError
 6 |
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |     public func write(_ string: String) {
 9 |         guard let data = string.data(using: .utf8) else { return }
[52/55] Write Objects.LinkFileList
[53/55] Linking lark-generate-client
[54/55] Applying lark-generate-client
Build complete! (18.99s)
Fetching https://github.com/Alamofire/Alamofire.git
[1/30141] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (2.75s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 4.9.1 (4.64s)
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 4.9.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "alamofire",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.5.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Alamofire/Alamofire.git"
    }
  ],
  "manifest_display_name" : "Lark",
  "name" : "Lark",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Lark",
      "targets" : [
        "Lark"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "lark-generate-client",
      "targets" : [
        "lark-generate-client"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "4"
  ],
  "targets" : [
    {
      "c99name" : "lark_generate_client",
      "module_type" : "SwiftTarget",
      "name" : "lark-generate-client",
      "path" : "Sources/lark-generate-client",
      "product_memberships" : [
        "lark-generate-client"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "SchemaParser",
        "CodeGenerator"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SchemaParserTests",
      "module_type" : "SwiftTarget",
      "name" : "SchemaParserTests",
      "path" : "Tests/SchemaParserTests",
      "sources" : [
        "SchemaTests.swift",
        "WebServiceDescriptionTests.swift"
      ],
      "target_dependencies" : [
        "SchemaParser"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SchemaParser",
      "module_type" : "SwiftTarget",
      "name" : "SchemaParser",
      "path" : "Sources/SchemaParser",
      "product_memberships" : [
        "lark-generate-client"
      ],
      "sources" : [
        "QualifiedName+XMLElement.swift",
        "Schema+Extensions.swift",
        "Schema.swift",
        "SchemaParser.swift",
        "Utils.swift",
        "WebServiceDescription.swift"
      ],
      "target_dependencies" : [
        "Lark"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LarkTests",
      "module_type" : "SwiftTarget",
      "name" : "LarkTests",
      "path" : "Tests/LarkTests",
      "sources" : [
        "SerializationTests.swift",
        "StringSerializableListTests.swift",
        "Utils.swift",
        "UtilsTests.swift",
        "ValidationTests.swift"
      ],
      "target_dependencies" : [
        "Lark"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Lark",
      "module_type" : "SwiftTarget",
      "name" : "Lark",
      "path" : "Sources/Lark",
      "product_dependencies" : [
        "Alamofire"
      ],
      "product_memberships" : [
        "Lark",
        "lark-generate-client"
      ],
      "sources" : [
        "Alamofire+Extensions.swift",
        "Client.swift",
        "Envelope.swift",
        "QualifiedName.swift",
        "Serialization.swift",
        "StringSerializableList.swift",
        "Utils.swift",
        "Validation.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CodeGeneratorTests",
      "module_type" : "SwiftTarget",
      "name" : "CodeGeneratorTests",
      "path" : "Tests/CodeGeneratorTests",
      "sources" : [
        "CodeGeneratorTests.swift",
        "NameTranslationTests.swift",
        "RandomServicesTests.swift",
        "SwiftTypeTests.swift",
        "Utils.swift",
        "WebServiceDescription+verifyTests.swift",
        "simplediff.swift"
      ],
      "target_dependencies" : [
        "CodeGenerator"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CodeGenerator",
      "module_type" : "SwiftTarget",
      "name" : "CodeGenerator",
      "path" : "Sources/CodeGenerator",
      "product_memberships" : [
        "lark-generate-client"
      ],
      "sources" : [
        "Generator.swift",
        "Graph.swift",
        "Models.swift",
        "NameTranslation.swift",
        "Schema+toSwift.swift",
        "SwiftCodeGenerator.swift",
        "Utils.swift",
        "WebServiceDescription+verify.swift"
      ],
      "target_dependencies" : [
        "Lark",
        "SchemaParser"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.