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 Netswift with Swift 6.0 for Linux.

Swift 6 data race errors: 1

Build Command

bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/MrSkwiggs/Netswift.git
Reference: develop
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/MrSkwiggs/Netswift
 * branch            develop    -> FETCH_HEAD
 * [new branch]      develop    -> origin/develop
HEAD is now at 8766031 🔀 Merge pull request #47 from MrSkwiggs/bleeding_edge
Cloned https://github.com/MrSkwiggs/Netswift.git
Revision (git rev-parse @):
87660311fe0619caf900a4a14b16aa633377e684
SUCCESS checkout https://github.com/MrSkwiggs/Netswift.git at develop
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/MrSkwiggs/Netswift.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/23] Emitting module Netswift
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftError/NetswiftError.swift:14:16: warning: stored property 'category' of 'Sendable'-conforming struct 'NetswiftError' has non-sendable type 'NetswiftError.Category'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The category for the error
 14 |     public let category: Category
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'NetswiftError' has non-sendable type 'NetswiftError.Category'; this is an error in the Swift 6 language mode
 15 |     /// Additonal information about the error
 16 |     public let payload: Data?
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftError/NetswiftError+Category.swift:13:10: note: consider making enum 'Category' conform to the 'Sendable' protocol
 11 | public extension NetswiftError {
 12 |     /// All the errors that can be raised while performing HTTP requests
 13 |     enum Category: CustomDebugStringConvertible {
    |          `- note: consider making enum 'Category' conform to the 'Sendable' protocol
 14 |
 15 |         /// The request couldn't be serialised before being sent out
[4/25] Compiling Netswift NetswiftAuthorizationType.swift
[5/25] Compiling Netswift NetswiftEncoder.swift
[6/25] Compiling Netswift NetswiftError+Category.swift
[7/25] Compiling Netswift NetswiftRoute.swift
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftSession.swift:43:17: warning: result of call to 'dataTask(with:completionHandler:)' is unused
41 |         do {
42 |             let response: (Data?, URLResponse?) = try await withCheckedThrowingContinuation { continuation in
43 |                 dataTask(with: urlRequest) { data, response, error in
   |                 `- warning: result of call to 'dataTask(with:completionHandler:)' is unused
44 |                     if let error = error {
45 |                         continuation.resume(throwing: error)
[8/25] Compiling Netswift NetswiftSession.swift
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftSession.swift:43:17: warning: result of call to 'dataTask(with:completionHandler:)' is unused
41 |         do {
42 |             let response: (Data?, URLResponse?) = try await withCheckedThrowingContinuation { continuation in
43 |                 dataTask(with: urlRequest) { data, response, error in
   |                 `- warning: result of call to 'dataTask(with:completionHandler:)' is unused
44 |                     if let error = error {
45 |                         continuation.resume(throwing: error)
[9/25] Compiling Netswift NetswiftTask.swift
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftSession.swift:43:17: warning: result of call to 'dataTask(with:completionHandler:)' is unused
41 |         do {
42 |             let response: (Data?, URLResponse?) = try await withCheckedThrowingContinuation { continuation in
43 |                 dataTask(with: urlRequest) { data, response, error in
   |                 `- warning: result of call to 'dataTask(with:completionHandler:)' is unused
44 |                     if let error = error {
45 |                         continuation.resume(throwing: error)
[10/25] Compiling Netswift NetswiftError.swift
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftError/NetswiftError.swift:14:16: warning: stored property 'category' of 'Sendable'-conforming struct 'NetswiftError' has non-sendable type 'NetswiftError.Category'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The category for the error
 14 |     public let category: Category
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'NetswiftError' has non-sendable type 'NetswiftError.Category'; this is an error in the Swift 6 language mode
 15 |     /// Additonal information about the error
 16 |     public let payload: Data?
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftError/NetswiftError+Category.swift:13:10: note: consider making enum 'Category' conform to the 'Sendable' protocol
 11 | public extension NetswiftError {
 12 |     /// All the errors that can be raised while performing HTTP requests
 13 |     enum Category: CustomDebugStringConvertible {
    |          `- note: consider making enum 'Category' conform to the 'Sendable' protocol
 14 |
 15 |         /// The request couldn't be serialised before being sent out
[11/25] Compiling Netswift NetswiftHTTPMethod.swift
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftError/NetswiftError.swift:14:16: warning: stored property 'category' of 'Sendable'-conforming struct 'NetswiftError' has non-sendable type 'NetswiftError.Category'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The category for the error
 14 |     public let category: Category
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'NetswiftError' has non-sendable type 'NetswiftError.Category'; this is an error in the Swift 6 language mode
 15 |     /// Additonal information about the error
 16 |     public let payload: Data?
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftError/NetswiftError+Category.swift:13:10: note: consider making enum 'Category' conform to the 'Sendable' protocol
 11 | public extension NetswiftError {
 12 |     /// All the errors that can be raised while performing HTTP requests
 13 |     enum Category: CustomDebugStringConvertible {
    |          `- note: consider making enum 'Category' conform to the 'Sendable' protocol
 14 |
 15 |         /// The request couldn't be serialised before being sent out
[12/25] Compiling Netswift NetswiftHTTPResponse.swift
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftError/NetswiftError.swift:14:16: warning: stored property 'category' of 'Sendable'-conforming struct 'NetswiftError' has non-sendable type 'NetswiftError.Category'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The category for the error
 14 |     public let category: Category
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'NetswiftError' has non-sendable type 'NetswiftError.Category'; this is an error in the Swift 6 language mode
 15 |     /// Additonal information about the error
 16 |     public let payload: Data?
/host/spi-builder-workspace/Sources/Netswift/Core/NetswiftError/NetswiftError+Category.swift:13:10: note: consider making enum 'Category' conform to the 'Sendable' protocol
 11 | public extension NetswiftError {
 12 |     /// All the errors that can be raised while performing HTTP requests
 13 |     enum Category: CustomDebugStringConvertible {
    |          `- note: consider making enum 'Category' conform to the 'Sendable' protocol
 14 |
 15 |         /// The request couldn't be serialised before being sent out
[13/25] Compiling Netswift NetswiftHTTPPerformer.swift
[14/25] Compiling Netswift NetswiftPerformer.swift
[15/25] Compiling Netswift NetswiftRequest.swift
[16/25] Compiling Netswift NetswiftRequestPerformable.swift
[17/25] Compiling Netswift NetswiftResult.swift
[18/25] Compiling Netswift NetswiftHandler.swift
[19/25] Compiling Netswift NetswiftHeaders.swift
[20/25] Compiling Netswift NetswiftNetworkPerformer.swift
[21/25] Compiling Netswift RequestHeader.swift
[22/25] Compiling Netswift URLRequestExtension.swift
[23/25] Compiling Netswift GenericScheme.swift
[24/25] Compiling Netswift HTTPPerformer.swift
[25/25] Compiling Netswift MimeType.swift
Build complete! (10.37s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Netswift",
  "name" : "Netswift",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "Netswift",
      "targets" : [
        "Netswift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NetswiftTests",
      "module_type" : "SwiftTarget",
      "name" : "NetswiftTests",
      "path" : "Tests/NetswiftTests",
      "sources" : [
        "NetswiftTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Netswift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Netswift",
      "module_type" : "SwiftTarget",
      "name" : "Netswift",
      "path" : "Sources/Netswift",
      "product_memberships" : [
        "Netswift"
      ],
      "sources" : [
        "Core/GenericScheme.swift",
        "Core/HTTPPerformer.swift",
        "Core/MimeType.swift",
        "Core/NetswiftAuthorizationType.swift",
        "Core/NetswiftEncoder.swift",
        "Core/NetswiftError/NetswiftError+Category.swift",
        "Core/NetswiftError/NetswiftError.swift",
        "Core/NetswiftHTTPMethod.swift",
        "Core/NetswiftHTTPResponse.swift",
        "Core/NetswiftHandler.swift",
        "Core/NetswiftHeaders.swift",
        "Core/NetswiftNetworkPerformer.swift",
        "Core/NetswiftRequest.swift",
        "Core/NetswiftRequestPerformable.swift",
        "Core/NetswiftResult.swift",
        "Core/NetswiftRoute.swift",
        "Core/NetswiftSession.swift",
        "Core/NetswiftTask.swift",
        "Core/RequestHeader.swift",
        "Core/URLRequestExtension.swift",
        "NetswiftHTTPPerformer.swift",
        "NetswiftPerformer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.