This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of XCResource with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 11

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/faberNovel/xcresource-cli.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/faberNovel/xcresource-cli
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at a044a32 Update changelog
Cloned https://github.com/faberNovel/xcresource-cli.git
Revision (git rev-parse @):
a044a3247f7fa07d8cef9ab0509505c59b166b1d
SUCCESS checkout https://github.com/faberNovel/xcresource-cli.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/faberNovel/xcresource-cli.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/8] Write sources
[3/8] Write xcresource-entitlement.plist
[4/8] Write swift-version-6F35C1178C84523A.txt
[6/73] Emitting module XCResource
[7/76] Compiling ArgumentParser Name.swift
[8/76] Compiling ArgumentParser Parsed.swift
[9/76] Compiling XCResource XCTemplateNamespaceFolderURLProviding.swift
[10/79] Compiling XCResource XCSnippetNamespaceMapper.swift
[11/79] Compiling XCResource XCSnippetSource.swift
[12/79] Compiling XCResource XCSnippetsDownloader.swift
[13/79] Compiling ArgumentParser ParsableArgumentsValidation.swift
[14/79] Compiling ArgumentParser ParsableCommand.swift
[15/79] Compiling ArgumentParser ArgumentDecoder.swift
[16/79] Compiling ArgumentParser ArgumentDefinition.swift
[17/79] Compiling ArgumentParser Argument.swift
[18/79] Compiling ArgumentParser ArgumentHelp.swift
[19/79] Compiling ArgumentParser CompletionKind.swift
[20/79] Compiling ArgumentParser Errors.swift
[21/79] Compiling ArgumentParser CommandConfiguration.swift
[22/79] Compiling ArgumentParser EnumerableFlag.swift
[23/79] Compiling ArgumentParser ExpressibleByArgument.swift
[24/79] Compiling ArgumentParser ParsableArguments.swift
[25/79] Emitting module ArgumentParser
[26/79] Compiling XCResource XCSnippetCoder.swift
[27/79] Compiling XCResource XCSnippetFile.swift
[28/79] Compiling XCResource XCSnippetFileManager.swift
[29/79] Compiling XCResource XCSnippetFileParser.swift
[30/79] Compiling ArgumentParser SequenceExtensions.swift
[31/79] Compiling ArgumentParser StringExtensions.swift
[32/79] Compiling ArgumentParser Tree.swift
[36/79] Compiling XCResource XCTemplateFolderMapper.swift
[37/79] Compiling XCResource URLInputParser.swift
[38/79] Compiling XCResource XCTemplate.swift
[39/79] Compiling XCResource XCTemplateFile.swift
[40/79] Compiling XCResource XCTemplateFileManager.swift
[41/79] Compiling XCResource XCTemplateFolderFile.swift
[51/79] Compiling XCResource FileManager+Temporary.swift
[56/79] Compiling ArgumentParser HelpGenerator.swift
[57/79] Compiling ArgumentParser MessageInfo.swift
[58/79] Compiling ArgumentParser UsageGenerator.swift
[77/91] Compiling CLI ListTemplatesCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/ListTemplatesCommand.swift:14:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 |         commandName: "list",
16 |         abstract: "List Xcode templates."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/ListTemplatesCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       |- 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
15 |         commandName: "list",
16 |         abstract: "List Xcode templates."
[78/92] Compiling CLI RemoveTemplatesCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/RemoveTemplatesCommand.swift:14:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     var namespace: String = "FABERNOVEL"
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 |         commandName: "remove",
16 |         abstract: "Remove Xcode templates."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/RemoveTemplatesCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
12 |     var namespace: String = "FABERNOVEL"
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       |- 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
15 |         commandName: "remove",
16 |         abstract: "Remove Xcode templates."
[79/92] Compiling CLI OpenTemplatesCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/OpenTemplatesCommand.swift:8:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | struct OpenTemplatesCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |         commandName: "open",
10 |         abstract: "Open Xcode templates folder."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/OpenTemplatesCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
 6 | struct OpenTemplatesCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       |- 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: "open",
10 |         abstract: "Open Xcode templates folder."
[80/92] Compiling CLI XCSnippetCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/XCSnippetCommand.swift:7:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | struct XCSnippetCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |         commandName: "snippet",
 9 |         abstract: "A command to manage Xcode snippets.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/XCSnippetCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 |
 5 | struct XCSnippetCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                |- 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: "snippet",
 9 |         abstract: "A command to manage Xcode snippets.",
