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 DynamicUI, reference main (32b462), with Swift 6.0 for macOS (SPM) on 13 Nov 2024 13:40:59 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.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/0xWDG/DynamicUI.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/0xWDG/DynamicUI
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 32b4622 Create FUNDING.yml
Cloned https://github.com/0xWDG/DynamicUI.git
Revision (git rev-parse @):
32b4622019111361e20064236737e4b607041acb
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/0xWDG/DynamicUI.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": "dynamicui",
      "name": "DynamicUI",
      "url": "https://github.com/0xWDG/DynamicUI.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/DynamicUI",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/0xWDG/DynamicUI.git
[1/16410] Fetching dynamicui
Fetched https://github.com/0xWDG/DynamicUI.git from cache (1.93s)
Creating working copy for https://github.com/0xWDG/DynamicUI.git
Working copy of https://github.com/0xWDG/DynamicUI.git resolved at main (32b4622)
warning: '.resolve-product-dependencies': dependency 'dynamicui' 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/0xWDG/DynamicUI.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/32] Emitting module DynamicUI
[4/35] Compiling DynamicUI DynamicUI.swift
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:21:20: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
19 |     func onChange(_ callback: @escaping (Value) -> Void) -> Binding<Value> {
20 |         Binding(
21 |             get: { self.wrappedValue },
   |                    `- warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:23:17: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
21 |             get: { self.wrappedValue },
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
   |                 `- warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
24 |                 callback(newValue)
25 |             }
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:24:17: warning: capture of 'callback' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
24 |                 callback(newValue)
   |                 |- warning: capture of 'callback' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
25 |             }
26 |         )
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/View.modifiers.swift:60:45: warning: 'frame()' is deprecated: Please pass one or more parameters.
58 |                 // width: <#0#> height: <#0#>
59 |                 guard #available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *) else { break }
60 |                 tempView = AnyView(tempView.frame())
   |                                             `- warning: 'frame()' is deprecated: Please pass one or more parameters.
61 |
62 |             case "padding":
[5/35] Compiling DynamicUI DynamicUIComponent.swift
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:21:20: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
19 |     func onChange(_ callback: @escaping (Value) -> Void) -> Binding<Value> {
20 |         Binding(
21 |             get: { self.wrappedValue },
   |                    `- warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:23:17: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
21 |             get: { self.wrappedValue },
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
   |                 `- warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
24 |                 callback(newValue)
25 |             }
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:24:17: warning: capture of 'callback' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
24 |                 callback(newValue)
   |                 |- warning: capture of 'callback' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
25 |             }
26 |         )
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/View.modifiers.swift:60:45: warning: 'frame()' is deprecated: Please pass one or more parameters.
58 |                 // width: <#0#> height: <#0#>
59 |                 guard #available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *) else { break }
60 |                 tempView = AnyView(tempView.frame())
   |                                             `- warning: 'frame()' is deprecated: Please pass one or more parameters.
61 |
62 |             case "padding":
[6/35] Compiling DynamicUI Binding.onChange.swift
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:21:20: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
19 |     func onChange(_ callback: @escaping (Value) -> Void) -> Binding<Value> {
20 |         Binding(
21 |             get: { self.wrappedValue },
   |                    `- warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:23:17: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
21 |             get: { self.wrappedValue },
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
   |                 `- warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
24 |                 callback(newValue)
25 |             }
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:24:17: warning: capture of 'callback' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
24 |                 callback(newValue)
   |                 |- warning: capture of 'callback' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
25 |             }
26 |         )
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/View.modifiers.swift:60:45: warning: 'frame()' is deprecated: Please pass one or more parameters.
58 |                 // width: <#0#> height: <#0#>
59 |                 guard #available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *) else { break }
60 |                 tempView = AnyView(tempView.frame())
   |                                             `- warning: 'frame()' is deprecated: Please pass one or more parameters.
61 |
62 |             case "padding":
[7/35] Compiling DynamicUI View.modifiers.swift
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:21:20: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
19 |     func onChange(_ callback: @escaping (Value) -> Void) -> Binding<Value> {
20 |         Binding(
21 |             get: { self.wrappedValue },
   |                    `- warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:23:17: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
