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 ExtensionProperty, reference 1.0.2 (933c90), with Swift 6.0 for macOS (SPM) on 31 Oct 2024 19:59:27 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.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.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/cats-oss/ExtensionProperty.git
Reference: 1.0.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/cats-oss/ExtensionProperty
 * tag               1.0.2      -> FETCH_HEAD
HEAD is now at 933c908 fix path to source
Cloned https://github.com/cats-oss/ExtensionProperty.git
Revision (git rev-parse @):
933c908244af445fe3e7929161a664610f4f9e0d
SUCCESS checkout https://github.com/cats-oss/ExtensionProperty.git at 1.0.2
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "extensionproperty",
      "name": "ExtensionProperty",
      "url": "https://github.com/cats-oss/ExtensionProperty.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ExtensionProperty",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/cats-oss/ExtensionProperty.git
[1/98] Fetching extensionproperty
Fetched https://github.com/cats-oss/ExtensionProperty.git from cache (0.69s)
Creating working copy for https://github.com/cats-oss/ExtensionProperty.git
Working copy of https://github.com/cats-oss/ExtensionProperty.git resolved at 1.0.2 (933c908)
warning: '.resolve-product-dependencies': dependency 'extensionproperty' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/cats-oss/ExtensionProperty.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.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--7754E27361AE5C74.txt
[3/5] Emitting module ExtensionProperty
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:46:5: warning: 'public' modifier is redundant for instance method declared in a public extension
44 | // MARK: - ExtensionProperty
45 | public extension ExtensionProperty {
46 |     public func getProperty<V>(key: Self.Key) -> V? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
47 |         return objc_getAssociatedObject(self, key.keyPointer) as? V
48 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:50:5: warning: 'public' modifier is redundant for instance method declared in a public extension
48 |     }
49 |
50 |     public func getProperty<V>(key: Self.Key, defaultValue: V) -> V {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
51 |         if let value = objc_getAssociatedObject(self, key.keyPointer) as? V {
52 |             return value
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:59:5: warning: 'public' modifier is redundant for instance method declared in a public extension
57 |     }
58 |
59 |     public func setProperty<V>(key: Self.Key, newValue: V, policy: objc_AssociationPolicy = .OBJC_ASSOCIATION_RETAIN) {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
60 |         objc_setAssociatedObject(self, key.keyPointer, newValue, policy)
61 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:63:5: warning: 'public' modifier is redundant for instance method declared in a public extension
61 |     }
62 |
63 |     public func removeProperty(key: Self.Key) {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
64 |         if let any: Any = getProperty(key: key) {
65 |             objc_removeAssociatedObjects(any)
[4/5] Compiling ExtensionProperty ExtensionPropertyKey.swift
[5/5] Compiling ExtensionProperty ExtensionProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:46:5: warning: 'public' modifier is redundant for instance method declared in a public extension
44 | // MARK: - ExtensionProperty
45 | public extension ExtensionProperty {
46 |     public func getProperty<V>(key: Self.Key) -> V? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
47 |         return objc_getAssociatedObject(self, key.keyPointer) as? V
48 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:50:5: warning: 'public' modifier is redundant for instance method declared in a public extension
48 |     }
49 |
50 |     public func getProperty<V>(key: Self.Key, defaultValue: V) -> V {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
51 |         if let value = objc_getAssociatedObject(self, key.keyPointer) as? V {
52 |             return value
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:59:5: warning: 'public' modifier is redundant for instance method declared in a public extension
57 |     }
58 |
59 |     public func setProperty<V>(key: Self.Key, newValue: V, policy: objc_AssociationPolicy = .OBJC_ASSOCIATION_RETAIN) {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
60 |         objc_setAssociatedObject(self, key.keyPointer, newValue, policy)
61 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:63:5: warning: 'public' modifier is redundant for instance method declared in a public extension
61 |     }
62 |
63 |     public func removeProperty(key: Self.Key) {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
64 |         if let any: Any = getProperty(key: key) {
65 |             objc_removeAssociatedObjects(any)
Build complete! (6.05s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ExtensionProperty",
  "name" : "ExtensionProperty",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ExtensionProperty",
      "targets" : [
        "ExtensionProperty"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ExtensionProperty",
      "module_type" : "SwiftTarget",
      "name" : "ExtensionProperty",
      "path" : "Sources/ExtensionProperty",
      "product_memberships" : [
        "ExtensionProperty"
      ],
      "sources" : [
        "ExtensionProperty.swift",
        "ExtensionPropertyKey.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.