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 WeakableSelf, reference 1.1.1 (b997b6), with Swift 6.0 for macOS (SPM) on 6 Jul 2024 11:36:27 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Beta.2.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.45.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vincent-pradeilles/weakable-self.git
Reference: 1.1.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/vincent-pradeilles/weakable-self
 * tag               1.1.1      -> FETCH_HEAD
HEAD is now at b997b6f Bump to v1.1.1
Cloned https://github.com/vincent-pradeilles/weakable-self.git
Revision (git rev-parse @):
b997b6fa5241cebf33f1bc06e75762555f36712f
SUCCESS checkout https://github.com/vincent-pradeilles/weakable-self.git at 1.1.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/vincent-pradeilles/weakable-self.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Beta.2.app xcrun 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--14728B76ED507284.txt
[3/4] Emitting module WeakableSelf
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:17:5: warning: 'public' modifier is redundant for instance method declared in a public extension
15 | public extension Weakable {
16 |
17 |     public func weakify(_ code: @escaping (Self) -> Void) -> () -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
18 |         return { [weak self] in
19 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:25:5: warning: 'public' modifier is redundant for instance method declared in a public extension
23 |     }
24 |
25 |     public func weakify<A>(_ code: @escaping (Self, A) -> Void) -> (A) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
26 |         return { [weak self] a in
27 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:33:5: warning: 'public' modifier is redundant for instance method declared in a public extension
31 |     }
32 |
33 |     public func weakify<A, B>(_ code: @escaping (Self, A, B) -> Void) -> (A, B) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
34 |         return { [weak self] a, b in
35 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:41:5: warning: 'public' modifier is redundant for instance method declared in a public extension
39 |     }
40 |
41 |     public func weakify<A, B, C>(_ code: @escaping (Self, A, B, C) -> Void) -> (A, B, C) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
42 |         return { [weak self] a, b, c in
43 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
47 |     }
48 |
49 |     public func weakify<A, B, C, D>(_ code: @escaping (Self, A, B, C, D) -> Void) -> (A, B, C, D) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
50 |         return { [weak self] a, b, c, d in
51 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:57:5: warning: 'public' modifier is redundant for instance method declared in a public extension
55 |     }
56 |
57 |     public func weakify<A, B, C, D, E>(_ code: @escaping (Self, A, B, C, D, E) -> Void) -> (A, B, C, D, E) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
58 |         return { [weak self] a, b, c, d, e in
59 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:65:5: warning: 'public' modifier is redundant for instance method declared in a public extension
63 |     }
64 |
65 |     public func weakify<A, B, C, D, E, F>(_ code: @escaping (Self, A, B, C, D, E, F) -> Void) -> (A, B, C, D, E, F) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
66 |         return { [weak self] a, b, c, d, e, f in
67 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:73:5: warning: 'public' modifier is redundant for instance method declared in a public extension
71 |     }
72 |
73 |     public func weakify<A, B, C, D, E, F, G>(_ code: @escaping (Self, A, B, C, D, E, F, G) -> Void) -> (A, B, C, D, E, F, G) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
74 |         return { [weak self] a, b, c, d, e, f, g in
75 |             guard let self = self else { return }
[4/4] Compiling WeakableSelf Weakable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:17:5: warning: 'public' modifier is redundant for instance method declared in a public extension
15 | public extension Weakable {
16 |
17 |     public func weakify(_ code: @escaping (Self) -> Void) -> () -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
18 |         return { [weak self] in
19 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:25:5: warning: 'public' modifier is redundant for instance method declared in a public extension
23 |     }
24 |
25 |     public func weakify<A>(_ code: @escaping (Self, A) -> Void) -> (A) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
26 |         return { [weak self] a in
27 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:33:5: warning: 'public' modifier is redundant for instance method declared in a public extension
31 |     }
32 |
33 |     public func weakify<A, B>(_ code: @escaping (Self, A, B) -> Void) -> (A, B) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
34 |         return { [weak self] a, b in
35 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:41:5: warning: 'public' modifier is redundant for instance method declared in a public extension
39 |     }
40 |
41 |     public func weakify<A, B, C>(_ code: @escaping (Self, A, B, C) -> Void) -> (A, B, C) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
42 |         return { [weak self] a, b, c in
43 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
47 |     }
48 |
49 |     public func weakify<A, B, C, D>(_ code: @escaping (Self, A, B, C, D) -> Void) -> (A, B, C, D) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
50 |         return { [weak self] a, b, c, d in
51 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:57:5: warning: 'public' modifier is redundant for instance method declared in a public extension
55 |     }
56 |
57 |     public func weakify<A, B, C, D, E>(_ code: @escaping (Self, A, B, C, D, E) -> Void) -> (A, B, C, D, E) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
58 |         return { [weak self] a, b, c, d, e in
59 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:65:5: warning: 'public' modifier is redundant for instance method declared in a public extension
63 |     }
64 |
65 |     public func weakify<A, B, C, D, E, F>(_ code: @escaping (Self, A, B, C, D, E, F) -> Void) -> (A, B, C, D, E, F) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
66 |         return { [weak self] a, b, c, d, e, f in
67 |             guard let self = self else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Weakable.swift:73:5: warning: 'public' modifier is redundant for instance method declared in a public extension
71 |     }
72 |
73 |     public func weakify<A, B, C, D, E, F, G>(_ code: @escaping (Self, A, B, C, D, E, F, G) -> Void) -> (A, B, C, D, E, F, G) -> Void {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
74 |         return { [weak self] a, b, c, d, e, f, g in
75 |             guard let self = self else { return }
Build complete! (4.99s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "WeakableSelf",
  "name" : "WeakableSelf",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "WeakableSelf",
      "targets" : [
        "WeakableSelf"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "WeakableSelf",
      "module_type" : "SwiftTarget",
      "name" : "WeakableSelf",
      "path" : "Sources",
      "product_memberships" : [
        "WeakableSelf"
      ],
      "sources" : [
        "Weakable.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.