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 XcodeGraph with Swift 6.0 (beta) for macOS (SPM) (a4f8bc) on 26 Jun 2024 22:46:26 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Beta.2.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[23/86] Compiling XcodeGraph DeploymentTargets.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[24/86] Compiling XcodeGraph Destination.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[25/86] Compiling XcodeGraph EnvironmentVariable.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[26/86] Compiling XcodeGraph ExecutionAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[27/86] Compiling XcodeGraph SDKSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[28/86] Compiling XcodeGraph SDKType.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[29/86] Compiling XcodeGraph Scheme.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[30/86] Compiling XcodeGraph SchemeDiagnosticsOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[31/86] Compiling XcodeGraph ScreenCaptureFormat.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[32/86] Compiling XcodeGraph Settings.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[33/86] Compiling XcodeGraph SimulatedLocation.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[34/86] Compiling XcodeGraph RawScriptBuildPhase.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[35/86] Compiling XcodeGraph Requirement.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[36/86] Compiling XcodeGraph ResourceFileElement.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[37/86] Compiling XcodeGraph ResourceFileElements.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[38/86] Compiling XcodeGraph ResourceSynthesizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[39/86] Compiling XcodeGraph RunAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[40/86] Compiling XcodeGraph RunActionOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[41/86] Compiling XcodeGraph Plist.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[42/86] Compiling XcodeGraph PrivacyManifest.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[43/86] Compiling XcodeGraph Product.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[44/86] Compiling XcodeGraph ProfileAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[45/86] Compiling XcodeGraph Project.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[46/86] Compiling XcodeGraph ProjectGroup.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[47/86] Compiling XcodeGraph ProjectOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[48/86] Compiling XcodeGraph Arguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[49/86] Compiling XcodeGraph AutogenerationOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[50/86] Compiling XcodeGraph BinaryArchitecture.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[51/86] Compiling XcodeGraph BuildAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[52/86] Compiling XcodeGraph BuildConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[53/86] Compiling XcodeGraph BuildRule+CompilerSpec.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[54/86] Compiling XcodeGraph BuildRule+FileType.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[55/86] Compiling XcodeGraph BuildRule.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
[56/86] Compiling XcodeGraph LibraryMetadata.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/PlatformFilter.swift:6:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | public typealias PlatformFilters = Set<PlatformFilter>
 5 |
 6 | extension PlatformFilters: Comparable {
   | |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
 8 |         lhs.map(\.xcodeprojValue).sorted().joined() < rhs.map(\.xcodeprojValue).sorted().joined()
[57/86] Compiling XcodeGraph SystemFrameworkMetadata.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/PlatformFilter.swift:6:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | public typealias PlatformFilters = Set<PlatformFilter>
 5 |
 6 | extension PlatformFilters: Comparable {
   | |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
 8 |         lhs.map(\.xcodeprojValue).sorted().joined() < rhs.map(\.xcodeprojValue).sorted().joined()
[58/86] Compiling XcodeGraph XCFrameworkMetadata.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/PlatformFilter.swift:6:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | public typealias PlatformFilters = Set<PlatformFilter>
 5 |
 6 | extension PlatformFilters: Comparable {
   | |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
 8 |         lhs.map(\.xcodeprojValue).sorted().joined() < rhs.map(\.xcodeprojValue).sorted().joined()
[59/86] Compiling XcodeGraph OnDemandResourcesTags.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/PlatformFilter.swift:6:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | public typealias PlatformFilters = Set<PlatformFilter>
 5 |
 6 | extension PlatformFilters: Comparable {
   | |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
 8 |         lhs.map(\.xcodeprojValue).sorted().joined() < rhs.map(\.xcodeprojValue).sorted().joined()
[60/86] Compiling XcodeGraph Package.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/PlatformFilter.swift:6:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | public typealias PlatformFilters = Set<PlatformFilter>
 5 |
 6 | extension PlatformFilters: Comparable {
   | |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
 8 |         lhs.map(\.xcodeprojValue).sorted().joined() < rhs.map(\.xcodeprojValue).sorted().joined()
[61/86] Compiling XcodeGraph Platform.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/PlatformFilter.swift:6:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | public typealias PlatformFilters = Set<PlatformFilter>
 5 |
 6 | extension PlatformFilters: Comparable {
   | |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
 8 |         lhs.map(\.xcodeprojValue).sorted().joined() < rhs.map(\.xcodeprojValue).sorted().joined()
[62/86] Compiling XcodeGraph PlatformCondition.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/PlatformFilter.swift:6:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | public typealias PlatformFilters = Set<PlatformFilter>
 5 |
 6 | extension PlatformFilters: Comparable {
   | |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
 8 |         lhs.map(\.xcodeprojValue).sorted().joined() < rhs.map(\.xcodeprojValue).sorted().joined()
[63/86] Compiling XcodeGraph PlatformFilter.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/PlatformFilter.swift:6:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | public typealias PlatformFilters = Set<PlatformFilter>
 5 |
 6 | extension PlatformFilters: Comparable {
   | |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
 8 |         lhs.map(\.xcodeprojValue).sorted().joined() < rhs.map(\.xcodeprojValue).sorted().joined()
[64/86] Compiling XcodeGraph SourceFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[65/86] Compiling XcodeGraph SourceFileGlob.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[66/86] Compiling XcodeGraph Target.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[67/86] Compiling XcodeGraph TargetDependency.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[68/86] Compiling XcodeGraph TargetReference.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[69/86] Compiling XcodeGraph TargetScript.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[70/86] Compiling XcodeGraph TestAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
[71/86] Compiling XcodeGraph TestPlan.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:8:23: warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 6 |     }
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parallelizable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
10 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:9:23: warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomExecutionOrdering' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
[72/86] Compiling XcodeGraph TestableTarget.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:8:23: warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 6 |     }
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parallelizable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
10 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:9:23: warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomExecutionOrdering' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
[73/86] Compiling XcodeGraph TestingOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:8:23: warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 6 |     }
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parallelizable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
10 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:9:23: warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomExecutionOrdering' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
[74/86] Compiling XcodeGraph Version.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:8:23: warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 6 |     }
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parallelizable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
10 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:9:23: warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomExecutionOrdering' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
[75/86] Compiling XcodeGraph Workspace.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:8:23: warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 6 |     }
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parallelizable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
10 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:9:23: warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomExecutionOrdering' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
[76/86] Compiling XcodeGraph WorkspaceGenerationOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:8:23: warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 6 |     }
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parallelizable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
10 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:9:23: warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomExecutionOrdering' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
[77/86] Compiling XcodeGraph XCFrameworkInfoPlist.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:8:23: warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 6 |     }
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parallelizable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
10 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:9:23: warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomExecutionOrdering' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
[78/86] Compiling XcodeGraph DependenciesGraph.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift:20:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
  3 |
  4 | /// A directed acyclic graph (DAG) that Tuist uses to represent the dependency tree.
  5 | public struct DependenciesGraph: Equatable, Codable {
    |               `- note: consider making struct 'DependenciesGraph' conform to the 'Sendable' protocol
  6 |     /// A dictionary where the keys are the supported platforms and the values are dictionaries where the keys are the names of
  7 |     /// dependencies, and the values are the dependencies themselves.
    :
 18 |
 19 |     /// An empty `DependenciesGraph`.
 20 |     public static let none: DependenciesGraph = .init(externalDependencies: [:], externalProjects: [:])
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | }
 22 |
[79/86] Compiling XcodeGraph ConditionalGraphTarget.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift:20:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
  3 |
  4 | /// A directed acyclic graph (DAG) that Tuist uses to represent the dependency tree.
  5 | public struct DependenciesGraph: Equatable, Codable {
    |               `- note: consider making struct 'DependenciesGraph' conform to the 'Sendable' protocol
  6 |     /// A dictionary where the keys are the supported platforms and the values are dictionaries where the keys are the names of
  7 |     /// dependencies, and the values are the dependencies themselves.
    :
 18 |
 19 |     /// An empty `DependenciesGraph`.
 20 |     public static let none: DependenciesGraph = .init(externalDependencies: [:], externalProjects: [:])
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | }
 22 |
[80/86] Compiling XcodeGraph Graph.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift:20:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
  3 |
  4 | /// A directed acyclic graph (DAG) that Tuist uses to represent the dependency tree.
  5 | public struct DependenciesGraph: Equatable, Codable {
    |               `- note: consider making struct 'DependenciesGraph' conform to the 'Sendable' protocol
  6 |     /// A dictionary where the keys are the supported platforms and the values are dictionaries where the keys are the names of
  7 |     /// dependencies, and the values are the dependencies themselves.
    :
 18 |
 19 |     /// An empty `DependenciesGraph`.
 20 |     public static let none: DependenciesGraph = .init(externalDependencies: [:], externalProjects: [:])
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | }
 22 |
[81/86] Compiling XcodeGraph GraphDependency.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift:20:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
  3 |
  4 | /// A directed acyclic graph (DAG) that Tuist uses to represent the dependency tree.
  5 | public struct DependenciesGraph: Equatable, Codable {
    |               `- note: consider making struct 'DependenciesGraph' conform to the 'Sendable' protocol
  6 |     /// A dictionary where the keys are the supported platforms and the values are dictionaries where the keys are the names of
  7 |     /// dependencies, and the values are the dependencies themselves.
    :
 18 |
 19 |     /// An empty `DependenciesGraph`.
 20 |     public static let none: DependenciesGraph = .init(externalDependencies: [:], externalProjects: [:])
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | }
 22 |
[82/86] Compiling XcodeGraph GraphEdge.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift:20:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
  3 |
  4 | /// A directed acyclic graph (DAG) that Tuist uses to represent the dependency tree.
  5 | public struct DependenciesGraph: Equatable, Codable {
    |               `- note: consider making struct 'DependenciesGraph' conform to the 'Sendable' protocol
  6 |     /// A dictionary where the keys are the supported platforms and the values are dictionaries where the keys are the names of
  7 |     /// dependencies, and the values are the dependencies themselves.
    :
 18 |
 19 |     /// An empty `DependenciesGraph`.
 20 |     public static let none: DependenciesGraph = .init(externalDependencies: [:], externalProjects: [:])
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | }
 22 |
[83/86] Compiling XcodeGraph GraphTarget.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift:20:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
  3 |
  4 | /// A directed acyclic graph (DAG) that Tuist uses to represent the dependency tree.
  5 | public struct DependenciesGraph: Equatable, Codable {
    |               `- note: consider making struct 'DependenciesGraph' conform to the 'Sendable' protocol
  6 |     /// A dictionary where the keys are the supported platforms and the values are dictionaries where the keys are the names of
  7 |     /// dependencies, and the values are the dependencies themselves.
    :
 18 |
 19 |     /// An empty `DependenciesGraph`.
 20 |     public static let none: DependenciesGraph = .init(externalDependencies: [:], externalProjects: [:])
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | }
 22 |
[84/86] Compiling XcodeGraph AnalyzeAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift:20:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
  3 |
  4 | /// A directed acyclic graph (DAG) that Tuist uses to represent the dependency tree.
  5 | public struct DependenciesGraph: Equatable, Codable {
    |               `- note: consider making struct 'DependenciesGraph' conform to the 'Sendable' protocol
  6 |     /// A dictionary where the keys are the supported platforms and the values are dictionaries where the keys are the names of
  7 |     /// dependencies, and the values are the dependencies themselves.
    :
 18 |
 19 |     /// An empty `DependenciesGraph`.
 20 |     public static let none: DependenciesGraph = .init(externalDependencies: [:], externalProjects: [:])
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | }
 22 |
[85/86] Compiling XcodeGraph ArchiveAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift:20:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
  3 |
  4 | /// A directed acyclic graph (DAG) that Tuist uses to represent the dependency tree.
  5 | public struct DependenciesGraph: Equatable, Codable {
    |               `- note: consider making struct 'DependenciesGraph' conform to the 'Sendable' protocol
  6 |     /// A dictionary where the keys are the supported platforms and the values are dictionaries where the keys are the names of
  7 |     /// dependencies, and the values are the dependencies themselves.
    :
 18 |
 19 |     /// An empty `DependenciesGraph`.
 20 |     public static let none: DependenciesGraph = .init(externalDependencies: [:], externalProjects: [:])
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | }
 22 |
[86/86] Emitting module XcodeGraph
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift:20:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
  3 |
  4 | /// A directed acyclic graph (DAG) that Tuist uses to represent the dependency tree.
  5 | public struct DependenciesGraph: Equatable, Codable {
    |               `- note: consider making struct 'DependenciesGraph' conform to the 'Sendable' protocol
  6 |     /// A dictionary where the keys are the supported platforms and the values are dictionaries where the keys are the names of
  7 |     /// dependencies, and the values are the dependencies themselves.
    :
 18 |
 19 |     /// An empty `DependenciesGraph`.
 20 |     public static let none: DependenciesGraph = .init(externalDependencies: [:], externalProjects: [:])
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependenciesGraph' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | }
 22 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:15:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
13 |     }
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
17 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/BuildConfiguration.swift:16:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// a configuration to help infer the appropriate
 9 | /// default settings.
10 | public struct BuildConfiguration: Codable {
   |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
11 |     public enum Variant: String, Codable {
12 |         case debug, release
   :
14 |
15 |     public static let debug = BuildConfiguration(name: "Debug", variant: .debug)
16 |     public static let release = BuildConfiguration(name: "Release", variant: .release)
   |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:6:23: warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
   |                       |- warning: static property 'watchOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'watchOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:7:23: warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | extension Destinations {
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
   |                       |- warning: static property 'iOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'iOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:8:23: warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     public static var watchOS: Destinations = [.appleWatch]
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
   |                       |- warning: static property 'macOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'macOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:9:23: warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |     public static var iOS: Destinations = [.iPhone, .iPad, .macWithiPadDesign]
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
   |                       |- warning: static property 'tvOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'tvOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |     public static var visionOS: Destinations = [.appleVision]
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Destination.swift:10:23: warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var macOS: Destinations = [.mac]
 9 |     public static var tvOS: Destinations = [.appleTv]
10 |     public static var visionOS: Destinations = [.appleVision]
   |                       |- warning: static property 'visionOS' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'visionOS' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/PlatformFilter.swift:6:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 4 | public typealias PlatformFilters = Set<PlatformFilter>
 5 |
 6 | extension PlatformFilters: Comparable {
   | |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |     public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
 8 |         lhs.map(\.xcodeprojValue).sorted().joined() < rhs.map(\.xcodeprojValue).sorted().joined()
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/Settings.swift:118:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | public struct Settings: Equatable, Codable {
    |               `- note: consider making struct 'Settings' conform to the 'Sendable' protocol
118 |     public static let `default` = Settings(
    |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Settings' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |         configurations: [.release: nil, .debug: nil],
120 |         defaultSettings: .recommended
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:8:23: warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 6 |     }
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
   |                       |- warning: static property 'parallelizable' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'parallelizable' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
10 | }
/Users/admin/builder/spi-builder-workspace/Sources/XcodeGraph/Models/TestingOptions.swift:9:23: warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | public struct TestingOptions: OptionSet, Codable, Hashable {
   |               `- note: consider making struct 'TestingOptions' conform to the 'Sendable' protocol
 2 |     public let rawValue: Int
 3 |
   :
 7 |
 8 |     public static let parallelizable = TestingOptions(rawValue: 1 << 0)
 9 |     public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)
   |                       |- warning: static property 'randomExecutionOrdering' is not concurrency-safe because non-'Sendable' type 'TestingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'randomExecutionOrdering' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
Build complete! (14.22s)
Fetching https://github.com/Flight-School/AnyCodable
Fetching https://github.com/tuist/Path.git
[1/764] Fetching anycodable
[93/997] Fetching anycodable, path
Fetched https://github.com/tuist/Path.git from cache (0.91s)
Fetched https://github.com/Flight-School/AnyCodable from cache (0.91s)
Computing version for https://github.com/tuist/Path.git
Computed https://github.com/tuist/Path.git at 0.3.0 (2.63s)
Computing version for https://github.com/Flight-School/AnyCodable
Computed https://github.com/Flight-School/AnyCodable at 0.6.7 (0.64s)
Creating working copy for https://github.com/Flight-School/AnyCodable
Working copy of https://github.com/Flight-School/AnyCodable resolved at 0.6.7
Creating working copy for https://github.com/tuist/Path.git
Working copy of https://github.com/tuist/Path.git resolved at 0.3.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "anycodable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.6.7",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Flight-School/AnyCodable"
    },
    {
      "identity" : "path",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tuist/Path.git"
    }
  ],
  "manifest_display_name" : "XcodeGraph",
  "name" : "XcodeGraph",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "XcodeGraph",
      "targets" : [
        "XcodeGraph"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XcodeGraph",
      "module_type" : "SwiftTarget",
      "name" : "XcodeGraph",
      "path" : "Sources/XcodeGraph",
      "product_dependencies" : [
        "AnyCodable",
        "Path"
      ],
      "product_memberships" : [
        "XcodeGraph"
      ],
      "sources" : [
        "DependenciesGraph/DependenciesGraph.swift",
        "Graph/ConditionalGraphTarget.swift",
        "Graph/Graph.swift",
        "Graph/GraphDependency.swift",
        "Graph/GraphEdge.swift",
        "Graph/GraphTarget.swift",
        "Models/AnalyzeAction.swift",
        "Models/ArchiveAction.swift",
        "Models/Arguments.swift",
        "Models/AutogenerationOptions.swift",
        "Models/BinaryArchitecture.swift",
        "Models/BuildAction.swift",
        "Models/BuildConfiguration.swift",
        "Models/BuildRule+CompilerSpec.swift",
        "Models/BuildRule+FileType.swift",
        "Models/BuildRule.swift",
        "Models/CompatibleXcodeVersions.swift",
        "Models/CopyFileElement.swift",
        "Models/CopyFilesAction.swift",
        "Models/CoreDataModel.swift",
        "Models/DeploymentTargets.swift",
        "Models/Destination.swift",
        "Models/EnvironmentVariable.swift",
        "Models/ExecutionAction.swift",
        "Models/FileCodeGen.swift",
        "Models/FileElement.swift",
        "Models/Headers.swift",
        "Models/IDETemplateMacros.swift",
        "Models/LaunchArgument.swift",
        "Models/LaunchStyle.swift",
        "Models/MergedBinaryType.swift",
        "Models/Metadata/FrameworkMetadata.swift",
        "Models/Metadata/LibraryMetadata.swift",
        "Models/Metadata/SystemFrameworkMetadata.swift",
        "Models/Metadata/XCFrameworkMetadata.swift",
        "Models/OnDemandResourcesTags.swift",
        "Models/Package.swift",
        "Models/Platform.swift",
        "Models/PlatformCondition.swift",
        "Models/PlatformFilter.swift",
        "Models/Plist.swift",
        "Models/PrivacyManifest.swift",
        "Models/Product.swift",
        "Models/ProfileAction.swift",
        "Models/Project.swift",
        "Models/ProjectGroup.swift",
        "Models/ProjectOptions.swift",
        "Models/RawScriptBuildPhase.swift",
        "Models/Requirement.swift",
        "Models/ResourceFileElement.swift",
        "Models/ResourceFileElements.swift",
        "Models/ResourceSynthesizer.swift",
        "Models/RunAction.swift",
        "Models/RunActionOptions.swift",
        "Models/SDKSource.swift",
        "Models/SDKType.swift",
        "Models/Scheme.swift",
        "Models/SchemeDiagnosticsOptions.swift",
        "Models/ScreenCaptureFormat.swift",
        "Models/Settings.swift",
        "Models/SimulatedLocation.swift",
        "Models/SourceFile.swift",
        "Models/SourceFileGlob.swift",
        "Models/Target.swift",
        "Models/TargetDependency.swift",
        "Models/TargetReference.swift",
        "Models/TargetScript.swift",
        "Models/TestAction.swift",
        "Models/TestPlan.swift",
        "Models/TestableTarget.swift",
        "Models/TestingOptions.swift",
        "Models/Version.swift",
        "Models/Workspace.swift",
        "Models/WorkspaceGenerationOptions.swift",
        "Models/XCFrameworkInfoPlist.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.