[81/92] Compiling CLI RemoveSnippetsCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/RemoveSnippetsCommand.swift:14:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 |         commandName: "remove",
16 |         abstract: "Remove Xcode snippet."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/RemoveSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       |- 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
15 |         commandName: "remove",
16 |         abstract: "Remove Xcode snippet."
[82/92] Compiling CLI XCResourceCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCResourceCommand.swift:7:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | struct XCResourceCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |         commandName: "xcresource",
 9 |         abstract: "A command-line tool to manage Xcode resources.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCResourceCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 |
 5 | struct XCResourceCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                |- 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: "xcresource",
 9 |         abstract: "A command-line tool to manage Xcode resources.",
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/InstallSnippetsCommand.swift:36:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
34 |     var pointer: String = "master"
35 |
36 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
37 |         commandName: "install",
38 |         abstract: "Install Xcode snippets from a git repository."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/InstallSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
34 |     var pointer: String = "master"
35 |
36 |     public static let configuration = CommandConfiguration(
   |                       |- 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
37 |         commandName: "install",
38 |         abstract: "Install Xcode snippets from a git repository."
[83/92] Compiling CLI InstallSnippetsCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCResourceCommand.swift:7:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | struct XCResourceCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |         commandName: "xcresource",
 9 |         abstract: "A command-line tool to manage Xcode resources.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCResourceCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 |
 5 | struct XCResourceCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                |- 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: "xcresource",
 9 |         abstract: "A command-line tool to manage Xcode resources.",
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/InstallSnippetsCommand.swift:36:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
34 |     var pointer: String = "master"
35 |
36 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
37 |         commandName: "install",
38 |         abstract: "Install Xcode snippets from a git repository."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/InstallSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
34 |     var pointer: String = "master"
35 |
36 |     public static let configuration = CommandConfiguration(
   |                       |- 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
37 |         commandName: "install",
38 |         abstract: "Install Xcode snippets from a git repository."
[84/92] Compiling CLI XCTemplateCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/XCTemplateCommand.swift:7:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | struct XCTemplateCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |         commandName: "template",
 9 |         abstract: "A command to manage Xcode templates.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/XCTemplateCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 |
 5 | struct XCTemplateCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                |- 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: "template",
 9 |         abstract: "A command to manage Xcode templates.",
[85/92] Emitting module CLI
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCResourceCommand.swift:7:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | struct XCResourceCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |         commandName: "xcresource",
 9 |         abstract: "A command-line tool to manage Xcode resources.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCResourceCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 |
 5 | struct XCResourceCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                |- 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: "xcresource",
 9 |         abstract: "A command-line tool to manage Xcode resources.",
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/InstallSnippetsCommand.swift:36:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
34 |     var pointer: String = "master"
35 |
36 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
37 |         commandName: "install",
38 |         abstract: "Install Xcode snippets from a git repository."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/InstallSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
34 |     var pointer: String = "master"
35 |
36 |     public static let configuration = CommandConfiguration(
   |                       |- 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
37 |         commandName: "install",
38 |         abstract: "Install Xcode snippets from a git repository."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/ListSnippetsCommand.swift:14:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 |         commandName: "list",
16 |         abstract: "List Xcode snippet."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/ListSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       |- 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
15 |         commandName: "list",
16 |         abstract: "List Xcode snippet."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/OpenSnippetsCommand.swift:8:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | struct OpenSnippetsCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |         commandName: "open",
10 |         abstract: "Open Xcode snippets folder."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/OpenSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
 6 | struct OpenSnippetsCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       |- 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: "open",
10 |         abstract: "Open Xcode snippets folder."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/RemoveSnippetsCommand.swift:14:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 |         commandName: "remove",
16 |         abstract: "Remove Xcode snippet."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/RemoveSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       |- 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
15 |         commandName: "remove",
16 |         abstract: "Remove Xcode snippet."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/XCSnippetCommand.swift:7:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | struct XCSnippetCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |         commandName: "snippet",
 9 |         abstract: "A command to manage Xcode snippets.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/XCSnippetCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 |
 5 | struct XCSnippetCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                |- 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: "snippet",
 9 |         abstract: "A command to manage Xcode snippets.",
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/InstallTemplatesCommand.swift:42:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
40 |     var pointer: String = "master"
41 |
42 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
43 |         commandName: "install",
44 |         abstract: "Install Xcode templates from a git repository."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/InstallTemplatesCommand.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 7 |
 8 | import Foundation
 9 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
10 | import XCResource
11 |
   :
40 |     var pointer: String = "master"
41 |
42 |     public static let configuration = CommandConfiguration(
   |                       |- 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
43 |         commandName: "install",
44 |         abstract: "Install Xcode templates from a git repository."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/ListTemplatesCommand.swift:14:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 |         commandName: "list",
16 |         abstract: "List Xcode templates."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/ListTemplatesCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       |- 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
15 |         commandName: "list",
16 |         abstract: "List Xcode templates."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/OpenTemplatesCommand.swift:8:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | struct OpenTemplatesCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |         commandName: "open",
10 |         abstract: "Open Xcode templates folder."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/OpenTemplatesCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
 6 | struct OpenTemplatesCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       |- 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: "open",
10 |         abstract: "Open Xcode templates folder."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/RemoveTemplatesCommand.swift:14:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     var namespace: String = "FABERNOVEL"
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 |         commandName: "remove",
16 |         abstract: "Remove Xcode templates."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/RemoveTemplatesCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
12 |     var namespace: String = "FABERNOVEL"
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       |- 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
15 |         commandName: "remove",
16 |         abstract: "Remove Xcode templates."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/XCTemplateCommand.swift:7:16: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | struct XCTemplateCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |         commandName: "template",
 9 |         abstract: "A command to manage Xcode templates.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/XCTemplateCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 |
 5 | struct XCTemplateCommand: ParsableCommand {
 6 |
 7 |     static let configuration = CommandConfiguration(
   |                |- 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: "template",
 9 |         abstract: "A command to manage Xcode templates.",
[86/92] Compiling CLI InstallTemplatesCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/InstallTemplatesCommand.swift:42:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
40 |     var pointer: String = "master"
41 |
42 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
43 |         commandName: "install",
44 |         abstract: "Install Xcode templates from a git repository."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCTemplate/InstallTemplatesCommand.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 7 |
 8 | import Foundation
 9 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
10 | import XCResource
11 |
   :
40 |     var pointer: String = "master"
41 |
42 |     public static let configuration = CommandConfiguration(
   |                       |- 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
43 |         commandName: "install",
44 |         abstract: "Install Xcode templates from a git repository."
[87/92] Compiling CLI ListSnippetsCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/ListSnippetsCommand.swift:14:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 |         commandName: "list",
16 |         abstract: "List Xcode snippet."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/ListSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       |- 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
15 |         commandName: "list",
16 |         abstract: "List Xcode snippet."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/OpenSnippetsCommand.swift:8:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | struct OpenSnippetsCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |         commandName: "open",
10 |         abstract: "Open Xcode snippets folder."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/OpenSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
 6 | struct OpenSnippetsCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       |- 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: "open",
10 |         abstract: "Open Xcode snippets folder."
[88/92] Compiling CLI OpenSnippetsCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/ListSnippetsCommand.swift:14:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
15 |         commandName: "list",
16 |         abstract: "List Xcode snippet."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/ListSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
   :
12 |     var namespace: String?
13 |
14 |     public static let configuration = CommandConfiguration(
   |                       |- 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
15 |         commandName: "list",
16 |         abstract: "List Xcode snippet."
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/OpenSnippetsCommand.swift:8:23: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | struct OpenSnippetsCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |         commandName: "open",
10 |         abstract: "Open Xcode snippets folder."
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/CLI/XCSnippet/OpenSnippetsCommand.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 |
 2 | import Foundation
 3 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 4 | import XCResource
 5 |
 6 | struct OpenSnippetsCommand: ParsableCommand {
 7 |
 8 |     public static let configuration = CommandConfiguration(
   |                       |- 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: "open",
10 |         abstract: "Open Xcode snippets folder."
[89/92] Compiling CLI main.swift
[89/92] Write Objects.LinkFileList
[90/92] Linking xcresource
[91/92] Applying xcresource
Build complete! (39.02s)
Fetching https://github.com/apple/swift-argument-parser
[1/11679] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.76s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 0.4.1 (0.73s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 0.4.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    }
  ],
  "manifest_display_name" : "XCResource",
  "name" : "XCResource",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "xcresource",
      "targets" : [
        "CLI"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "XCResource",
      "targets" : [
        "XCResource"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XCResourceTests",
      "module_type" : "SwiftTarget",
      "name" : "XCResourceTests",
      "path" : "Tests/XCResourceTests",
      "sources" : [
        "URLInputParserTests.swift",
        "Utils/DynamicXCSnippetFolder.swift",
        "Utils/DynamicXCTemplateFolder.swift",
        "Utils/FileManager+Temporary.swift",
        "Utils/GitRepository.swift",
        "Utils/TestXCTemplateFolderURLProvider.swift",
        "XCSnippetDownloaderTests.swift",
        "XCSnippetFileManagerTests.swift",
        "XCSnippetFileSummaryTaggerTests.swift",
        "XCTemplateDownloaderTests.swift",
        "XCTemplateFileManagerTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "XCResource"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XCResource",
      "module_type" : "SwiftTarget",
      "name" : "XCResource",
      "path" : "Sources/XCResource",
      "product_memberships" : [
        "xcresource",
        "XCResource"
      ],
      "sources" : [
        "Shared/Extension/FileManager+Temporary.swift",
        "Shared/Extension/URL+Convenience.swift",
        "Shared/Shell.swift",
        "XCSnippet/File/SnippetFileToSnippetMapper.swift",
        "XCSnippet/File/XCSnippetCoder.swift",
        "XCSnippet/File/XCSnippetFile.swift",
        "XCSnippet/File/XCSnippetFileManager.swift",
        "XCSnippet/File/XCSnippetFileParser.swift",
        "XCSnippet/File/XCSnippetFileSummaryTagger.swift",
        "XCSnippet/XCSnippet.swift",
        "XCSnippet/XCSnippetCLI.swift",
        "XCSnippet/XCSnippetDownloadingStrategy.swift",
        "XCSnippet/XCSnippetFolderURLProviding.swift",
        "XCSnippet/XCSnippetLibrary.swift",
        "XCSnippet/XCSnippetList.swift",
        "XCSnippet/XCSnippetNamespace.swift",
        "XCSnippet/XCSnippetNamespaceMapper.swift",
        "XCSnippet/XCSnippetSource.swift",
        "XCSnippet/XCSnippetsDownloader.swift",
        "XCTemplate/File/XCTemplateFile.swift",
        "XCTemplate/File/XCTemplateFileManager.swift",
        "XCTemplate/File/XCTemplateFolderFile.swift",
        "XCTemplate/File/XCTemplateFolderMapper.swift",
        "XCTemplate/URLInputParser.swift",
        "XCTemplate/XCTemplate.swift",
        "XCTemplate/XCTemplateCLI.swift",
        "XCTemplate/XCTemplateFolder.swift",
        "XCTemplate/XCTemplateFolderDownloadingStrategy.swift",
        "XCTemplate/XCTemplateFolderDownloadingStrategyFactory.swift",
        "XCTemplate/XCTemplateLibrary.swift",
        "XCTemplate/XCTemplateNamespace.swift",
        "XCTemplate/XCTemplateNamespaceFolderURLProviding.swift",
        "XCTemplate/XCTemplateSource.swift",
        "XCTemplate/XCTemplatesDownloader.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CLI",
      "module_type" : "SwiftTarget",
      "name" : "CLI",
      "path" : "Sources/CLI",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "xcresource"
      ],
      "sources" : [
        "XCResourceCommand.swift",
        "XCSnippet/InstallSnippetsCommand.swift",
        "XCSnippet/ListSnippetsCommand.swift",
        "XCSnippet/OpenSnippetsCommand.swift",
        "XCSnippet/RemoveSnippetsCommand.swift",
        "XCSnippet/XCSnippetCommand.swift",
        "XCTemplate/InstallTemplatesCommand.swift",
        "XCTemplate/ListTemplatesCommand.swift",
        "XCTemplate/OpenTemplatesCommand.swift",
        "XCTemplate/RemoveTemplatesCommand.swift",
        "XCTemplate/XCTemplateCommand.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "XCResource"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.2"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.