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

Swift 6 data race errors: 0

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/pvzig/SKRTMAPI.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/pvzig/SKRTMAPI
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at eb7c2eb Update README.md
Cloned https://github.com/pvzig/SKRTMAPI.git
Revision (git rev-parse @):
eb7c2ebd2f7fbd7a7bb6fd719fd9f9eac061fcb0
SUCCESS checkout https://github.com/pvzig/SKRTMAPI.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/pvzig/SKRTMAPI.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/5] Write sources
[4/5] Write swift-version-6F35C1178C84523A.txt
[6/36] Emitting module SKCore
[7/38] Compiling SKCore User.swift
[8/38] Compiling SKCore UserGroup.swift
[9/38] Compiling SKCore Reaction.swift
[10/38] Compiling SKCore Reply.swift
[11/38] Compiling SKCore Scope.swift
[12/38] Compiling SKCore CustomProfile.swift
[13/38] Compiling SKCore CustomProfileField.swift
[14/38] Compiling SKCore DoNotDisturbStatus.swift
[15/38] Compiling SKCore Action.swift
[16/38] Compiling SKCore Attachment.swift
[17/38] Compiling SKCore AttachmentField.swift
[18/38] Compiling SKCore Message.swift
[19/38] Compiling SKCore OAuthConfig.swift
[20/38] Compiling SKCore RTMOptions.swift
[21/38] Compiling SKCore SlackError.swift
[22/38] Compiling SKCore Team.swift
[23/38] Compiling SKCore TeamIcon.swift
[24/38] Compiling SKCore Topic.swift
[25/38] Compiling SKCore Bot.swift
[26/38] Compiling SKCore Channel.swift
[27/38] Compiling SKCore Comment.swift
[28/38] Compiling SKCore File.swift
[29/38] Compiling SKCore History.swift
[30/38] Compiling SKCore Item.swift
[31/38] Compiling SKCore Edited.swift
[32/38] Compiling SKCore Event.swift
[33/38] Compiling SKCore Extensions.swift
[34/38] Compiling Starscream SSLClientCertificate.swift
[35/38] Compiling Starscream WebSocket.swift
[36/38] Emitting module Starscream
[37/42] Compiling Starscream SSLSecurity.swift
[38/42] Compiling Starscream Compression.swift
[39/42] Compiling SKWebAPI NetworkInterface.swift
[40/42] Compiling SKWebAPI Endpoint.swift
[41/42] Emitting module SKWebAPI
[42/42] Compiling SKWebAPI WebAPI.swift
[43/46] Compiling SKRTMAPI StarscreamRTM.swift
[44/46] Compiling SKRTMAPI SKRTMAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKRTMAPI/SKRTMAPI.swift:174:19: warning: capture of 'self' with non-sendable type 'SKRTMAPI' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 49 | }
 50 |
 51 | public final class SKRTMAPI: RTMDelegate {
    |                    `- note: class 'SKRTMAPI' does not conform to the 'Sendable' protocol
 52 |
 53 |     public var rtm: RTMWebSocket
    :
172 |         let delay = DispatchTime.now() + pingInterval
173 |         DispatchQueue.main.asyncAfter(deadline: delay) {
174 |             guard self.connected && self.isConnectionTimedOut else {
    |                   `- warning: capture of 'self' with non-sendable type 'SKRTMAPI' in a `@Sendable` closure; this is an error in the Swift 6 language mode
175 |                 self.disconnect()
176 |                 return
/Users/admin/builder/spi-builder-workspace/Sources/SKRTMAPI/SKRTMAPI.swift:174:37: warning: implicit capture of 'self' requires that 'SKRTMAPI' conforms to `Sendable`; this is an error in the Swift 6 language mode
 49 | }
 50 |
 51 | public final class SKRTMAPI: RTMDelegate {
    |                    `- note: class 'SKRTMAPI' does not conform to the 'Sendable' protocol
 52 |
 53 |     public var rtm: RTMWebSocket
    :
172 |         let delay = DispatchTime.now() + pingInterval
173 |         DispatchQueue.main.asyncAfter(deadline: delay) {
174 |             guard self.connected && self.isConnectionTimedOut else {
    |                                     `- warning: implicit capture of 'self' requires that 'SKRTMAPI' conforms to `Sendable`; this is an error in the Swift 6 language mode
175 |                 self.disconnect()
176 |                 return
/Users/admin/builder/spi-builder-workspace/Sources/SKRTMAPI/SKRTMAPI.swift:174:19: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
172 |         let delay = DispatchTime.now() + pingInterval
173 |         DispatchQueue.main.asyncAfter(deadline: delay) {
174 |             guard self.connected && self.isConnectionTimedOut else {
    |                   |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                   `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
175 |                 self.disconnect()
176 |                 return
[45/46] Compiling SKRTMAPI VaporEngineRTM.swift
[46/46] Emitting module SKRTMAPI
Build complete! (32.38s)
Fetching https://github.com/daltoniam/Starscream
Fetching https://github.com/pvzig/SKWebAPI
Fetching https://github.com/pvzig/SKCore
[1/288] Fetching skcore
[27/582] Fetching skcore, skwebapi
[454/5450] Fetching skcore, skwebapi, starscream
Fetched https://github.com/pvzig/SKWebAPI from cache (1.38s)
Fetched https://github.com/daltoniam/Starscream from cache (1.38s)
Fetched https://github.com/pvzig/SKCore from cache (1.38s)
Computing version for https://github.com/pvzig/SKCore
Computed https://github.com/pvzig/SKCore at 4.1.3 (0.70s)
Computing version for https://github.com/daltoniam/Starscream
Computed https://github.com/daltoniam/Starscream at 3.1.2 (2.35s)
Computing version for https://github.com/pvzig/SKWebAPI
Computed https://github.com/pvzig/SKWebAPI at 4.1.3 (0.68s)
Creating working copy for https://github.com/pvzig/SKWebAPI
Working copy of https://github.com/pvzig/SKWebAPI resolved at 4.1.3
Creating working copy for https://github.com/daltoniam/Starscream
Working copy of https://github.com/daltoniam/Starscream resolved at 3.1.2
Creating working copy for https://github.com/pvzig/SKCore
Working copy of https://github.com/pvzig/SKCore resolved at 4.1.3
warning: 'skwebapi': 'skwebapi' dependency on 'https://github.com/SlackKit/SKCore' conflicts with dependency on 'https://github.com/pvzig/SKCore' which has the same identity 'skcore'. this will be escalated to an error in future versions of SwiftPM.
Build complete.
{
  "dependencies" : [
    {
      "identity" : "skcore",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pvzig/SKCore"
    },
    {
      "identity" : "skwebapi",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pvzig/SKWebAPI"
    },
    {
      "identity" : "starscream",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/daltoniam/Starscream"
    }
  ],
  "manifest_display_name" : "SKRTMAPI",
  "name" : "SKRTMAPI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SKRTMAPI",
      "targets" : [
        "SKRTMAPI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SKRTMAPI",
      "module_type" : "SwiftTarget",
      "name" : "SKRTMAPI",
      "path" : "Sources/SKRTMAPI",
      "product_dependencies" : [
        "SKCore",
        "SKWebAPI",
        "Starscream"
      ],
      "product_memberships" : [
        "SKRTMAPI"
      ],
      "sources" : [
        "Conformers/StarscreamRTM.swift",
        "Conformers/VaporEngineRTM.swift",
        "SKRTMAPI.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.