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 ExtendedAttributes, reference 1.0.0 (075e54), with Swift 6.0 for macOS (SPM) on 31 Oct 2024 13:26:16 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/amosavian/ExtendedAttributes.git
Reference: 1.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/amosavian/ExtendedAttributes
 * tag               1.0.0      -> FETCH_HEAD
HEAD is now at 075e545 Added readme badges for pods
Cloned https://github.com/amosavian/ExtendedAttributes.git
Revision (git rev-parse @):
075e545e2f128482fa377c825bfa0e4f0e266419
SUCCESS checkout https://github.com/amosavian/ExtendedAttributes.git at 1.0.0
========================================
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": "extendedattributes",
      "name": "ExtendedAttributes",
      "url": "https://github.com/amosavian/ExtendedAttributes.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ExtendedAttributes",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/amosavian/ExtendedAttributes.git
[1/44] Fetching extendedattributes
Fetched https://github.com/amosavian/ExtendedAttributes.git from cache (0.64s)
Creating working copy for https://github.com/amosavian/ExtendedAttributes.git
Working copy of https://github.com/amosavian/ExtendedAttributes.git resolved at 1.0.0 (075e545)
warning: '.resolve-product-dependencies': dependency 'extendedattributes' 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/amosavian/ExtendedAttributes.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/4] Emitting module ExtendedAttributes
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:14:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 12 | public extension URL {
 13 |     /// Checks extended attribute has value
 14 |     public func hasExtendedAttribute(forName name: String) -> Bool {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 15 |         guard isFileURL else {
 16 |             return false
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:25:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 23 |
 24 |     /// Get extended attribute.
 25 |     public func extendedAttribute(forName name: String) throws -> Data {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 26 |         try checkFileURL()
 27 |         let data = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> Data in
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 47 |
 48 |     /// Value of extended attribute.
 49 |     public func extendedAttributeValue<T>(forName name: String) throws -> T {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 50 |         try checkFileURL()
 51 |         let data = try extendedAttribute(forName: name)
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:60:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 58 |
 59 |     /// Set extended attribute.
 60 |     public func setExtendedAttribute(data: Data, forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 61 |         try checkFileURL()
 62 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:71:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 69 |
 70 |     /// Set extended attribute.
 71 |     public func setExtendedAttribute<T>(value: T, forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 72 |         try checkFileURL()
 73 |
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:84:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 82 |
 83 |     /// Remove extended attribute.
 84 |     public func removeExtendedAttribute(forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 85 |         try checkFileURL()
 86 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:93:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 91 |
 92 |     /// Get list of all extended attributes.
 93 |     public func listExtendedAttributes() throws -> [String] {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 94 |         try checkFileURL()
 95 |         let list = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> [String] in
[4/4] Compiling ExtendedAttributes ExtendedAttributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:14:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 12 | public extension URL {
 13 |     /// Checks extended attribute has value
 14 |     public func hasExtendedAttribute(forName name: String) -> Bool {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 15 |         guard isFileURL else {
 16 |             return false
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:25:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 23 |
 24 |     /// Get extended attribute.
 25 |     public func extendedAttribute(forName name: String) throws -> Data {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 26 |         try checkFileURL()
 27 |         let data = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> Data in
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 47 |
 48 |     /// Value of extended attribute.
 49 |     public func extendedAttributeValue<T>(forName name: String) throws -> T {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 50 |         try checkFileURL()
 51 |         let data = try extendedAttribute(forName: name)
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:60:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 58 |
 59 |     /// Set extended attribute.
 60 |     public func setExtendedAttribute(data: Data, forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 61 |         try checkFileURL()
 62 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:71:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 69 |
 70 |     /// Set extended attribute.
 71 |     public func setExtendedAttribute<T>(value: T, forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 72 |         try checkFileURL()
 73 |
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:84:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 82 |
 83 |     /// Remove extended attribute.
 84 |     public func removeExtendedAttribute(forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 85 |         try checkFileURL()
 86 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:93:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 91 |
 92 |     /// Get list of all extended attributes.
 93 |     public func listExtendedAttributes() throws -> [String] {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 94 |         try checkFileURL()
 95 |         let list = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> [String] in
Build complete! (6.01s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ExtendedAttributes",
  "name" : "ExtendedAttributes",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ExtendedAttributes",
      "targets" : [
        "ExtendedAttributes"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ExtendedAttributesTests",
      "module_type" : "SwiftTarget",
      "name" : "ExtendedAttributesTests",
      "path" : "Tests/ExtendedAttributesTests",
      "sources" : [
        "ExtendedAttributesTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "ExtendedAttributes"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ExtendedAttributes",
      "module_type" : "SwiftTarget",
      "name" : "ExtendedAttributes",
      "path" : "Sources/ExtendedAttributes",
      "product_memberships" : [
        "ExtendedAttributes"
      ],
      "sources" : [
        "ExtendedAttributes.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.