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 Routing, reference v0.0.1 (65b704), with Swift 6.1 for macOS (SPM) on 12 Jul 2025 18:41:23 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.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/n3d1117/Routing.git
Reference: v0.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/n3d1117/Routing
 * tag               v0.0.1     -> FETCH_HEAD
HEAD is now at 65b704d initial commit
Cloned https://github.com/n3d1117/Routing.git
Revision (git rev-parse @):
65b704dd60ad1bc28b11aa37fc523d00f457bd9e
SUCCESS checkout https://github.com/n3d1117/Routing.git at v0.0.1
========================================
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": "routing",
      "name": "Routing",
      "url": "https://github.com/n3d1117/Routing.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Routing",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/n3d1117/Routing.git
[1/39] Fetching routing
Fetched https://github.com/n3d1117/Routing.git from cache (0.59s)
Creating working copy for https://github.com/n3d1117/Routing.git
Working copy of https://github.com/n3d1117/Routing.git resolved at v0.0.1 (65b704d)
warning: '.resolve-product-dependencies': dependency 'routing' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/n3d1117/Routing.git
https://github.com/n3d1117/Routing.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Routing",
  "name" : "Routing",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Routing",
      "targets" : [
        "Routing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RoutingTests",
      "module_type" : "SwiftTarget",
      "name" : "RoutingTests",
      "path" : "Tests/RoutingTests",
      "sources" : [
        "DeepLinkingTests.swift",
        "RouterTests.swift",
        "StateRestorationTests.swift"
      ],
      "target_dependencies" : [
        "Routing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Routing",
      "module_type" : "SwiftTarget",
      "name" : "Routing",
      "path" : "Sources/Routing",
      "product_memberships" : [
        "Routing"
      ],
      "sources" : [
        "DeepLinking.swift",
        "Logger.swift",
        "Routable.swift",
        "Router.swift",
        "RouterConfiguration.swift",
        "RouterCore.swift",
        "RoutingView.swift",
        "View+Router.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/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/11] Compiling Routing RouterConfiguration.swift
[4/11] Compiling Routing RouterCore.swift
[5/11] Compiling Routing RoutingView.swift
[6/11] Compiling Routing Routable.swift
[7/11] Compiling Routing DeepLinking.swift
[8/11] Compiling Routing View+Router.swift
[9/11] Compiling Routing Router.swift
/Users/admin/builder/spi-builder-workspace/Sources/Routing/Router.swift:34:20: warning: capture of 'self' with non-sendable type 'Router<Destination>' in a '@Sendable' closure
 19 | /// Provides type-safe navigation methods for SwiftUI apps.
 20 | @propertyWrapper
 21 | public struct Router<Destination: Routable>: DynamicProperty {
    |               `- note: consider making generic struct 'Router' conform to the 'Sendable' protocol
 22 |     @State private var core = RouterCore<Destination>()
 23 |
    :
 32 |     public var projectedValue: Binding<[Destination]> {
 33 |         Binding(
 34 |             get: { core.path },
    |                    `- warning: capture of 'self' with non-sendable type 'Router<Destination>' in a '@Sendable' closure
 35 |             set: { core.path = $0 }
 36 |         )
/Users/admin/builder/spi-builder-workspace/Sources/Routing/Router.swift:35:20: warning: capture of 'self' with non-sendable type 'Router<Destination>' in a '@Sendable' closure
 19 | /// Provides type-safe navigation methods for SwiftUI apps.
 20 | @propertyWrapper
 21 | public struct Router<Destination: Routable>: DynamicProperty {
    |               `- note: consider making generic struct 'Router' conform to the 'Sendable' protocol
 22 |     @State private var core = RouterCore<Destination>()
 23 |
    :
 33 |         Binding(
 34 |             get: { core.path },
 35 |             set: { core.path = $0 }
    |                    `- warning: capture of 'self' with non-sendable type 'Router<Destination>' in a '@Sendable' closure
 36 |         )
 37 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Routing/Router.swift:43:20: warning: capture of 'self' with non-sendable type 'Router<Destination>' in a '@Sendable' closure
 19 | /// Provides type-safe navigation methods for SwiftUI apps.
 20 | @propertyWrapper
 21 | public struct Router<Destination: Routable>: DynamicProperty {
    |               `- note: consider making generic struct 'Router' conform to the 'Sendable' protocol
 22 |     @State private var core = RouterCore<Destination>()
 23 |
    :
 41 |     var presentedItemBinding: Binding<Destination?> {
 42 |         Binding(
 43 |             get: { core.presentedItem },
    |                    `- warning: capture of 'self' with non-sendable type 'Router<Destination>' in a '@Sendable' closure
 44 |             set: { core.presentedItem = $0 }
 45 |         )
/Users/admin/builder/spi-builder-workspace/Sources/Routing/Router.swift:44:20: warning: capture of 'self' with non-sendable type 'Router<Destination>' in a '@Sendable' closure
 19 | /// Provides type-safe navigation methods for SwiftUI apps.
 20 | @propertyWrapper
 21 | public struct Router<Destination: Routable>: DynamicProperty {
    |               `- note: consider making generic struct 'Router' conform to the 'Sendable' protocol
 22 |     @State private var core = RouterCore<Destination>()
 23 |
    :
 42 |         Binding(
 43 |             get: { core.presentedItem },
 44 |             set: { core.presentedItem = $0 }
    |                    `- warning: capture of 'self' with non-sendable type 'Router<Destination>' in a '@Sendable' closure
 45 |         )
 46 |     }
[10/11] Emitting module Routing
[11/11] Compiling Routing Logger.swift
Build complete! (9.84s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Routing",
  "name" : "Routing",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Routing",
      "targets" : [
        "Routing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RoutingTests",
      "module_type" : "SwiftTarget",
      "name" : "RoutingTests",
      "path" : "Tests/RoutingTests",
      "sources" : [
        "DeepLinkingTests.swift",
        "RouterTests.swift",
        "StateRestorationTests.swift"
      ],
      "target_dependencies" : [
        "Routing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Routing",
      "module_type" : "SwiftTarget",
      "name" : "Routing",
      "path" : "Sources/Routing",
      "product_memberships" : [
        "Routing"
      ],
      "sources" : [
        "DeepLinking.swift",
        "Logger.swift",
        "Routable.swift",
        "Router.swift",
        "RouterConfiguration.swift",
        "RouterCore.swift",
        "RoutingView.swift",
        "View+Router.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.