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 Tabular, reference main (64b3a4), with Swift 6.0 (beta) for macOS (SPM) on 16 Sep 2024 08:42:35 UTC.

Swift 6 data race errors: 1

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Release.Candidate.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.53.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/entonio/Tabular.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/entonio/Tabular
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 64b3a4f Slot.csv(_ separator: Character = ",", trim: CharacterSet? = .whitespacesAndNewlines) -> [String]
Cloned https://github.com/entonio/Tabular.git
Revision (git rev-parse @):
64b3a4fa0de863818047c2fcb3bc3ca4d48eeef2
SUCCESS checkout https://github.com/entonio/Tabular.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/entonio/Tabular.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Release.Candidate.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/6] Write sources
[3/6] Copying PrivacyInfo.xcprivacy
[3/6] Write sources
[5/6] Write swift-version-117DEE11B69C53C9.txt
[7/73] Emitting module ZIPFoundation
[8/75] Emitting module XMLCoder
[9/79] Compiling XMLCoder XMLEncodingStorage.swift
[10/79] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[11/79] Compiling XMLCoder XMLReferencingEncoder.swift
[12/79] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[13/79] Compiling XMLCoder KeyedBox.swift
[14/79] Compiling XMLCoder NullBox.swift
[15/79] Compiling XMLCoder SharedBox.swift
[16/79] Compiling XMLCoder SingleKeyedBox.swift
[17/79] Compiling XMLCoder StringBox.swift
[18/79] Compiling XMLCoder UIntBox.swift
[19/79] Compiling XMLCoder URLBox.swift
[20/79] Compiling XMLCoder UnkeyedBox.swift
[21/79] Compiling XMLCoder ValueBox.swift
[22/79] Compiling XMLCoder Element.swift
[23/79] Compiling XMLCoder DateBox.swift
[24/79] Compiling XMLCoder DecimalBox.swift
[25/79] Compiling XMLCoder DoubleBox.swift
[26/79] Compiling XMLCoder FloatBox.swift
[27/79] Compiling XMLCoder IntBox.swift
[28/79] Compiling ZIPFoundation URL+ZIP.swift
[29/79] Compiling ZIPFoundation resource_bundle_accessor.swift
[30/79] Compiling XMLCoder Attribute.swift
[31/79] Compiling XMLCoder BoolBox.swift
[32/79] Compiling XMLCoder Box.swift
[33/79] Compiling XMLCoder ChoiceBox.swift
[34/79] Compiling XMLCoder DataBox.swift
[35/79] Compiling XMLCoder XMLDecoderImplementation.swift
[36/79] Compiling XMLCoder XMLDecodingStorage.swift
[37/79] Compiling XMLCoder XMLKeyedDecodingContainer.swift
[38/79] Compiling XMLCoder XMLUnkeyedDecodingContainer.swift
[39/79] Compiling XMLCoder DynamicNodeEncoding.swift
[40/79] Compiling XMLCoder DecodingErrorExtension.swift
[41/79] Compiling XMLCoder DynamicNodeDecoding.swift
[42/79] Compiling XMLCoder SingleValueDecodingContainer.swift
[43/79] Compiling XMLCoder XMLChoiceDecodingContainer.swift
[44/79] Compiling XMLCoder XMLDecoder.swift
[45/79] Compiling XMLCoder XMLChoiceCodingKey.swift
[46/79] Compiling XMLCoder XMLCoderElement.swift
[47/79] Compiling XMLCoder XMLHeader.swift
[48/79] Compiling XMLCoder XMLKey.swift
[49/79] Compiling XMLCoder XMLStackParser.swift
[52/79] Compiling XMLCoder KeyedStorage.swift
[53/79] Compiling XMLCoder Metatypes.swift
[54/79] Compiling XMLCoder String+Extensions.swift
[55/79] Compiling XMLCoder EncodingErrorExtension.swift
[56/79] Compiling XMLCoder SingleValueEncodingContainer.swift
[57/79] Compiling XMLCoder XMLChoiceEncodingContainer.swift
[58/79] Compiling XMLCoder XMLEncoder.swift
[59/79] Compiling XMLCoder XMLEncoderImplementation.swift
[80/91] Compiling CoreXLSX Worksheet.swift
[81/92] Compiling CoreXLSX CellReference.swift
[82/92] Compiling CoreXLSX ColumnReference.swift
[83/92] Compiling CoreXLSX Cell.swift
[84/92] Compiling CoreXLSX CellQueries.swift
[85/92] Compiling CoreXLSX XLSXFile.swift
[86/92] Compiling CoreXLSX Workbook.swift
[87/92] Compiling CoreXLSX Styles.swift
[88/92] Emitting module CoreXLSX
[89/92] Compiling CoreXLSX Comments.swift
[90/92] Compiling CoreXLSX Path.swift
[91/92] Compiling CoreXLSX Relationships.swift
[92/92] Compiling CoreXLSX SharedStrings.swift
[93/96] Compiling Tabular Table.swift
[94/96] Emitting module Tabular
/Users/admin/builder/spi-builder-workspace/Sources/Tabular/Slot.swift:75:17: warning: stored property 'target' of 'Sendable'-conforming struct 'NotConvertibleError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
73 | public struct NotConvertibleError: Error, CustomStringConvertible, CustomDebugStringConvertible {
74 |     private let source: String
75 |     private let target: Any
   |                 `- warning: stored property 'target' of 'Sendable'-conforming struct 'NotConvertibleError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
76 |
77 |     public init(_ source: String, _ target: Any) {
[95/96] Compiling Tabular XLSX.swift
[96/96] Compiling Tabular Slot.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tabular/Slot.swift:75:17: warning: stored property 'target' of 'Sendable'-conforming struct 'NotConvertibleError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
73 | public struct NotConvertibleError: Error, CustomStringConvertible, CustomDebugStringConvertible {
74 |     private let source: String
75 |     private let target: Any
   |                 `- warning: stored property 'target' of 'Sendable'-conforming struct 'NotConvertibleError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
76 |
77 |     public init(_ source: String, _ target: Any) {
Build complete! (45.42s)
Fetching https://github.com/CoreOffice/CoreXLSX.git
[1/9062] Fetching corexlsx
Fetched https://github.com/CoreOffice/CoreXLSX.git from cache (1.18s)
Computing version for https://github.com/CoreOffice/CoreXLSX.git
Computed https://github.com/CoreOffice/CoreXLSX.git at 0.14.2 (3.22s)
Fetching https://github.com/weichsel/ZIPFoundation.git
Fetching https://github.com/maxdesiatov/XMLCoder.git
[1/5454] Fetching zipfoundation
[111/15465] Fetching zipfoundation, xmlcoder
Fetched https://github.com/weichsel/ZIPFoundation.git from cache (1.31s)
Fetched https://github.com/maxdesiatov/XMLCoder.git from cache (1.31s)
Computing version for https://github.com/maxdesiatov/XMLCoder.git
Computed https://github.com/maxdesiatov/XMLCoder.git at 0.14.0 (0.67s)
Computing version for https://github.com/weichsel/ZIPFoundation.git
Computed https://github.com/weichsel/ZIPFoundation.git at 0.9.19 (0.54s)
Creating working copy for https://github.com/CoreOffice/CoreXLSX.git
Working copy of https://github.com/CoreOffice/CoreXLSX.git resolved at 0.14.2
Creating working copy for https://github.com/maxdesiatov/XMLCoder.git
Working copy of https://github.com/maxdesiatov/XMLCoder.git resolved at 0.14.0
Creating working copy for https://github.com/weichsel/ZIPFoundation.git
Working copy of https://github.com/weichsel/ZIPFoundation.git resolved at 0.9.19
Build complete.
{
  "dependencies" : [
    {
      "identity" : "corexlsx",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.14.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/CoreOffice/CoreXLSX.git"
    }
  ],
  "manifest_display_name" : "Tabular",
  "name" : "Tabular",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    }
  ],
  "products" : [
    {
      "name" : "Tabular",
      "targets" : [
        "Tabular"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TabularTests",
      "module_type" : "SwiftTarget",
      "name" : "TabularTests",
      "path" : "Tests/TabularTests",
      "sources" : [
        "TableTests.swift"
      ],
      "target_dependencies" : [
        "Tabular"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Tabular",
      "module_type" : "SwiftTarget",
      "name" : "Tabular",
      "path" : "Sources/Tabular",
      "product_dependencies" : [
        "CoreXLSX"
      ],
      "product_memberships" : [
        "Tabular"
      ],
      "sources" : [
        "Slot.swift",
        "Table.swift",
        "XLSX.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Done.