The Swift Package Index logo.Swift Package Index

Build Information

Successful build of InlineTokenField, reference main (d79fe8), with Swift 6.1 for macOS (SPM) on 28 Apr 2026 09:12:17 UTC.

Swift 6 data race errors: 1

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.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.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/alibosworth/InlineTokenField.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/alibosworth/InlineTokenField
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at d79fe82 Clarify publish-ready docs and comments
Cloned https://github.com/alibosworth/InlineTokenField.git
Revision (git rev-parse @):
d79fe824cfef3e00a7b82dedb564f03576044c6f
SUCCESS checkout https://github.com/alibosworth/InlineTokenField.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/alibosworth/InlineTokenField.git
https://github.com/alibosworth/InlineTokenField.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "InlineTokenField",
  "name" : "InlineTokenField",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "InlineTokenField",
      "targets" : [
        "InlineTokenField"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "InlineTokenFieldDemo",
      "targets" : [
        "InlineTokenFieldDemo"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "InlineTokenFieldTests",
      "module_type" : "SwiftTarget",
      "name" : "InlineTokenFieldTests",
      "path" : "Tests/InlineTokenFieldTests",
      "sources" : [
        "TokenTemplateTests.swift"
      ],
      "target_dependencies" : [
        "InlineTokenField"
      ],
      "type" : "test"
    },
    {
      "c99name" : "InlineTokenFieldDemo",
      "module_type" : "SwiftTarget",
      "name" : "InlineTokenFieldDemo",
      "path" : "Sources/InlineTokenFieldDemo",
      "product_memberships" : [
        "InlineTokenFieldDemo"
      ],
      "sources" : [
        "DemoApp.swift"
      ],
      "target_dependencies" : [
        "InlineTokenField"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "InlineTokenField",
      "module_type" : "SwiftTarget",
      "name" : "InlineTokenField",
      "path" : "Sources/InlineTokenField",
      "product_memberships" : [
        "InlineTokenField",
        "InlineTokenFieldDemo"
      ],
      "sources" : [
        "InlineTokenField.swift",
        "InlineTokenFieldRow.swift",
        "TokenAttachmentCell.swift",
        "TokenNSTextView.swift",
        "TokenSegment.swift",
        "TokenStyle.swift",
        "TokenTemplate.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.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/7] Write sources
[1/7] Write InlineTokenFieldDemo-entitlement.plist
[1/7] Write sources
[3/7] Write swift-version-2F0A5646E1D333AE.txt
[5/15] Compiling InlineTokenField TokenStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/InlineTokenField/TokenStyle.swift:19:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TokenStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 3 | /// Configurable appearance for token pills. Pass an instance into `InlineTokenField`
 4 | /// and `InlineTokenFieldRow` to control font, padding, and colors.
 5 | public struct TokenStyle: Equatable {
   |               `- note: consider making struct 'TokenStyle' conform to the 'Sendable' protocol
 6 |     public var font: NSFont
 7 |     public var horizontalPadding: CGFloat
   :
17 |     public var showsCloseButton: Bool
18 |
19 |     public static let `default` = TokenStyle(
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TokenStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |         font: NSFont.systemFont(ofSize: NSFont.systemFontSize - 1, weight: .medium),
21 |         horizontalPadding: 7,
[6/15] Compiling InlineTokenField TokenTemplate.swift
[7/15] Compiling InlineTokenField TokenSegment.swift
[8/15] Compiling InlineTokenField TokenNSTextView.swift
[9/15] Compiling InlineTokenField TokenAttachmentCell.swift
[10/15] Compiling InlineTokenField InlineTokenFieldRow.swift
[11/15] Emitting module InlineTokenField
/Users/admin/builder/spi-builder-workspace/Sources/InlineTokenField/TokenStyle.swift:19:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TokenStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 3 | /// Configurable appearance for token pills. Pass an instance into `InlineTokenField`
 4 | /// and `InlineTokenFieldRow` to control font, padding, and colors.
 5 | public struct TokenStyle: Equatable {
   |               `- note: consider making struct 'TokenStyle' conform to the 'Sendable' protocol
 6 |     public var font: NSFont
 7 |     public var horizontalPadding: CGFloat
   :
17 |     public var showsCloseButton: Bool
18 |
19 |     public static let `default` = TokenStyle(
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TokenStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |         font: NSFont.systemFont(ofSize: NSFont.systemFontSize - 1, weight: .medium),
21 |         horizontalPadding: 7,
[12/15] Compiling InlineTokenField InlineTokenField.swift
[13/17] Compiling InlineTokenFieldDemo DemoApp.swift
[14/17] Emitting module InlineTokenFieldDemo
[14/17] Write Objects.LinkFileList
[15/17] Linking InlineTokenFieldDemo
[16/17] Applying InlineTokenFieldDemo
Build complete! (9.32s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "InlineTokenField",
  "name" : "InlineTokenField",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "InlineTokenField",
      "targets" : [
        "InlineTokenField"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "InlineTokenFieldDemo",
      "targets" : [
        "InlineTokenFieldDemo"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "InlineTokenFieldTests",
      "module_type" : "SwiftTarget",
      "name" : "InlineTokenFieldTests",
      "path" : "Tests/InlineTokenFieldTests",
      "sources" : [
        "TokenTemplateTests.swift"
      ],
      "target_dependencies" : [
        "InlineTokenField"
      ],
      "type" : "test"
    },
    {
      "c99name" : "InlineTokenFieldDemo",
      "module_type" : "SwiftTarget",
      "name" : "InlineTokenFieldDemo",
      "path" : "Sources/InlineTokenFieldDemo",
      "product_memberships" : [
        "InlineTokenFieldDemo"
      ],
      "sources" : [
        "DemoApp.swift"
      ],
      "target_dependencies" : [
        "InlineTokenField"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "InlineTokenField",
      "module_type" : "SwiftTarget",
      "name" : "InlineTokenField",
      "path" : "Sources/InlineTokenField",
      "product_memberships" : [
        "InlineTokenField",
        "InlineTokenFieldDemo"
      ],
      "sources" : [
        "InlineTokenField.swift",
        "InlineTokenFieldRow.swift",
        "TokenAttachmentCell.swift",
        "TokenNSTextView.swift",
        "TokenSegment.swift",
        "TokenStyle.swift",
        "TokenTemplate.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.