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

Failed to build NavigatorUI, reference 1.2.0 (31399c), with Swift 6.0 for macOS (SPM) on 11 Sep 2025 07:50:47 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/hmlongco/Navigator.git
Reference: 1.2.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/hmlongco/Navigator
 * tag               1.2.0      -> FETCH_HEAD
HEAD is now at 31399c4 Update CHANGELOG
Cloned https://github.com/hmlongco/Navigator.git
Revision (git rev-parse @):
31399c4cfc1b9c63ed260369176a01d327f8fa0f
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/hmlongco/Navigator.git at 1.2.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/hmlongco/Navigator.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/5] Copying PrivacyInfo.xcprivacy
[2/5] Write sources
[4/5] Write swift-version-5BDAB9E9C0126B9D.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/30] Emitting module NavigatorUI
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationAction.swift:24:1: error: 'nonisolated' modifier cannot be applied to this declaration
 22 | }
 23 |
 24 | nonisolated public struct NavigationAction: Hashable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 25 |
 26 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationCheckpoint.swift:47:1: error: 'nonisolated' modifier cannot be applied to this declaration
 45 | ///
 46 | /// Defining with `{ checkpoint() }` ensures a unique name for each variable instance.
 47 | nonisolated public struct NavigationCheckpoint<T>: Equatable, Hashable, Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 48 |
 49 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationConfiguration.swift:29:1: error: 'nonisolated' modifier cannot be applied to this declaration
 27 | /// }
 28 | /// ```
 29 | nonisolated public struct NavigationConfiguration {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 30 |
 31 |     /// Determines whether or not users should see animation steps when deep linking.
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:37:1: error: 'nonisolated' modifier cannot be applied to this declaration
 35 | }
 36 |
 37 | nonisolated public struct NavigationEvent: CustomStringConvertible {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 38 |
 39 |     let verbosity: Verbosity
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:63:5: error: 'nonisolated' modifier cannot be applied to this declaration
 61 | extension NavigationEvent {
 62 |
 63 |     nonisolated public enum Event: CustomStringConvertible {
    |     `- error: 'nonisolated' modifier cannot be applied to this declaration
 64 |
 65 |         case lifecycle(LifecycleEvent)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:93:9: error: 'nonisolated' modifier cannot be applied to this declaration
 91 |         }
 92 |
 93 |         nonisolated public enum LifecycleEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
 94 |             case configured
 95 |             case intialized
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:101:9: error: 'nonisolated' modifier cannot be applied to this declaration
 99 |         }
100 |
101 |         nonisolated public enum NavigationEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
102 |             case presenting(any NavigationDestination)
103 |             case pushing(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:108:9: error: 'nonisolated' modifier cannot be applied to this declaration
106 |         }
107 |
108 |         nonisolated public enum SendEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
109 |             case performing(any Hashable)
110 |             case sending(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:114:9: error: 'nonisolated' modifier cannot be applied to this declaration
112 |         }
113 |
114 |         nonisolated public enum CheckpointEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
115 |             case adding(String)
116 |             case removing(String)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationMethod.swift:35:1: error: 'nonisolated' modifier cannot be applied to this declaration
33 | /// > Important: When using `NavigationLink(value:label:)` the method will be ignored and SwiftUI will push
34 | /// the value onto the navigation stack as it would normally.
35 | nonisolated public enum NavigationMethod: Int, Codable {
   | `- error: 'nonisolated' modifier cannot be applied to this declaration
36 |     /// Pushes the destination onto the navigation stack path.
37 |     case push
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationRoutes.swift:10:1: error: 'nonisolated' modifier cannot be applied to this declaration
 8 | import SwiftUI
 9 |
10 | nonisolated public protocol NavigationRoutes: Hashable {}
   | `- error: 'nonisolated' modifier cannot be applied to this declaration
11 |
12 | extension Navigator {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationSceneStorage.swift:11:1: error: 'nonisolated' modifier cannot be applied to this declaration
  9 |
 10 | /// Provides state restoration storage for named ManagedNavigationControllers.
 11 | nonisolated internal struct NavigationSceneStorage: Codable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 12 |
 13 |     let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationState.swift:12:1: error: 'nonisolated' modifier cannot be applied to this declaration
 10 |
 11 | /// Persistent storage for Navigators.
 12 | nonisolated public class NavigationState: ObservableObject, @unchecked Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 13 |
 14 |     public enum Owner: Int {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/Navigator.swift:31:1: error: 'nonisolated' modifier cannot be applied to this declaration
 29 | /// @Environmnt(\.navigator) var navigator
 30 | /// ```
 31 | nonisolated public struct Navigator: @unchecked Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 32 |
 33 |     internal let environmentID: Int
[7/32] Compiling NavigatorUI ManagedPresentationView.swift
[8/32] Compiling NavigatorUI resource_bundle_accessor.swift
[9/32] Compiling NavigatorUI NavigationConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationConfiguration.swift:29:1: error: 'nonisolated' modifier cannot be applied to this declaration
 27 | /// }
 28 | /// ```
 29 | nonisolated public struct NavigationConfiguration {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 30 |
 31 |     /// Determines whether or not users should see animation steps when deep linking.
[10/32] Compiling NavigatorUI NavigationDestination.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationConfiguration.swift:29:1: error: 'nonisolated' modifier cannot be applied to this declaration
 27 | /// }
 28 | /// ```
 29 | nonisolated public struct NavigationConfiguration {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 30 |
 31 |     /// Determines whether or not users should see animation steps when deep linking.
[11/32] Compiling NavigatorUI NavigationDismiss.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationConfiguration.swift:29:1: error: 'nonisolated' modifier cannot be applied to this declaration
 27 | /// }
 28 | /// ```
 29 | nonisolated public struct NavigationConfiguration {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 30 |
 31 |     /// Determines whether or not users should see animation steps when deep linking.
[12/32] Compiling NavigatorUI NavigationViewRouting.swift
[13/32] Compiling NavigatorUI ManagedNavigationStack.swift
[14/32] Compiling NavigatorUI NavigationRoutes.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationRoutes.swift:10:1: error: 'nonisolated' modifier cannot be applied to this declaration
 8 | import SwiftUI
 9 |
10 | nonisolated public protocol NavigationRoutes: Hashable {}
   | `- error: 'nonisolated' modifier cannot be applied to this declaration
11 |
12 | extension Navigator {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationSceneStorage.swift:11:1: error: 'nonisolated' modifier cannot be applied to this declaration
  9 |
 10 | /// Provides state restoration storage for named ManagedNavigationControllers.
 11 | nonisolated internal struct NavigationSceneStorage: Codable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 12 |
 13 |     let name: String?
[15/32] Compiling NavigatorUI NavigationSceneStorage.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationRoutes.swift:10:1: error: 'nonisolated' modifier cannot be applied to this declaration
 8 | import SwiftUI
 9 |
10 | nonisolated public protocol NavigationRoutes: Hashable {}
   | `- error: 'nonisolated' modifier cannot be applied to this declaration
11 |
12 | extension Navigator {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationSceneStorage.swift:11:1: error: 'nonisolated' modifier cannot be applied to this declaration
  9 |
 10 | /// Provides state restoration storage for named ManagedNavigationControllers.
 11 | nonisolated internal struct NavigationSceneStorage: Codable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 12 |
 13 |     let name: String?
[16/32] Compiling NavigatorUI NavigationSend.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationRoutes.swift:10:1: error: 'nonisolated' modifier cannot be applied to this declaration
 8 | import SwiftUI
 9 |
10 | nonisolated public protocol NavigationRoutes: Hashable {}
   | `- error: 'nonisolated' modifier cannot be applied to this declaration
11 |
12 | extension Navigator {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationSceneStorage.swift:11:1: error: 'nonisolated' modifier cannot be applied to this declaration
  9 |
 10 | /// Provides state restoration storage for named ManagedNavigationControllers.
 11 | nonisolated internal struct NavigationSceneStorage: Codable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 12 |
 13 |     let name: String?
[17/32] Compiling NavigatorUI NavigationState.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationState.swift:12:1: error: 'nonisolated' modifier cannot be applied to this declaration
 10 |
 11 | /// Persistent storage for Navigators.
 12 | nonisolated public class NavigationState: ObservableObject, @unchecked Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 13 |
 14 |     public enum Owner: Int {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/Navigator.swift:31:1: error: 'nonisolated' modifier cannot be applied to this declaration
 29 | /// @Environmnt(\.navigator) var navigator
 30 | /// ```
 31 | nonisolated public struct Navigator: @unchecked Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 32 |
 33 |     internal let environmentID: Int
[18/32] Compiling NavigatorUI Navigator.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationState.swift:12:1: error: 'nonisolated' modifier cannot be applied to this declaration
 10 |
 11 | /// Persistent storage for Navigators.
 12 | nonisolated public class NavigationState: ObservableObject, @unchecked Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 13 |
 14 |     public enum Owner: Int {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/Navigator.swift:31:1: error: 'nonisolated' modifier cannot be applied to this declaration
 29 | /// @Environmnt(\.navigator) var navigator
 30 | /// ```
 31 | nonisolated public struct Navigator: @unchecked Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 32 |
 33 |     internal let environmentID: Int
[19/32] Compiling NavigatorUI NavigationLink+Navigator.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationState.swift:12:1: error: 'nonisolated' modifier cannot be applied to this declaration
 10 |
 11 | /// Persistent storage for Navigators.
 12 | nonisolated public class NavigationState: ObservableObject, @unchecked Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 13 |
 14 |     public enum Owner: Int {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/Navigator.swift:31:1: error: 'nonisolated' modifier cannot be applied to this declaration
 29 | /// @Environmnt(\.navigator) var navigator
 30 | /// ```
 31 | nonisolated public struct Navigator: @unchecked Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 32 |
 33 |     internal let environmentID: Int
[20/32] Compiling NavigatorUI AnyNavigationDestination.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationAction.swift:24:1: error: 'nonisolated' modifier cannot be applied to this declaration
 22 | }
 23 |
 24 | nonisolated public struct NavigationAction: Hashable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 25 |
 26 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationCheckpoint.swift:47:1: error: 'nonisolated' modifier cannot be applied to this declaration
 45 | ///
 46 | /// Defining with `{ checkpoint() }` ensures a unique name for each variable instance.
 47 | nonisolated public struct NavigationCheckpoint<T>: Equatable, Hashable, Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 48 |
 49 |     public let name: String
[21/32] Compiling NavigatorUI NavigationAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationAction.swift:24:1: error: 'nonisolated' modifier cannot be applied to this declaration
 22 | }
 23 |
 24 | nonisolated public struct NavigationAction: Hashable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 25 |
 26 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationCheckpoint.swift:47:1: error: 'nonisolated' modifier cannot be applied to this declaration
 45 | ///
 46 | /// Defining with `{ checkpoint() }` ensures a unique name for each variable instance.
 47 | nonisolated public struct NavigationCheckpoint<T>: Equatable, Hashable, Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 48 |
 49 |     public let name: String
[22/32] Compiling NavigatorUI NavigationCheckpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationAction.swift:24:1: error: 'nonisolated' modifier cannot be applied to this declaration
 22 | }
 23 |
 24 | nonisolated public struct NavigationAction: Hashable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 25 |
 26 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationCheckpoint.swift:47:1: error: 'nonisolated' modifier cannot be applied to this declaration
 45 | ///
 46 | /// Defining with `{ checkpoint() }` ensures a unique name for each variable instance.
 47 | nonisolated public struct NavigationCheckpoint<T>: Equatable, Hashable, Sendable {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 48 |
 49 |     public let name: String
[23/32] Compiling NavigatorUI Binding+Extension.swift
[24/32] Compiling NavigatorUI Callback.swift
[25/32] Compiling NavigatorUI NavigationURLHandler.swift
[26/32] Compiling NavigatorUI NavigationViewProviding.swift
[27/32] Compiling NavigatorUI NavigationMethod.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationMethod.swift:35:1: error: 'nonisolated' modifier cannot be applied to this declaration
33 | /// > Important: When using `NavigationLink(value:label:)` the method will be ignored and SwiftUI will push
34 | /// the value onto the navigation stack as it would normally.
35 | nonisolated public enum NavigationMethod: Int, Codable {
   | `- error: 'nonisolated' modifier cannot be applied to this declaration
36 |     /// Pushes the destination onto the navigation stack path.
37 |     case push
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationOperations.swift:241:49: error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
239 |     internal func checkKnown(destination: Any) {
240 |         #if DEBUG
241 |         guard let destination = destination as? NavigationDestination, known(destination: destination) == false else {
    |                                                 `- error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
242 |             return
243 |         }
[28/32] Compiling NavigatorUI NavigationOperations.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationMethod.swift:35:1: error: 'nonisolated' modifier cannot be applied to this declaration
33 | /// > Important: When using `NavigationLink(value:label:)` the method will be ignored and SwiftUI will push
34 | /// the value onto the navigation stack as it would normally.
35 | nonisolated public enum NavigationMethod: Int, Codable {
   | `- error: 'nonisolated' modifier cannot be applied to this declaration
36 |     /// Pushes the destination onto the navigation stack path.
37 |     case push
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationOperations.swift:241:49: error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
239 |     internal func checkKnown(destination: Any) {
240 |         #if DEBUG
241 |         guard let destination = destination as? NavigationDestination, known(destination: destination) == false else {
    |                                                 `- error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
242 |             return
243 |         }
[29/32] Compiling NavigatorUI NavigationPresentation.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationMethod.swift:35:1: error: 'nonisolated' modifier cannot be applied to this declaration
33 | /// > Important: When using `NavigationLink(value:label:)` the method will be ignored and SwiftUI will push
34 | /// the value onto the navigation stack as it would normally.
35 | nonisolated public enum NavigationMethod: Int, Codable {
   | `- error: 'nonisolated' modifier cannot be applied to this declaration
36 |     /// Pushes the destination onto the navigation stack path.
37 |     case push
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationOperations.swift:241:49: error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
239 |     internal func checkKnown(destination: Any) {
240 |         #if DEBUG
241 |         guard let destination = destination as? NavigationDestination, known(destination: destination) == false else {
    |                                                 `- error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
242 |             return
243 |         }
[30/32] Compiling NavigatorUI NavigationEventLogging.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:37:1: error: 'nonisolated' modifier cannot be applied to this declaration
 35 | }
 36 |
 37 | nonisolated public struct NavigationEvent: CustomStringConvertible {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 38 |
 39 |     let verbosity: Verbosity
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:63:5: error: 'nonisolated' modifier cannot be applied to this declaration
 61 | extension NavigationEvent {
 62 |
 63 |     nonisolated public enum Event: CustomStringConvertible {
    |     `- error: 'nonisolated' modifier cannot be applied to this declaration
 64 |
 65 |         case lifecycle(LifecycleEvent)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:93:9: error: 'nonisolated' modifier cannot be applied to this declaration
 91 |         }
 92 |
 93 |         nonisolated public enum LifecycleEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
 94 |             case configured
 95 |             case intialized
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:101:9: error: 'nonisolated' modifier cannot be applied to this declaration
 99 |         }
100 |
101 |         nonisolated public enum NavigationEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
102 |             case presenting(any NavigationDestination)
103 |             case pushing(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:108:9: error: 'nonisolated' modifier cannot be applied to this declaration
106 |         }
107 |
108 |         nonisolated public enum SendEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
109 |             case performing(any Hashable)
110 |             case sending(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:114:9: error: 'nonisolated' modifier cannot be applied to this declaration
112 |         }
113 |
114 |         nonisolated public enum CheckpointEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
115 |             case adding(String)
116 |             case removing(String)
[31/32] Compiling NavigatorUI NavigationFind.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:37:1: error: 'nonisolated' modifier cannot be applied to this declaration
 35 | }
 36 |
 37 | nonisolated public struct NavigationEvent: CustomStringConvertible {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 38 |
 39 |     let verbosity: Verbosity
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:63:5: error: 'nonisolated' modifier cannot be applied to this declaration
 61 | extension NavigationEvent {
 62 |
 63 |     nonisolated public enum Event: CustomStringConvertible {
    |     `- error: 'nonisolated' modifier cannot be applied to this declaration
 64 |
 65 |         case lifecycle(LifecycleEvent)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:93:9: error: 'nonisolated' modifier cannot be applied to this declaration
 91 |         }
 92 |
 93 |         nonisolated public enum LifecycleEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
 94 |             case configured
 95 |             case intialized
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:101:9: error: 'nonisolated' modifier cannot be applied to this declaration
 99 |         }
100 |
101 |         nonisolated public enum NavigationEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
102 |             case presenting(any NavigationDestination)
103 |             case pushing(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:108:9: error: 'nonisolated' modifier cannot be applied to this declaration
106 |         }
107 |
108 |         nonisolated public enum SendEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
109 |             case performing(any Hashable)
110 |             case sending(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:114:9: error: 'nonisolated' modifier cannot be applied to this declaration
112 |         }
113 |
114 |         nonisolated public enum CheckpointEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
115 |             case adding(String)
116 |             case removing(String)
[32/32] Compiling NavigatorUI NavigationLocked.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:37:1: error: 'nonisolated' modifier cannot be applied to this declaration
 35 | }
 36 |
 37 | nonisolated public struct NavigationEvent: CustomStringConvertible {
    | `- error: 'nonisolated' modifier cannot be applied to this declaration
 38 |
 39 |     let verbosity: Verbosity
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:63:5: error: 'nonisolated' modifier cannot be applied to this declaration
 61 | extension NavigationEvent {
 62 |
 63 |     nonisolated public enum Event: CustomStringConvertible {
    |     `- error: 'nonisolated' modifier cannot be applied to this declaration
 64 |
 65 |         case lifecycle(LifecycleEvent)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:93:9: error: 'nonisolated' modifier cannot be applied to this declaration
 91 |         }
 92 |
 93 |         nonisolated public enum LifecycleEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
 94 |             case configured
 95 |             case intialized
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:101:9: error: 'nonisolated' modifier cannot be applied to this declaration
 99 |         }
100 |
101 |         nonisolated public enum NavigationEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
102 |             case presenting(any NavigationDestination)
103 |             case pushing(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:108:9: error: 'nonisolated' modifier cannot be applied to this declaration
106 |         }
107 |
108 |         nonisolated public enum SendEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
109 |             case performing(any Hashable)
110 |             case sending(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:114:9: error: 'nonisolated' modifier cannot be applied to this declaration
112 |         }
113 |
114 |         nonisolated public enum CheckpointEvent {
    |         `- error: 'nonisolated' modifier cannot be applied to this declaration
115 |             case adding(String)
116 |             case removing(String)
Fetching https://github.com/apple/swift-docc-plugin
[1/2094] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.19s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.5 (2.99s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3507] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.08s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.59s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.5
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
BUILD FAILURE 6.0 macosSpm