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

Failed to build swift-bundler, reference main (27300f), with Swift 6.0 for Linux on 16 Sep 2024 11:04:38 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ConvertCommand.swift:8:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | /// The command for converting xcodeprojs to Swift Bundler projects.
 7 | struct ConvertCommand: Command {
 8 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "convert",
10 |     abstract: "Converts an xcodeproj to a Swift Bundler project."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// The subcommand for creating new app packages from templates.
  6 | struct CreateCommand: Command {
  7 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "create",
  9 |     abstract: "Create a new app package."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
 5 | struct GenerateXcodeSupportCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "generate-xcode-support",
 8 |     abstract: "Generate the files required for Xcode to work nicely with a package.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ListIdentitiesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct ListIdentitiesCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list-identities",
 8 |     abstract: "List available codesigning identities."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/MigrateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct MigrateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "migrate",
 8 |     abstract: "Migrate a project's config file to the latest format."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  4 | /// The subcommand for running an app from a package.
  5 | struct RunCommand: AsyncCommand {
  6 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "run",
  8 |     abstract: "Run a package as an app."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsBootCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for booting simulators.
 5 | struct SimulatorsBootCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "boot",
 8 |     abstract: "Boot an iOS or visionOS simulator."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available simulators.
 5 | struct SimulatorsListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available iOS and visionOS simulators."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/SimulatorsCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available simulators.
 5 | struct SimulatorsCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "simulators",
 8 |     abstract: "Manage and list available simulators.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The subcommand for getting info about a template.
 6 | struct TemplatesInfoCommand: Command {
 7 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "info",
 9 |     abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available templates.
 5 | struct TemplatesListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available templates."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for updating the default templates repository.
 5 | struct TemplatesUpdateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "update",
 8 |     abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available package templates.
 5 | struct TemplatesCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "templates",
 8 |     abstract: "Manage and list available package templates.",
[1231/1254] Compiling swift_bundler SimulatorsListCommand.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ConvertCommand.swift:8:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | /// The command for converting xcodeprojs to Swift Bundler projects.
 7 | struct ConvertCommand: Command {
 8 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "convert",
10 |     abstract: "Converts an xcodeproj to a Swift Bundler project."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// The subcommand for creating new app packages from templates.
  6 | struct CreateCommand: Command {
  7 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "create",
  9 |     abstract: "Create a new app package."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
 5 | struct GenerateXcodeSupportCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "generate-xcode-support",
 8 |     abstract: "Generate the files required for Xcode to work nicely with a package.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ListIdentitiesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct ListIdentitiesCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list-identities",
 8 |     abstract: "List available codesigning identities."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/MigrateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct MigrateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "migrate",
 8 |     abstract: "Migrate a project's config file to the latest format."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  4 | /// The subcommand for running an app from a package.
  5 | struct RunCommand: AsyncCommand {
  6 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "run",
  8 |     abstract: "Run a package as an app."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsBootCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for booting simulators.
 5 | struct SimulatorsBootCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "boot",
 8 |     abstract: "Boot an iOS or visionOS simulator."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available simulators.
 5 | struct SimulatorsListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available iOS and visionOS simulators."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/SimulatorsCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available simulators.
 5 | struct SimulatorsCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "simulators",
 8 |     abstract: "Manage and list available simulators.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The subcommand for getting info about a template.
 6 | struct TemplatesInfoCommand: Command {
 7 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "info",
 9 |     abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available templates.
 5 | struct TemplatesListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available templates."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for updating the default templates repository.
 5 | struct TemplatesUpdateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "update",
 8 |     abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available package templates.
 5 | struct TemplatesCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "templates",
 8 |     abstract: "Manage and list available package templates.",
[1232/1254] Compiling swift_bundler SimulatorsCommand.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ConvertCommand.swift:8:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | /// The command for converting xcodeprojs to Swift Bundler projects.
 7 | struct ConvertCommand: Command {
 8 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "convert",
10 |     abstract: "Converts an xcodeproj to a Swift Bundler project."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// The subcommand for creating new app packages from templates.
  6 | struct CreateCommand: Command {
  7 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "create",
  9 |     abstract: "Create a new app package."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
 5 | struct GenerateXcodeSupportCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "generate-xcode-support",
 8 |     abstract: "Generate the files required for Xcode to work nicely with a package.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ListIdentitiesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct ListIdentitiesCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list-identities",
 8 |     abstract: "List available codesigning identities."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/MigrateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct MigrateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "migrate",
 8 |     abstract: "Migrate a project's config file to the latest format."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  4 | /// The subcommand for running an app from a package.
  5 | struct RunCommand: AsyncCommand {
  6 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "run",
  8 |     abstract: "Run a package as an app."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsBootCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for booting simulators.
 5 | struct SimulatorsBootCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "boot",
 8 |     abstract: "Boot an iOS or visionOS simulator."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available simulators.
 5 | struct SimulatorsListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available iOS and visionOS simulators."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/SimulatorsCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available simulators.
 5 | struct SimulatorsCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "simulators",
 8 |     abstract: "Manage and list available simulators.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The subcommand for getting info about a template.
 6 | struct TemplatesInfoCommand: Command {
 7 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "info",
 9 |     abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available templates.
 5 | struct TemplatesListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available templates."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for updating the default templates repository.
 5 | struct TemplatesUpdateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "update",
 8 |     abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available package templates.
 5 | struct TemplatesCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "templates",
 8 |     abstract: "Manage and list available package templates.",
[1233/1254] Compiling swift_bundler TemplatesInfoCommand.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ConvertCommand.swift:8:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | /// The command for converting xcodeprojs to Swift Bundler projects.
 7 | struct ConvertCommand: Command {
 8 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "convert",
10 |     abstract: "Converts an xcodeproj to a Swift Bundler project."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// The subcommand for creating new app packages from templates.
  6 | struct CreateCommand: Command {
  7 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "create",
  9 |     abstract: "Create a new app package."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
 5 | struct GenerateXcodeSupportCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "generate-xcode-support",
 8 |     abstract: "Generate the files required for Xcode to work nicely with a package.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ListIdentitiesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct ListIdentitiesCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list-identities",
 8 |     abstract: "List available codesigning identities."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/MigrateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct MigrateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "migrate",
 8 |     abstract: "Migrate a project's config file to the latest format."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  4 | /// The subcommand for running an app from a package.
  5 | struct RunCommand: AsyncCommand {
  6 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "run",
  8 |     abstract: "Run a package as an app."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsBootCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for booting simulators.
 5 | struct SimulatorsBootCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "boot",
 8 |     abstract: "Boot an iOS or visionOS simulator."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available simulators.
 5 | struct SimulatorsListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available iOS and visionOS simulators."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/SimulatorsCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available simulators.
 5 | struct SimulatorsCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "simulators",
 8 |     abstract: "Manage and list available simulators.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The subcommand for getting info about a template.
 6 | struct TemplatesInfoCommand: Command {
 7 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "info",
 9 |     abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available templates.
 5 | struct TemplatesListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available templates."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for updating the default templates repository.
 5 | struct TemplatesUpdateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "update",
 8 |     abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available package templates.
 5 | struct TemplatesCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "templates",
 8 |     abstract: "Manage and list available package templates.",
[1234/1254] Compiling swift_bundler TemplatesListCommand.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ConvertCommand.swift:8:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | /// The command for converting xcodeprojs to Swift Bundler projects.
 7 | struct ConvertCommand: Command {
 8 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "convert",
10 |     abstract: "Converts an xcodeproj to a Swift Bundler project."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// The subcommand for creating new app packages from templates.
  6 | struct CreateCommand: Command {
  7 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "create",
  9 |     abstract: "Create a new app package."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
 5 | struct GenerateXcodeSupportCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "generate-xcode-support",
 8 |     abstract: "Generate the files required for Xcode to work nicely with a package.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ListIdentitiesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct ListIdentitiesCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list-identities",
 8 |     abstract: "List available codesigning identities."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/MigrateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct MigrateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "migrate",
 8 |     abstract: "Migrate a project's config file to the latest format."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  4 | /// The subcommand for running an app from a package.
  5 | struct RunCommand: AsyncCommand {
  6 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "run",
  8 |     abstract: "Run a package as an app."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsBootCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for booting simulators.
 5 | struct SimulatorsBootCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "boot",
 8 |     abstract: "Boot an iOS or visionOS simulator."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available simulators.
 5 | struct SimulatorsListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available iOS and visionOS simulators."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/SimulatorsCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available simulators.
 5 | struct SimulatorsCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "simulators",
 8 |     abstract: "Manage and list available simulators.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The subcommand for getting info about a template.
 6 | struct TemplatesInfoCommand: Command {
 7 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "info",
 9 |     abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available templates.
 5 | struct TemplatesListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available templates."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for updating the default templates repository.
 5 | struct TemplatesUpdateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "update",
 8 |     abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available package templates.
 5 | struct TemplatesCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "templates",
 8 |     abstract: "Manage and list available package templates.",
[1235/1254] Compiling swift_bundler TemplatesUpdateCommand.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ConvertCommand.swift:8:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | /// The command for converting xcodeprojs to Swift Bundler projects.
 7 | struct ConvertCommand: Command {
 8 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "convert",
10 |     abstract: "Converts an xcodeproj to a Swift Bundler project."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// The subcommand for creating new app packages from templates.
  6 | struct CreateCommand: Command {
  7 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "create",
  9 |     abstract: "Create a new app package."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
 5 | struct GenerateXcodeSupportCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "generate-xcode-support",
 8 |     abstract: "Generate the files required for Xcode to work nicely with a package.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ListIdentitiesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct ListIdentitiesCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list-identities",
 8 |     abstract: "List available codesigning identities."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/MigrateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct MigrateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "migrate",
 8 |     abstract: "Migrate a project's config file to the latest format."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  4 | /// The subcommand for running an app from a package.
  5 | struct RunCommand: AsyncCommand {
  6 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "run",
  8 |     abstract: "Run a package as an app."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsBootCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for booting simulators.
 5 | struct SimulatorsBootCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "boot",
 8 |     abstract: "Boot an iOS or visionOS simulator."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available simulators.
 5 | struct SimulatorsListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available iOS and visionOS simulators."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/SimulatorsCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available simulators.
 5 | struct SimulatorsCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "simulators",
 8 |     abstract: "Manage and list available simulators.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The subcommand for getting info about a template.
 6 | struct TemplatesInfoCommand: Command {
 7 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "info",
 9 |     abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available templates.
 5 | struct TemplatesListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available templates."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for updating the default templates repository.
 5 | struct TemplatesUpdateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "update",
 8 |     abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available package templates.
 5 | struct TemplatesCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "templates",
 8 |     abstract: "Manage and list available package templates.",
[1236/1254] Compiling swift_bundler TemplatesCommand.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ConvertCommand.swift:8:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 6 | /// The command for converting xcodeprojs to Swift Bundler projects.
 7 | struct ConvertCommand: Command {
 8 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "convert",
10 |     abstract: "Converts an xcodeproj to a Swift Bundler project."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  5 | /// The subcommand for creating new app packages from templates.
  6 | struct CreateCommand: Command {
  7 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "create",
  9 |     abstract: "Create a new app package."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
 5 | struct GenerateXcodeSupportCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "generate-xcode-support",
 8 |     abstract: "Generate the files required for Xcode to work nicely with a package.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/ListIdentitiesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct ListIdentitiesCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list-identities",
 8 |     abstract: "List available codesigning identities."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/MigrateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The command for listing codesigning identities.
 5 | struct MigrateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "migrate",
 8 |     abstract: "Migrate a project's config file to the latest format."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  4 | /// The subcommand for running an app from a package.
  5 | struct RunCommand: AsyncCommand {
  6 |   static var configuration = CommandConfiguration(
    |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'configuration' 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 |     commandName: "run",
  8 |     abstract: "Run a package as an app."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsBootCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for booting simulators.
 5 | struct SimulatorsBootCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "boot",
 8 |     abstract: "Boot an iOS or visionOS simulator."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Simulators/SimulatorsListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available simulators.
 5 | struct SimulatorsListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available iOS and visionOS simulators."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/SimulatorsCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available simulators.
 5 | struct SimulatorsCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "simulators",
 8 |     abstract: "Manage and list available simulators.",
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The subcommand for getting info about a template.
 6 | struct TemplatesInfoCommand: Command {
 7 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "info",
 9 |     abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for listing available templates.
 5 | struct TemplatesListCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "list",
 8 |     abstract: "List available templates."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for updating the default templates repository.
 5 | struct TemplatesUpdateCommand: Command {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "update",
 8 |     abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// The subcommand for managing and listing available package templates.
 5 | struct TemplatesCommand: ParsableCommand {
 6 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' 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 |     commandName: "templates",
 8 |     abstract: "Manage and list available package templates.",
[1237/1254] Compiling swift_bundler PackageManifest.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1238/1254] Compiling swift_bundler Platform.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1239/1254] Compiling swift_bundler SwiftPackageManager.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1240/1254] Compiling swift_bundler SwiftPackageManagerError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1241/1254] Compiling swift_bundler SwiftTargetInfo.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1242/1254] Compiling swift_bundler System.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1243/1254] Compiling swift_bundler SystemError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1244/1254] Compiling swift_bundler IndentationStyle.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1245/1254] Compiling swift_bundler SystemDependency.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1246/1254] Compiling swift_bundler Template.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1247/1254] Compiling swift_bundler TemplateManifest.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1248/1254] Compiling swift_bundler Templater.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1249/1254] Compiling swift_bundler TemplaterError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1250/1254] Compiling swift_bundler VariableEvaluator.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
[1251/1254] Compiling swift_bundler VariableEvaluatorError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
   |     |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'log' 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
32 |   return Handler()
33 | }
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
340 |
341 |     #if os(Linux)
342 |       let temporaryAutolinkFile =
    |           `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it
343 |         temporaryDirectory
344 |         .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7:14: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              `- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import StackOtterArgParser
 3 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 4 |
 5 | /// The root command of Swift Bundler.
 6 | struct SwiftBundler: AsyncParsableCommand {
 7 |   static let version = Version(3, 0, 0)
   |              |- note: annotate 'version' 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 |
 9 |   static let configuration = CommandConfiguration(
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 1 | import Foundation
 2 | import Version
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
 3 |
 4 | /// An error returned by ``Templater``.
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:14:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
12 |   case failedToDecodeTemplateManifest(template: String, manifest: URL, Error)
13 |   case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 |   case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
   |        `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
15 |   case failedToEnumerateTemplateContents(template: String)
16 |   case failedToReadFile(template: String, file: URL, Error)
/host/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 16 |  - SeeAlso: https://semver.org
 17 |  */
 18 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 19 |     /// The major version.
 20 |     public let major: Int
BUILD FAILURE 6.0 linux