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 swiftui-simple-table, reference main (430186), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 14:27:29 UTC.

Swift 6 data race errors: 1

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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/darrarski/swiftui-simple-table.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/darrarski/swiftui-simple-table
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 4301861 Move examples to a separate target
Cloned https://github.com/darrarski/swiftui-simple-table.git
Revision (git rev-parse @):
4301861343ed15c42448d17a3c012224a3d38a1f
SUCCESS checkout https://github.com/darrarski/swiftui-simple-table.git at main
========================================
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": "swiftui-simple-table",
      "name": "swiftui-simple-table",
      "url": "https://github.com/darrarski/swiftui-simple-table.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swiftui-simple-table",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/darrarski/swiftui-simple-table.git
[1/90] Fetching swiftui-simple-table
Fetched https://github.com/darrarski/swiftui-simple-table.git from cache (0.87s)
Creating working copy for https://github.com/darrarski/swiftui-simple-table.git
Working copy of https://github.com/darrarski/swiftui-simple-table.git resolved at main (4301861)
warning: '.resolve-product-dependencies': dependency 'swiftui-simple-table' 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/darrarski/swiftui-simple-table.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swiftui-simple-table",
  "name" : "swiftui-simple-table",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SimpleTable",
      "targets" : [
        "SimpleTable"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SimpleTableExamples",
      "targets" : [
        "SimpleTableExamples"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SimpleTableExamples",
      "module_type" : "SwiftTarget",
      "name" : "SimpleTableExamples",
      "path" : "Sources/SimpleTableExamples",
      "product_memberships" : [
        "SimpleTableExamples"
      ],
      "sources" : [
        "ColorsTableExample.swift",
        "MultiplicationTableExample.swift",
        "PeopleTableExample.swift",
        "ShapesTableExample.swift"
      ],
      "target_dependencies" : [
        "SimpleTable"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SimpleTable",
      "module_type" : "SwiftTarget",
      "name" : "SimpleTable",
      "path" : "Sources/SimpleTable",
      "product_memberships" : [
        "SimpleTable",
        "SimpleTableExamples"
      ],
      "sources" : [
        "OnChangeModifier.swift",
        "SimpleTableCoordinateSpaceName.swift",
        "SimpleTableHeaderViewModifier.swift",
        "SimpleTableLayout.swift",
        "SimpleTableView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--7754E27361AE5C74.txt
[4/9] Compiling SimpleTable SimpleTableHeaderViewModifier.swift
[5/9] Compiling SimpleTable SimpleTableLayout.swift
[6/9] Compiling SimpleTable OnChangeModifier.swift
[7/9] Emitting module SimpleTable
/Users/admin/builder/spi-builder-workspace/Sources/SimpleTable/SimpleTableView.swift:62:19: warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  2 |
  3 | /// Wrapper for `SimpleTableLayout` that embeds provided content in a `ScrollView`
  4 | public struct SimpleTableView<Content>: View where Content: View {
    |                               `- note: 'Content' previously declared here
  5 |   /// Content scrolling mode
  6 |   public enum ScrollMode: Hashable {
    :
 60 |
 61 |   @ViewBuilder
 62 |   func scrollView<Content: View>(
    |                   `- warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 63 |     @ViewBuilder content: @escaping () -> Content
 64 |   ) -> some View {
[8/9] Compiling SimpleTable SimpleTableCoordinateSpaceName.swift
[9/9] Compiling SimpleTable SimpleTableView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SimpleTable/SimpleTableView.swift:62:19: warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  2 |
  3 | /// Wrapper for `SimpleTableLayout` that embeds provided content in a `ScrollView`
  4 | public struct SimpleTableView<Content>: View where Content: View {
    |                               `- note: 'Content' previously declared here
  5 |   /// Content scrolling mode
  6 |   public enum ScrollMode: Hashable {
    :
 60 |
 61 |   @ViewBuilder
 62 |   func scrollView<Content: View>(
    |                   `- warning: generic parameter 'Content' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 63 |     @ViewBuilder content: @escaping () -> Content
 64 |   ) -> some View {
[10/14] Compiling SimpleTableExamples ColorsTableExample.swift
[11/14] Compiling SimpleTableExamples MultiplicationTableExample.swift
[12/14] Compiling SimpleTableExamples ShapesTableExample.swift
[13/14] Emitting module SimpleTableExamples
[14/14] Compiling SimpleTableExamples PeopleTableExample.swift
Build complete! (15.20s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swiftui-simple-table",
  "name" : "swiftui-simple-table",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SimpleTable",
      "targets" : [
        "SimpleTable"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SimpleTableExamples",
      "targets" : [
        "SimpleTableExamples"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SimpleTableExamples",
      "module_type" : "SwiftTarget",
      "name" : "SimpleTableExamples",
      "path" : "Sources/SimpleTableExamples",
      "product_memberships" : [
        "SimpleTableExamples"
      ],
      "sources" : [
        "ColorsTableExample.swift",
        "MultiplicationTableExample.swift",
        "PeopleTableExample.swift",
        "ShapesTableExample.swift"
      ],
      "target_dependencies" : [
        "SimpleTable"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SimpleTable",
      "module_type" : "SwiftTarget",
      "name" : "SimpleTable",
      "path" : "Sources/SimpleTable",
      "product_memberships" : [
        "SimpleTable",
        "SimpleTableExamples"
      ],
      "sources" : [
        "OnChangeModifier.swift",
        "SimpleTableCoordinateSpaceName.swift",
        "SimpleTableHeaderViewModifier.swift",
        "SimpleTableLayout.swift",
        "SimpleTableView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
Done.