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 LoaderUI 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/Mcrich23/LoaderUI.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Mcrich23/LoaderUI
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at af1151c Fixed exclude error
Cloned https://github.com/Mcrich23/LoaderUI.git
Revision (git rev-parse @):
af1151c489c087da79f7bf25382ed4d680133b29
SUCCESS checkout https://github.com/Mcrich23/LoaderUI.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/Mcrich23/LoaderUI.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/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/26] Emitting module LoaderUI
[4/28] Compiling LoaderUI LineScalePulseOut.swift
[5/28] Compiling LoaderUI LineScalePulseOutRapid.swift
[6/28] Compiling LoaderUI SquareSpin.swift
[7/28] Compiling LoaderUI TriangleSkewSpin.swift
[8/28] Compiling LoaderUI LineScale.swift
[9/28] Compiling LoaderUI LineScaleParty.swift
[10/28] Compiling LoaderUI LoadingUI.swift
[11/28] Compiling LoaderUI SemiCircleSpin.swift
[12/28] Compiling LoaderUI BallPulse.swift
[13/28] Compiling LoaderUI BallPulseSync.swift
[14/28] Compiling LoaderUI BallRotate.swift
[15/28] Compiling LoaderUI BallBeat.swift
[16/28] Compiling LoaderUI BallClipRotate.swift
[17/28] Compiling LoaderUI BallClipRotateMultiple.swift
[18/28] Compiling LoaderUI BallTrianglePath.swift
[19/28] Compiling LoaderUI BallZigZag.swift
[20/28] Compiling LoaderUI BallZigZagDeflect.swift
[21/28] Compiling LoaderUI CubeTransition.swift
/Users/admin/builder/spi-builder-workspace/Sources/KeyframeAnimation.swift:151:30: warning: capture of 'self' with non-sendable type 'KeyframeAnimationController<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
106 | }
107 |
108 | struct KeyframeAnimationController<T: View>: View {
    |        `- note: consider making generic struct 'KeyframeAnimationController' conform to the 'Sendable' protocol
109 |     typealias Content = (Int) -> T
110 |
    :
149 |     private func nextKeyframe() {
150 |         DispatchQueue.main.async {
151 |             guard let data = self.keyframeIterator.next() else {
    |                              `- warning: capture of 'self' with non-sendable type 'KeyframeAnimationController<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
152 |                 return
153 |             }
/Users/admin/builder/spi-builder-workspace/Sources/KeyframeAnimation.swift:159:17: warning: capture of 'self' with non-sendable type 'KeyframeAnimationController<T>' in an isolated closure; this is an error in the Swift 6 language mode
106 | }
107 |
108 | struct KeyframeAnimationController<T: View>: View {
    |        `- note: consider making generic struct 'KeyframeAnimationController' conform to the 'Sendable' protocol
109 |     typealias Content = (Int) -> T
110 |
    :
157 |             self.animation = animation
158 |             withAnimation(keyframeTracker) {
159 |                 self.keyframe = Double(keyframe)
    |                 `- warning: capture of 'self' with non-sendable type 'KeyframeAnimationController<T>' in an isolated closure; this is an error in the Swift 6 language mode
160 |             }
161 |         }
/Users/admin/builder/spi-builder-workspace/Sources/KeyframeAnimation.swift:151:30: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
149 |     private func nextKeyframe() {
150 |         DispatchQueue.main.async {
151 |             guard let data = self.keyframeIterator.next() 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
152 |                 return
153 |             }
[22/28] Compiling LoaderUI KeyframeAnimation.swift
/Users/admin/builder/spi-builder-workspace/Sources/KeyframeAnimation.swift:151:30: warning: capture of 'self' with non-sendable type 'KeyframeAnimationController<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
106 | }
107 |
108 | struct KeyframeAnimationController<T: View>: View {
    |        `- note: consider making generic struct 'KeyframeAnimationController' conform to the 'Sendable' protocol
109 |     typealias Content = (Int) -> T
110 |
    :
149 |     private func nextKeyframe() {
150 |         DispatchQueue.main.async {
151 |             guard let data = self.keyframeIterator.next() else {
    |                              `- warning: capture of 'self' with non-sendable type 'KeyframeAnimationController<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
152 |                 return
153 |             }
/Users/admin/builder/spi-builder-workspace/Sources/KeyframeAnimation.swift:159:17: warning: capture of 'self' with non-sendable type 'KeyframeAnimationController<T>' in an isolated closure; this is an error in the Swift 6 language mode
106 | }
107 |
108 | struct KeyframeAnimationController<T: View>: View {
    |        `- note: consider making generic struct 'KeyframeAnimationController' conform to the 'Sendable' protocol
109 |     typealias Content = (Int) -> T
110 |
    :
157 |             self.animation = animation
158 |             withAnimation(keyframeTracker) {
159 |                 self.keyframe = Double(keyframe)
    |                 `- warning: capture of 'self' with non-sendable type 'KeyframeAnimationController<T>' in an isolated closure; this is an error in the Swift 6 language mode
160 |             }
161 |         }
/Users/admin/builder/spi-builder-workspace/Sources/KeyframeAnimation.swift:151:30: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
149 |     private func nextKeyframe() {
150 |         DispatchQueue.main.async {
151 |             guard let data = self.keyframeIterator.next() 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
152 |                 return
153 |             }
[23/28] Compiling LoaderUI BallScale.swift
[24/28] Compiling LoaderUI BallScaleRipple.swift
[25/28] Compiling LoaderUI BallScaleRippleMultiple.swift
[26/28] Compiling LoaderUI BallClipRotatePulse.swift
[27/28] Compiling LoaderUI BallGridBeat.swift
[28/28] Compiling LoaderUI BallGridPulse.swift
Build complete! (43.16s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "LoaderUI",
  "name" : "LoaderUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "LoaderUI",
      "targets" : [
        "LoaderUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "LoaderUI",
      "module_type" : "SwiftTarget",
      "name" : "LoaderUI",
      "path" : "Sources",
      "product_memberships" : [
        "LoaderUI"
      ],
      "sources" : [
        "BallBeat.swift",
        "BallClipRotate.swift",
        "BallClipRotateMultiple.swift",
        "BallClipRotatePulse.swift",
        "BallGridBeat.swift",
        "BallGridPulse.swift",
        "BallPulse.swift",
        "BallPulseSync.swift",
        "BallRotate.swift",
        "BallScale.swift",
        "BallScaleRipple.swift",
        "BallScaleRippleMultiple.swift",
        "BallTrianglePath.swift",
        "BallZigZag.swift",
        "BallZigZagDeflect.swift",
        "CubeTransition.swift",
        "KeyframeAnimation.swift",
        "LineScale.swift",
        "LineScaleParty.swift",
        "LineScalePulseOut.swift",
        "LineScalePulseOutRapid.swift",
        "LoadingUI.swift",
        "SemiCircleSpin.swift",
        "SquareSpin.swift",
        "TriangleSkewSpin.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.