The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of DynamicUI, reference main (f022b7), with Swift 6.1 for macOS (SPM) on 8 Nov 2025 20:22:09 UTC.

Swift 6 data race errors: 0

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.68.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 f022b7a Updated DynamicUI Modifiers Documentation and Code
Cloned https://github.com/0xWDG/DynamicUI.git
Revision (git rev-parse @):
f022b7a0ce2785d21dafa1cf6a5caef40a294618
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/0xWDG/DynamicUI.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/0xWDG/DynamicUI.git
https://github.com/0xWDG/DynamicUI.git
{
  "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/DynamicGroup.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/DynamicSection.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"
}
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/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/34] Emitting module DynamicUI
[4/37] 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
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
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
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
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
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
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
25 |             }
26 |         )
[5/37] 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
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
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
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
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
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
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
25 |             }
26 |         )
[6/37] 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
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
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
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
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
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
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
25 |             }
26 |         )
[7/37] 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
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
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
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
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
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
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
25 |             }
26 |         )
[8/37] Compiling DynamicUI AnyCodable.swift
[9/37] Compiling DynamicUI DynamicUIHelper.swift
[10/37] Compiling DynamicUI DynamicButton.swift
[11/37] Compiling DynamicUI DynamicDisclosureGroup.swift
[12/37] Compiling DynamicUI DynamicTextEditor.swift
[13/37] Compiling DynamicUI DynamicTextField.swift
[14/37] Compiling DynamicUI DynamicToggle.swift
[15/37] Compiling DynamicUI DynamicSection.swift
[16/37] Compiling DynamicUI DynamicSecureTextField.swift
[17/37] Compiling DynamicUI DynamicSlider.swift
[18/37] Compiling DynamicUI DynamicVSplitView.swift
[19/37] Compiling DynamicUI DynamicVStack.swift
[20/37] Compiling DynamicUI DynamicZStack.swift
[21/37] Compiling DynamicUI DynamicSpacer.swift
[22/37] Compiling DynamicUI DynamicTEMPLATE.swift
[23/37] Compiling DynamicUI DynamicText.swift
[24/37] Compiling DynamicUI DynamicDivider.swift
[25/37] Compiling DynamicUI DynamicForm.swift
[26/37] Compiling DynamicUI DynamicGauge.swift
[27/37] Compiling DynamicUI DynamicGroup.swift
[28/37] Compiling DynamicUI DynamicPicker.swift
[29/37] Compiling DynamicUI DynamicProgressView.swift
[30/37] Compiling DynamicUI DynamicScrollView.swift
[31/37] Compiling DynamicUI DynamicGroupBox.swift
[32/37] Compiling DynamicUI DynamicHSplitView.swift
[33/37] Compiling DynamicUI DynamicHStack.swift
[34/37] Compiling DynamicUI DynamicImage.swift
[35/37] Compiling DynamicUI DynamicLabel.swift
[36/37] Compiling DynamicUI DynamicList.swift
[37/37] Compiling DynamicUI DynamicNavigationView.swift
Build complete! (11.72s)
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/DynamicGroup.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/DynamicSection.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"
}
Done.