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

Swift 6 data race errors: 1

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/Fitzafful/BillboardSwiftLibrary.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Fitzafful/BillboardSwiftLibrary
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 56797c8 Deletion of Build Files
Cloned https://github.com/Fitzafful/BillboardSwiftLibrary.git
Revision (git rev-parse @):
56797c85c542221862e99aca2c0ee78fffa15365
SUCCESS checkout https://github.com/Fitzafful/BillboardSwiftLibrary.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/Fitzafful/BillboardSwiftLibrary.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/55] Emitting module SwiftSoup
[5/60] Compiling SwiftSoup StringUtil.swift
[6/60] Compiling SwiftSoup StructuralEvaluator.swift
[7/60] Compiling SwiftSoup SwiftSoup.swift
[8/60] Compiling SwiftSoup Tag.swift
[9/60] Compiling SwiftSoup TextNode.swift
[10/60] Compiling SwiftSoup UnicodeScalar.swift
[11/60] Compiling SwiftSoup Validate.swift
[12/60] Compiling SwiftSoup Whitelist.swift
[13/60] Compiling SwiftSoup XmlDeclaration.swift
[14/60] Compiling SwiftSoup XmlTreeBuilder.swift
[15/60] Compiling SwiftSoup Token.swift
[16/60] Compiling SwiftSoup TokenQueue.swift
[17/60] Compiling SwiftSoup Tokeniser.swift
[18/60] Compiling SwiftSoup TokeniserState.swift
[19/60] Compiling SwiftSoup TreeBuilder.swift
[20/60] Compiling SwiftSoup ParseErrorList.swift
[21/60] Compiling SwiftSoup ParseSettings.swift
[22/60] Compiling SwiftSoup Parser.swift
[23/60] Compiling SwiftSoup Pattern.swift
[24/60] Compiling SwiftSoup QueryParser.swift
[25/60] Compiling SwiftSoup Selector.swift
[26/60] Compiling SwiftSoup Cleaner.swift
[27/60] Compiling SwiftSoup Collector.swift
[28/60] Compiling SwiftSoup CombiningEvaluator.swift
[29/60] Compiling SwiftSoup Comment.swift
[30/60] Compiling SwiftSoup Connection.swift
[31/60] Compiling SwiftSoup DataNode.swift
[32/60] Compiling SwiftSoup ArrayExt.swift
[33/60] Compiling SwiftSoup Attribute.swift
[34/60] Compiling SwiftSoup Attributes.swift
[35/60] Compiling SwiftSoup BooleanAttribute.swift
[36/60] Compiling SwiftSoup CharacterExt.swift
[37/60] Compiling SwiftSoup CharacterReader.swift
[38/60] Compiling SwiftSoup SerializationException.swift
[39/60] Compiling SwiftSoup SimpleDictionary.swift
[40/60] Compiling SwiftSoup StreamReader.swift
[41/60] Compiling SwiftSoup String.swift
[42/60] Compiling SwiftSoup StringBuilder.swift
[43/60] Compiling SwiftSoup DataUtil.swift
[44/60] Compiling SwiftSoup Document.swift
[45/60] Compiling SwiftSoup DocumentType.swift
[46/60] Compiling SwiftSoup Element.swift
[47/60] Compiling SwiftSoup Elements.swift
[48/60] Compiling SwiftSoup Entities.swift
[49/60] Compiling SwiftSoup Node.swift
[50/60] Compiling SwiftSoup NodeTraversor.swift
[51/60] Compiling SwiftSoup NodeVisitor.swift
[52/60] Compiling SwiftSoup OrderedDictionary.swift
[53/60] Compiling SwiftSoup OrderedSet.swift
[54/60] Compiling SwiftSoup ParseError.swift
[55/60] Compiling SwiftSoup Evaluator.swift
[56/60] Compiling SwiftSoup Exception.swift
[57/60] Compiling SwiftSoup FormElement.swift
[58/60] Compiling SwiftSoup HtmlTreeBuilder.swift
[59/60] Compiling SwiftSoup HtmlTreeBuilderState.swift
[60/60] Compiling SwiftSoup HttpStatusException.swift
[61/68] Compiling BillboardSwiftLibrary ChartRequests.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChartRequests.swift:71:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
 66 |
 67 | public protocol URLSessionProtocol {
 68 | 	func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
    |       `- note: expected sendability to match requirement here
 69 | }
 70 |
 71 | extension URLSession: URLSessionProtocol { }
    | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
 72 |
 73 | public class ApiClientImplementation: ApiClient {
[62/68] Compiling BillboardSwiftLibrary Result.swift
/Users/admin/builder/spi-builder-workspace/Sources/Result.swift:35:20: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift
33 |
34 | public enum FetchError: Error{
35 | 	case NetworkFailed()
   |                    |- warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift
   |                    |- note: did you mean to remove the empty associated value list?
   |                    `- note: did you mean to explicitly add a 'Void' associated value?
36 | 	case AudiomackError(code:Int, message:String)
37 | }
[63/68] Compiling BillboardSwiftLibrary ChartEnums.swift
[64/68] Compiling BillboardSwiftLibrary ChartParser.swift
[65/68] Compiling BillboardSwiftLibrary ChartGateway.swift
[66/68] Compiling BillboardSwiftLibrary ChartEntry.swift
[67/68] Compiling BillboardSwiftLibrary BillboardManager.swift
[68/68] Emitting module BillboardSwiftLibrary
/Users/admin/builder/spi-builder-workspace/Sources/ChartRequests.swift:71:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
 66 |
 67 | public protocol URLSessionProtocol {
 68 | 	func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
    |       `- note: expected sendability to match requirement here
 69 | }
 70 |
 71 | extension URLSession: URLSessionProtocol { }
    | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
 72 |
 73 | public class ApiClientImplementation: ApiClient {
/Users/admin/builder/spi-builder-workspace/Sources/Result.swift:35:20: warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift
33 |
34 | public enum FetchError: Error{
35 | 	case NetworkFailed()
   |                    |- warning: enum element with associated values must have at least one associated value; this will be an error in the future version of Swift
   |                    |- note: did you mean to remove the empty associated value list?
   |                    `- note: did you mean to explicitly add a 'Void' associated value?
36 | 	case AudiomackError(code:Int, message:String)
37 | }
Build complete! (31.95s)
Fetching https://github.com/scinfu/SwiftSoup.git
[1/3058] Fetching swiftsoup
Fetched https://github.com/scinfu/SwiftSoup.git from cache (1.16s)
Computing version for https://github.com/scinfu/SwiftSoup.git
Computed https://github.com/scinfu/SwiftSoup.git at 1.7.5 (2.29s)
Creating working copy for https://github.com/scinfu/SwiftSoup.git
Working copy of https://github.com/scinfu/SwiftSoup.git resolved at 1.7.5
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swiftsoup",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.7.5",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/scinfu/SwiftSoup.git"
    }
  ],
  "manifest_display_name" : "BillboardSwiftLibrary",
  "name" : "BillboardSwiftLibrary",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "BillboardSwiftLibrary",
      "targets" : [
        "BillboardSwiftLibrary"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BillboardSwiftLibrary",
      "module_type" : "SwiftTarget",
      "name" : "BillboardSwiftLibrary",
      "path" : "Sources",
      "product_dependencies" : [
        "SwiftSoup"
      ],
      "product_memberships" : [
        "BillboardSwiftLibrary"
      ],
      "sources" : [
        "BillboardManager.swift",
        "ChartEntry.swift",
        "ChartEnums.swift",
        "ChartGateway.swift",
        "ChartParser.swift",
        "ChartRequests.swift",
        "Result.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.