21 |             get: { self.wrappedValue },
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
   |                 `- warning: capture of 'self' with non-sendable type 'Binding<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
24 |                 callback(newValue)
25 |             }
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/Binding.onChange.swift:24:17: warning: capture of 'callback' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
22 |             set: { newValue in
23 |                 self.wrappedValue = newValue
24 |                 callback(newValue)
   |                 |- warning: capture of 'callback' with non-sendable type '(Value) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
25 |             }
26 |         )
/Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/Extensions/View.modifiers.swift:60:45: warning: 'frame()' is deprecated: Please pass one or more parameters.
58 |                 // width: <#0#> height: <#0#>
59 |                 guard #available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *) else { break }
60 |                 tempView = AnyView(tempView.frame())
   |                                             `- warning: 'frame()' is deprecated: Please pass one or more parameters.
61 |
62 |             case "padding":
[8/35] Compiling DynamicUI DynamicVSplitView.swift
[9/35] Compiling DynamicUI DynamicVStack.swift
[10/35] Compiling DynamicUI DynamicZStack.swift
[11/35] Compiling DynamicUI DynamicTextEditor.swift
[12/35] Compiling DynamicUI DynamicTextField.swift
[13/35] Compiling DynamicUI DynamicToggle.swift
[14/35] Compiling DynamicUI DynamicDivider.swift
[15/35] Compiling DynamicUI DynamicForm.swift
[16/35] Compiling DynamicUI DynamicGauge.swift
[17/35] Compiling DynamicUI DynamicSpacer.swift
[18/35] Compiling DynamicUI DynamicTEMPLATE.swift
[19/35] Compiling DynamicUI DynamicText.swift
[20/35] Compiling DynamicUI DynamicScrollView.swift
[21/35] Compiling DynamicUI DynamicSecureTextField.swift
[22/35] Compiling DynamicUI DynamicSlider.swift
[23/35] Compiling DynamicUI DynamicGroupBox.swift
[24/35] Compiling DynamicUI DynamicHSplitView.swift
[25/35] Compiling DynamicUI DynamicHStack.swift
[26/35] Compiling DynamicUI DynamicNavigationView.swift
[27/35] Compiling DynamicUI DynamicPicker.swift
[28/35] Compiling DynamicUI DynamicProgressView.swift
[29/35] Compiling DynamicUI DynamicImage.swift
[30/35] Compiling DynamicUI DynamicLabel.swift
[31/35] Compiling DynamicUI DynamicList.swift
[32/35] Compiling DynamicUI AnyCodable.swift
[33/35] Compiling DynamicUI DynamicUIHelper.swift
[34/35] Compiling DynamicUI DynamicButton.swift
[35/35] Compiling DynamicUI DynamicDisclosureGroup.swift
Build complete! (27.60s)
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/DynamicUI/PrivacyInfo.xcprivacy
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "DynamicUI",
  "name" : "DynamicUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "DynamicUI",
      "targets" : [
        "DynamicUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "DynamicUITests",
      "module_type" : "SwiftTarget",
      "name" : "DynamicUITests",
      "path" : "Tests/DynamicUITests",
      "sources" : [
        "DynamicUITests.swift"
      ],
      "target_dependencies" : [
        "DynamicUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DynamicUI",
      "module_type" : "SwiftTarget",
      "name" : "DynamicUI",
      "path" : "Sources/DynamicUI",
      "product_memberships" : [
        "DynamicUI"
      ],
      "sources" : [
        "DynamicUI.swift",
        "DynamicUIComponent.swift",
        "Extensions/Binding.onChange.swift",
        "Extensions/View.modifiers.swift",
        "Helpers/AnyCodable.swift",
        "Helpers/DynamicUIHelper.swift",
        "Views/DynamicButton.swift",
        "Views/DynamicDisclosureGroup.swift",
        "Views/DynamicDivider.swift",
        "Views/DynamicForm.swift",
        "Views/DynamicGauge.swift",
        "Views/DynamicGroupBox.swift",
        "Views/DynamicHSplitView.swift",
        "Views/DynamicHStack.swift",
        "Views/DynamicImage.swift",
        "Views/DynamicLabel.swift",
        "Views/DynamicList.swift",
        "Views/DynamicNavigationView.swift",
        "Views/DynamicPicker.swift",
        "Views/DynamicProgressView.swift",
        "Views/DynamicScrollView.swift",
        "Views/DynamicSecureTextField.swift",
        "Views/DynamicSlider.swift",
        "Views/DynamicSpacer.swift",
        "Views/DynamicTEMPLATE.swift",
        "Views/DynamicText.swift",
        "Views/DynamicTextEditor.swift",
        "Views/DynamicTextField.swift",
        "Views/DynamicToggle.swift",
        "Views/DynamicVSplitView.swift",
        "Views/DynamicVStack.swift",
        "Views/DynamicZStack.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/0xwdg/dynamicui/main
Repository:               0xWDG/DynamicUI
Swift version used:       6.0
Target:                   OSLogViewer
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.35s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (2.49s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3182] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.89s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.60s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling Snippets SnippetParser.swift
[7/53] Emitting module SymbolKit
[8/57] Emitting module Snippets
[9/57] Compiling Snippets Snippet.swift
[10/57] Compiling SymbolKit GenericConstraint.swift
[11/57] Compiling SymbolKit GenericParameter.swift
[12/57] Compiling SymbolKit Generics.swift
[13/57] Compiling SymbolKit Namespace.swift
[14/57] Compiling SymbolKit Mixin+Equals.swift
[15/57] Compiling SymbolKit Mixin+Hash.swift
[16/57] Compiling SymbolKit Mixin.swift
[17/57] Compiling SymbolKit LineList.swift
[18/57] Compiling SymbolKit Position.swift
[19/57] Compiling SymbolKit SourceRange.swift
[20/57] Compiling SymbolKit Metadata.swift
[21/57] Compiling SymbolKit Module.swift
[22/57] Compiling SymbolKit OperatingSystem.swift
[23/57] Compiling SymbolKit Platform.swift
[24/57] Compiling SymbolKit SemanticVersion.swift
[25/57] Compiling SymbolKit AccessControl.swift
[26/57] Compiling SymbolKit Availability.swift
[27/57] Compiling SymbolKit AvailabilityItem.swift
[28/57] Compiling SymbolKit Domain.swift
[29/57] Compiling SymbolKit Identifier.swift
[30/57] Compiling SymbolKit KindIdentifier.swift
[31/57] Compiling SymbolKit Location.swift
[32/57] Compiling SymbolKit Mutability.swift
[33/57] Compiling SymbolKit Names.swift
[34/57] Compiling SymbolKit SPI.swift
[35/57] Compiling SymbolKit Snippet.swift
[36/57] Compiling SymbolKit Extension.swift
[37/57] Compiling SymbolKit Relationship.swift
[38/57] Compiling SymbolKit RelationshipKind.swift
[39/57] Compiling SymbolKit SourceOrigin.swift
[40/57] Compiling SymbolKit GenericConstraints.swift
[41/57] Compiling SymbolKit Swift.swift
[42/57] Compiling SymbolKit DeclarationFragments.swift
[43/57] Compiling SymbolKit Fragment.swift
[44/57] Compiling SymbolKit FragmentKind.swift
[45/57] Compiling SymbolKit FunctionParameter.swift
[46/57] Compiling SymbolKit FunctionSignature.swift
[47/57] Compiling SymbolKit Symbol.swift
[48/57] Compiling SymbolKit SymbolKind.swift
[49/57] Compiling SymbolKit SymbolGraph.swift
[50/57] Compiling SymbolKit GraphCollector.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.01s)
error: no target named 'OSLogViewer'
compatible targets: 'DynamicUI'
       1
0	/Users/admin/builder/spi-builder-workspace/.docs/0xwdg/dynamicui/main
✅  Doc result (uploading) reported
Error while generating docs: Error Domain=NSCocoaErrorDomain Code=260 "The folder “documentation” doesn’t exist." UserInfo={NSFilePath=/Users/admin/builder/spi-builder-workspace/.docs/0xwdg/dynamicui/main/documentation, NSUserStringVariant=(
    Folder
), NSUnderlyingError=0x6000039a6130 {Error Domain=NSOSStatusErrorDomain Code=-43 "fnfErr: File not found"}}
✅  Doc result (failed) reported
Done.