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 SwiftXcodeProj, reference 8.11.0 (182a1f), with Swift 6.1 for macOS (SPM) on 30 Apr 2025 02:27:29 UTC.

Swift 6 data race errors: 28

Build Command

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

Build Log

  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[91/110] Compiling SwiftXcodeProj PBXTarget.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[92/110] Compiling SwiftXcodeProj PBXTargetDependency.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[93/110] Compiling SwiftXcodeProj WorkspaceSettings.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[94/110] Compiling SwiftXcodeProj XCBreakpointList.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[95/110] Compiling SwiftXcodeProj XCDebugger.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[96/110] Compiling SwiftXcodeProj XCSharedData.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[97/110] Compiling SwiftXcodeProj XCUserData.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[98/110] Compiling SwiftXcodeProj Xcode.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[99/110] Compiling SwiftXcodeProj XcodeProj.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[100/110] Compiling SwiftXcodeProj Writable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[101/110] Compiling SwiftXcodeProj Errors.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
[102/110] Compiling SwiftXcodeProj AEXML+XcodeFormat.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
[103/110] Compiling SwiftXcodeProj Array+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
[104/110] Compiling SwiftXcodeProj Bool+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
[105/110] Compiling SwiftXcodeProj Dictionary+Enumerate.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
[106/110] Compiling SwiftXcodeProj Dictionary+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
[107/110] Compiling SwiftXcodeProj KeyedDecodingContainer+Additions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
[108/110] Compiling SwiftXcodeProj NSRecursiveLock+Sync.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
[109/110] Compiling SwiftXcodeProj Path+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
[110/110] Compiling SwiftXcodeProj String+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:12:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 10 | /// - xcworkspaceNotFound: the workspace cannot be found at the given path.
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | // MARK: - Xcodeproj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:13:10: warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 11 | public enum XCodeProjError: Error, CustomStringConvertible {
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
    |          `- warning: associated value 'pbxprojNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 14 |     case xcworkspaceNotFound(path: Path)
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:14:10: warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 12 |     case notFound(path: Path)
 13 |     case pbxprojNotFound(path: Path)
 14 |     case xcworkspaceNotFound(path: Path)
    |          `- warning: associated value 'xcworkspaceNotFound(path:)' of 'Sendable'-conforming enum 'XCodeProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 15 |
 16 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:34:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 32 | /// - notFound: the share data hasn't been found.
 33 | public enum XCSharedDataError: Error, CustomStringConvertible {
 34 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSharedDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 35 |
 36 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:50:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 48 | /// - notFound: the user data hasn't been found.
 49 | public enum XCUserDataError: Error, CustomStringConvertible {
 50 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCUserDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 51 |
 52 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:66:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 64 | /// - notFound: the project cannot be found.
 65 | public enum XCWorkspaceError: Error, CustomStringConvertible {
 66 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 67 |
 68 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:82:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 80 | /// - notFound: returned when the .xcworkspacedata cannot be found.
 81 | public enum XCWorkspaceDataError: Error, CustomStringConvertible {
 82 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCWorkspaceDataError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 83 |
 84 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:98:10: warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 96 | /// - unexistingFile: the file doesn't exist.
 97 | public enum XcodeprojEditingError: Error, CustomStringConvertible {
 98 |     case unexistingFile(Path)
    |          `- warning: associated value 'unexistingFile' of 'Sendable'-conforming enum 'XcodeprojEditingError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
 99 |
100 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:178:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
176 | /// - notFound: the .pbxproj cannot be found at the given path.
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
180 |     case targetNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:179:10: warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
177 | enum PBXProjError: Error, CustomStringConvertible, Equatable {
178 |     case notFound(path: Path)
179 |     case invalidGroupPath(sourceRoot: Path, elementPath: String?)
    |          `- warning: associated value 'invalidGroupPath(sourceRoot:elementPath:)' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
180 |     case targetNotFound(targetName: String)
181 |     case frameworksBuildPhaseNotFound(targetName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:183:10: warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
181 |     case frameworksBuildPhaseNotFound(targetName: String)
182 |     case sourcesBuildPhaseNotFound(targetName: String)
183 |     case pathIsAbsolute(Path)
    |          `- warning: associated value 'pathIsAbsolute' of 'Sendable'-conforming enum 'PBXProjError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
184 |     case multipleLocalPackages(productName: String)
185 |     case multipleRemotePackages(productName: String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:215:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
213 | /// - missing: returned when there's a property missing in the Breakpoints_v2.xcbkptlist.
214 | public enum XCBreakpointListError: Error, CustomStringConvertible {
215 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCBreakpointListError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
216 |     case missing(property: String)
217 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Errors/Errors.swift:234:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
232 | /// - notFound: returned when the configuration file couldn't be found.
233 | public enum XCConfigError: Error, CustomStringConvertible {
234 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCConfigError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
235 |     public var description: String {
236 |         switch self {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
Fetching https://github.com/kylef/PathKit.git
Fetching https://github.com/tadija/AEXML.git
[1/1411] Fetching pathkit
[227/3538] Fetching pathkit, aexml
Fetched https://github.com/tadija/AEXML.git from cache (0.93s)
Fetched https://github.com/kylef/PathKit.git from cache (0.93s)
Computing version for https://github.com/tadija/AEXML.git
Computed https://github.com/tadija/AEXML.git at 4.6.1 (1.55s)
Computing version for https://github.com/kylef/PathKit.git
Computed https://github.com/kylef/PathKit.git at 1.0.1 (3.22s)
Fetching https://github.com/kylef/Spectre.git
[1/1021] Fetching spectre
Fetched https://github.com/kylef/Spectre.git from cache (0.86s)
Computing version for https://github.com/kylef/Spectre.git
Computed https://github.com/kylef/Spectre.git at 0.10.1 (1.49s)
Creating working copy for https://github.com/kylef/PathKit.git
Working copy of https://github.com/kylef/PathKit.git resolved at 1.0.1
Creating working copy for https://github.com/tadija/AEXML.git
Working copy of https://github.com/tadija/AEXML.git resolved at 4.6.1
Creating working copy for https://github.com/kylef/Spectre.git
Working copy of https://github.com/kylef/Spectre.git resolved at 0.10.1
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/9] Emitting module AEXML
[3/9] Compiling AEXML Options.swift
[4/9] Compiling AEXML Parser.swift
[5/9] Compiling AEXML Document.swift
[6/9] Compiling AEXML Element.swift
[7/9] Compiling AEXML Error.swift
[8/9] Emitting module PathKit
[9/9] Compiling PathKit PathKit.swift
[10/98] Emitting module SwiftXcodeProj
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[11/107] Compiling SwiftXcodeProj PBXProject.swift
[12/107] Compiling SwiftXcodeProj Equality.generated.swift
[13/107] Compiling SwiftXcodeProj Sourcery.swift
[14/107] Compiling SwiftXcodeProj XCRemoteSwiftPackageReference.swift
[15/107] Compiling SwiftXcodeProj XCSwiftPackageProductDependency.swift
[16/107] Compiling SwiftXcodeProj PBXAggregateTarget.swift
[17/107] Compiling SwiftXcodeProj PBXLegacyTarget.swift
[18/107] Compiling SwiftXcodeProj PBXNativeTarget.swift
[19/107] Compiling SwiftXcodeProj PBXProductType.swift
[20/107] Compiling SwiftXcodeProj PBXReferenceProxy.swift
[21/107] Compiling SwiftXcodeProj XCScheme+TestPlanReference.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[22/107] Compiling SwiftXcodeProj XCScheme+TestableReference.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[23/107] Compiling SwiftXcodeProj XCScheme.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[24/107] Compiling SwiftXcodeProj XCSchemeManagement.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[25/107] Compiling SwiftXcodeProj BuildSettingsProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[26/107] Compiling SwiftXcodeProj CommentedString.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[27/107] Compiling SwiftXcodeProj Decoders.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[28/107] Compiling SwiftXcodeProj JSONDecoding.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[29/107] Compiling SwiftXcodeProj PBXBatchUpdater.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[30/107] Compiling SwiftXcodeProj PBXShellScriptBuildPhase.swift
[31/107] Compiling SwiftXcodeProj PBXSourcesBuildPhase.swift
[32/107] Compiling SwiftXcodeProj BuildSettings.swift
[33/107] Compiling SwiftXcodeProj XCBuildConfiguration.swift
[34/107] Compiling SwiftXcodeProj XCConfigurationList.swift
[35/107] Compiling SwiftXcodeProj PBXContainerItem.swift
[36/107] Compiling SwiftXcodeProj PBXContainerItemProxy.swift
[37/107] Compiling SwiftXcodeProj PBXFileElement.swift
[38/107] Compiling SwiftXcodeProj PBXFileReference.swift
[39/107] Compiling SwiftXcodeProj PBXGroup.swift
[40/107] Compiling SwiftXcodeProj XCScheme+LocationScenarioReference.swift
[41/107] Compiling SwiftXcodeProj XCScheme+PathRunnable.swift
[42/107] Compiling SwiftXcodeProj XCScheme+ProfileAction.swift
[43/107] Compiling SwiftXcodeProj XCScheme+RemoteRunnable.swift
[44/107] Compiling SwiftXcodeProj XCScheme+Runnable.swift
[45/107] Compiling SwiftXcodeProj XCScheme+SerialAction.swift
[46/107] Compiling SwiftXcodeProj XCScheme+StoreKitConfigurationFileReference.swift
[47/107] Compiling SwiftXcodeProj XCScheme+TestAction.swift
[48/107] Compiling SwiftXcodeProj XCScheme+TestItem.swift
[49/107] Compiling SwiftXcodeProj PlistValue.swift
[50/107] Compiling SwiftXcodeProj ReferenceGenerator.swift
[51/107] Compiling SwiftXcodeProj XCConfig.swift
[52/107] Compiling SwiftXcodeProj XCWorkspace.swift
[53/107] Compiling SwiftXcodeProj XCWorkspaceData.swift
[54/107] Compiling SwiftXcodeProj XCWorkspaceDataElement.swift
[55/107] Compiling SwiftXcodeProj XCWorkspaceDataElementLocationType.swift
[56/107] Compiling SwiftXcodeProj XCWorkspaceDataFileRef.swift
[57/107] Compiling SwiftXcodeProj XCWorkspaceDataGroup.swift
[58/107] Compiling SwiftXcodeProj PBXSourceTree.swift
[59/107] Compiling SwiftXcodeProj PBXVariantGroup.swift
[60/107] Compiling SwiftXcodeProj XCVersionGroup.swift
[61/107] Compiling SwiftXcodeProj PBXObject.swift
[62/107] Compiling SwiftXcodeProj PBXObjectParser.swift
[63/107] Compiling SwiftXcodeProj PBXObjectReference.swift
[64/107] Compiling SwiftXcodeProj PBXObjects.swift
[65/107] Compiling SwiftXcodeProj PBXOutputSettings.swift
[66/107] Compiling SwiftXcodeProj PBXProj.swift
[67/107] Compiling SwiftXcodeProj PBXProjEncoder.swift
[68/107] Compiling SwiftXcodeProj PBXTarget.swift
[69/107] Compiling SwiftXcodeProj PBXTargetDependency.swift
[70/107] Compiling SwiftXcodeProj WorkspaceSettings.swift
[71/107] Compiling SwiftXcodeProj XCBreakpointList.swift
[72/107] Compiling SwiftXcodeProj XCDebugger.swift
[73/107] Compiling SwiftXcodeProj XCSharedData.swift
[74/107] Compiling SwiftXcodeProj XCUserData.swift
[75/107] Compiling SwiftXcodeProj Xcode.swift
[76/107] Compiling SwiftXcodeProj XcodeProj.swift
[77/107] Compiling SwiftXcodeProj Writable.swift
[78/107] Compiling SwiftXcodeProj Errors.swift
[79/107] Compiling SwiftXcodeProj AEXML+XcodeFormat.swift
[80/107] Compiling SwiftXcodeProj Array+Extras.swift
[81/107] Compiling SwiftXcodeProj Bool+Extras.swift
[82/107] Compiling SwiftXcodeProj Dictionary+Enumerate.swift
[83/107] Compiling SwiftXcodeProj Dictionary+Extras.swift
[84/107] Compiling SwiftXcodeProj KeyedDecodingContainer+Additions.swift
[85/107] Compiling SwiftXcodeProj NSRecursiveLock+Sync.swift
[86/107] Compiling SwiftXcodeProj Path+Extras.swift
[87/107] Compiling SwiftXcodeProj String+Utils.swift
[88/107] Compiling SwiftXcodeProj XCScheme+AditionalOption.swift
[89/107] Compiling SwiftXcodeProj XCScheme+AnalyzeAction.swift
[90/107] Compiling SwiftXcodeProj XCScheme+ArchiveAction.swift
[91/107] Compiling SwiftXcodeProj XCScheme+BuildAction.swift
[92/107] Compiling SwiftXcodeProj XCScheme+BuildableProductRunnable.swift
[93/107] Compiling SwiftXcodeProj XCScheme+BuildableReference.swift
[94/107] Compiling SwiftXcodeProj XCScheme+CommandLineArguments.swift
[95/107] Compiling SwiftXcodeProj XCScheme+EnvironmentVariable.swift
[96/107] Compiling SwiftXcodeProj XCScheme+ExecutionAction.swift
[97/107] Compiling SwiftXcodeProj XCScheme+LaunchAction.swift
[98/107] Compiling SwiftXcodeProj String+md5.swift
[99/107] Compiling SwiftXcodeProj BuildPhase.swift
[100/107] Compiling SwiftXcodeProj PBXBuildFile.swift
[101/107] Compiling SwiftXcodeProj PBXBuildPhase.swift
[102/107] Compiling SwiftXcodeProj PBXBuildRule.swift
[103/107] Compiling SwiftXcodeProj PBXCopyFilesBuildPhase.swift
[104/107] Compiling SwiftXcodeProj PBXFrameworksBuildPhase.swift
[105/107] Compiling SwiftXcodeProj PBXHeadersBuildPhase.swift
[106/107] Compiling SwiftXcodeProj PBXResourcesBuildPhase.swift
[107/107] Compiling SwiftXcodeProj PBXRezBuildPhase.swift
Build complete! (3.07s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "aexml",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.6.1",
            "upper_bound" : "4.7.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tadija/AEXML.git"
    },
    {
      "identity" : "pathkit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "1.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kylef/PathKit.git"
    }
  ],
  "manifest_display_name" : "SwiftXcodeProj",
  "name" : "SwiftXcodeProj",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftXcodeProj",
      "targets" : [
        "SwiftXcodeProj"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XcodeProjTests",
      "module_type" : "SwiftTarget",
      "name" : "XcodeProjTests",
      "path" : "Tests/XcodeProjTests",
      "sources" : [
        "Extensions/AEXML+XcodeFormatTests.swift",
        "Extensions/Decodable+Dictionary.swift",
        "Extensions/Dictionary+ExtrasTests.swift",
        "Extensions/PathExtrasTests.swift",
        "Extensions/XCTestCase+Assertions.swift",
        "Extensions/XCTestCase+Shell.swift",
        "Extensions/XCTestCase+Temporary.swift",
        "Objects/BuildPhase/BuildPhaseTests.swift",
        "Objects/BuildPhase/PBXBuildFileTests.swift",
        "Objects/BuildPhase/PBXBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXBuildRuleTests.swift",
        "Objects/BuildPhase/PBXCopyFilesBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXFrameworksBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXHeadersBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXResourcesBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXRezBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXShellScriptBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXSourcesBuildPhase+Fixtures.swift",
        "Objects/BuildPhase/PBXSourcesBuildPhaseTests.swift",
        "Objects/Configuration/XCBuildConfiguration+Fixtures.swift",
        "Objects/Configuration/XCBuildConfigurationTests.swift",
        "Objects/Configuration/XCConfigurationList+Fixtures.swift",
        "Objects/Configuration/XCConfigurationListTests.swift",
        "Objects/Files/PBXContainerItemProxyTests.swift",
        "Objects/Files/PBXFileElementTests.swift",
        "Objects/Files/PBXFileReference+Fixtures.swift",
        "Objects/Files/PBXFileReferenceTests.swift",
        "Objects/Files/PBXGroup+Fixtures.swift",
        "Objects/Files/PBXGroupTests.swift",
        "Objects/Files/PBXSourceTreeTests.swift",
        "Objects/Files/PBXVariantGroupTests.swift",
        "Objects/Files/XCVersionGroup+Fixtures.swift",
        "Objects/Files/XCVersionGroupTests.swift",
        "Objects/Project/PBXOutputSettingsTests.swift",
        "Objects/Project/PBXProj+Fixtures.swift",
        "Objects/Project/PBXProj+XCTest.swift",
        "Objects/Project/PBXProjEncoderTests.swift",
        "Objects/Project/PBXProjIntegrationTests.swift",
        "Objects/Project/PBXProjObjectsHelpersTests.swift",
        "Objects/Project/PBXProject+Fixtures.swift",
        "Objects/Project/PBXProjectTests.swift",
        "Objects/SwiftPackage/XCRemoteSwiftPackageReferenceTests.swift",
        "Objects/SwiftPackage/XCSwiftPackageProductDependencyTests.swift",
        "Objects/Targets/PBXAggregateTargetTests.swift",
        "Objects/Targets/PBXLegacyTargetTests.swift",
        "Objects/Targets/PBXNativeTargetTests.swift",
        "Objects/Targets/PBXProductTypeTests.swift",
        "Objects/Targets/PBXReferenceProxyTests.swift",
        "Objects/Targets/PBXTarget+Fixtures.swift",
        "Objects/Targets/PBXTargetDependencyTests.swift",
        "Objects/Targets/PBXTargetTests.swift",
        "Project/WorkspaceSettingsTests.swift",
        "Project/XCBreakpointListTests.swift",
        "Project/XCUserDataTests.swift",
        "Project/XcodeProjTests.swift",
        "Scheme/XCScheme+BuildableReferenceTests.swift",
        "Scheme/XCSchemeManagementTests.swift",
        "Scheme/XCSchemeTests.swift",
        "Tests/Fixtures.swift",
        "Tests/testWrite.swift",
        "Utils/BuildSettingsProviderTests.swift",
        "Utils/CommentedStringTests.swift",
        "Utils/ObjectReferenceTests.swift",
        "Utils/PBXBatchUpdaterTests.swift",
        "Utils/PlistValueTests.swift",
        "Utils/ReferenceGeneratorTests.swift",
        "Utils/XCConfigTests.swift",
        "Workspace/XCWorkspaceDataElementTests.swift",
        "Workspace/XCWorkspaceDataTests.swift",
        "Workspace/XCWorkspaceTests.swift"
      ],
      "target_dependencies" : [
        "SwiftXcodeProj"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftXcodeProj",
      "module_type" : "SwiftTarget",
      "name" : "SwiftXcodeProj",
      "path" : "Sources/SwiftXcodeProj",
      "product_dependencies" : [
        "PathKit",
        "AEXML"
      ],
      "product_memberships" : [
        "SwiftXcodeProj"
      ],
      "sources" : [
        "Errors/Errors.swift",
        "Extensions/AEXML+XcodeFormat.swift",
        "Extensions/Array+Extras.swift",
        "Extensions/Bool+Extras.swift",
        "Extensions/Dictionary+Enumerate.swift",
        "Extensions/Dictionary+Extras.swift",
        "Extensions/KeyedDecodingContainer+Additions.swift",
        "Extensions/NSRecursiveLock+Sync.swift",
        "Extensions/Path+Extras.swift",
        "Extensions/String+Utils.swift",
        "Extensions/String+md5.swift",
        "Objects/BuildPhase/BuildPhase.swift",
        "Objects/BuildPhase/PBXBuildFile.swift",
        "Objects/BuildPhase/PBXBuildPhase.swift",
        "Objects/BuildPhase/PBXBuildRule.swift",
        "Objects/BuildPhase/PBXCopyFilesBuildPhase.swift",
        "Objects/BuildPhase/PBXFrameworksBuildPhase.swift",
        "Objects/BuildPhase/PBXHeadersBuildPhase.swift",
        "Objects/BuildPhase/PBXResourcesBuildPhase.swift",
        "Objects/BuildPhase/PBXRezBuildPhase.swift",
        "Objects/BuildPhase/PBXShellScriptBuildPhase.swift",
        "Objects/BuildPhase/PBXSourcesBuildPhase.swift",
        "Objects/Configuration/BuildSettings.swift",
        "Objects/Configuration/XCBuildConfiguration.swift",
        "Objects/Configuration/XCConfigurationList.swift",
        "Objects/Files/PBXContainerItem.swift",
        "Objects/Files/PBXContainerItemProxy.swift",
        "Objects/Files/PBXFileElement.swift",
        "Objects/Files/PBXFileReference.swift",
        "Objects/Files/PBXGroup.swift",
        "Objects/Files/PBXSourceTree.swift",
        "Objects/Files/PBXVariantGroup.swift",
        "Objects/Files/XCVersionGroup.swift",
        "Objects/Project/PBXObject.swift",
        "Objects/Project/PBXObjectParser.swift",
        "Objects/Project/PBXObjectReference.swift",
        "Objects/Project/PBXObjects.swift",
        "Objects/Project/PBXOutputSettings.swift",
        "Objects/Project/PBXProj.swift",
        "Objects/Project/PBXProjEncoder.swift",
        "Objects/Project/PBXProject.swift",
        "Objects/Sourcery/Equality.generated.swift",
        "Objects/Sourcery/Sourcery.swift",
        "Objects/SwiftPackage/XCRemoteSwiftPackageReference.swift",
        "Objects/SwiftPackage/XCSwiftPackageProductDependency.swift",
        "Objects/Targets/PBXAggregateTarget.swift",
        "Objects/Targets/PBXLegacyTarget.swift",
        "Objects/Targets/PBXNativeTarget.swift",
        "Objects/Targets/PBXProductType.swift",
        "Objects/Targets/PBXReferenceProxy.swift",
        "Objects/Targets/PBXTarget.swift",
        "Objects/Targets/PBXTargetDependency.swift",
        "Project/WorkspaceSettings.swift",
        "Project/XCBreakpointList.swift",
        "Project/XCDebugger.swift",
        "Project/XCSharedData.swift",
        "Project/XCUserData.swift",
        "Project/Xcode.swift",
        "Project/XcodeProj.swift",
        "Protocols/Writable.swift",
        "Scheme/XCScheme+AditionalOption.swift",
        "Scheme/XCScheme+AnalyzeAction.swift",
        "Scheme/XCScheme+ArchiveAction.swift",
        "Scheme/XCScheme+BuildAction.swift",
        "Scheme/XCScheme+BuildableProductRunnable.swift",
        "Scheme/XCScheme+BuildableReference.swift",
        "Scheme/XCScheme+CommandLineArguments.swift",
        "Scheme/XCScheme+EnvironmentVariable.swift",
        "Scheme/XCScheme+ExecutionAction.swift",
        "Scheme/XCScheme+LaunchAction.swift",
        "Scheme/XCScheme+LocationScenarioReference.swift",
        "Scheme/XCScheme+PathRunnable.swift",
        "Scheme/XCScheme+ProfileAction.swift",
        "Scheme/XCScheme+RemoteRunnable.swift",
        "Scheme/XCScheme+Runnable.swift",
        "Scheme/XCScheme+SerialAction.swift",
        "Scheme/XCScheme+StoreKitConfigurationFileReference.swift",
        "Scheme/XCScheme+TestAction.swift",
        "Scheme/XCScheme+TestItem.swift",
        "Scheme/XCScheme+TestPlanReference.swift",
        "Scheme/XCScheme+TestableReference.swift",
        "Scheme/XCScheme.swift",
        "Scheme/XCSchemeManagement.swift",
        "Utils/BuildSettingsProvider.swift",
        "Utils/CommentedString.swift",
        "Utils/Decoders.swift",
        "Utils/JSONDecoding.swift",
        "Utils/PBXBatchUpdater.swift",
        "Utils/PlistValue.swift",
        "Utils/ReferenceGenerator.swift",
        "Utils/XCConfig.swift",
        "Workspace/XCWorkspace.swift",
        "Workspace/XCWorkspaceData.swift",
        "Workspace/XCWorkspaceDataElement.swift",
        "Workspace/XCWorkspaceDataElementLocationType.swift",
        "Workspace/XCWorkspaceDataFileRef.swift",
        "Workspace/XCWorkspaceDataGroup.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.