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, reference 0.1.4 (a044a3), with Swift 6.0 for Linux on 28 Nov 2024 05:36:08 UTC.

Swift 6 data race errors: 11

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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/faberNovel/xcresource-cli.git
Reference: 0.1.4
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/faberNovel/xcresource-cli
 * tag               0.1.4      -> FETCH_HEAD
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 0.1.4
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/faberNovel/xcresource-cli.git
Running build ...
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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/apple/swift-argument-parser
[1/12395] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (0.74s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 0.5.0 (0.43s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 0.5.0
Building for debugging...
[0/11] Write sources
[4/11] Write swift-version-24593BA9C3E375BF.txt
[6/44] Compiling ArgumentParserToolInfo ToolInfo.swift
[7/44] Emitting module ArgumentParserToolInfo
[8/45] Wrapping AST for ArgumentParserToolInfo for debugging
[10/79] Emitting module ArgumentParser
[11/83] Compiling ArgumentParser ParsableArguments.swift
[12/83] Compiling ArgumentParser ParsableArgumentsValidation.swift
[13/83] Compiling ArgumentParser ParsableCommand.swift
[14/83] Compiling ArgumentParser ArgumentDecoder.swift
[15/87] Compiling ArgumentParser Flag.swift
[16/87] Compiling ArgumentParser NameSpecification.swift
[17/87] Compiling ArgumentParser ParsedValues.swift
[18/87] Compiling ArgumentParser ParserError.swift
[19/87] Compiling ArgumentParser BashCompletionsGenerator.swift
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run'
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run'
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[20/87] Compiling ArgumentParser CompletionsGenerator.swift
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run'
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run'
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[21/87] Compiling ArgumentParser FishCompletionsGenerator.swift
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run'
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run'
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[22/87] Compiling ArgumentParser ZshCompletionsGenerator.swift
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run'
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run'
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[23/87] Compiling ArgumentParser Argument.swift
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:37:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
35 |     func execute(_ command: String) throws -> String {
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
   |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |              `- note: use 'executableURL' instead
38 |         task.currentDirectoryPath = currentDirectoryPath
39 |         task.arguments = ["-c", command]
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:38:14: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
36 |         let task = Process()
37 |         task.launchPath = "/bin/bash"
38 |         task.currentDirectoryPath = currentDirectoryPath
   |              |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
   |              `- note: use 'currentDirectoryURL' instead
39 |         task.arguments = ["-c", command]
40 |         let pipe = Pipe()
/host/spi-builder-workspace/Sources/XCResource/Shared/Shell.swift:43:14: warning: 'launch()' is deprecated: renamed to 'run'
41 |         task.standardOutput = pipe
42 |         task.standardError = pipe
43 |         task.launch()
   |              |- warning: 'launch()' is deprecated: renamed to 'run'
   |              `- note: use 'run' instead
44 |         let data = pipe.fileHandleForReading.readDataToEndOfFile()
45 |         let output = String(data: data, encoding: .utf8) ?? ""
[24/87] Compiling ArgumentParser Option.swift
[25/87] Compiling ArgumentParser OptionGroup.swift
[26/87] Compiling ArgumentParser CommandConfiguration.swift
[27/87] Compiling ArgumentParser EnumerableFlag.swift
[28/87] Compiling ArgumentParser ExpressibleByArgument.swift
[29/87] Emitting module XCResource
[30/87] Compiling ArgumentParser InputOrigin.swift
[31/87] Compiling ArgumentParser Name.swift
[32/87] Compiling ArgumentParser Parsed.swift
[33/87] Compiling ArgumentParser HelpCommand.swift
[34/87] Compiling ArgumentParser SplitArguments.swift
[35/87] Compiling ArgumentParser DumpHelpGenerator.swift
[36/87] Compiling ArgumentParser ArgumentSet.swift
[37/87] Compiling ArgumentParser CommandParser.swift
[38/87] Compiling ArgumentParser ArgumentDefinition.swift
[39/87] Compiling ArgumentParser ArgumentHelp.swift
[40/87] Compiling ArgumentParser CompletionKind.swift
[41/87] Compiling ArgumentParser Errors.swift
[42/87] Compiling XCResource XCTemplateNamespace.swift
[43/87] Compiling XCResource XCTemplateNamespaceFolderURLProviding.swift
[44/87] Compiling XCResource XCTemplateSource.swift
[45/87] Compiling XCResource XCTemplatesDownloader.swift
[53/88] Compiling ArgumentParser SequenceExtensions.swift
[54/88] Compiling ArgumentParser StringExtensions.swift
[55/88] Compiling ArgumentParser Tree.swift
[55/88] Wrapping AST for XCResource for debugging
[85/89] Wrapping AST for ArgumentParser for debugging
[87/101] Compiling CLI RemoveTemplatesCommand.swift
/host/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."
/host/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 |   ///
/host/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."
[88/101] Compiling CLI OpenTemplatesCommand.swift
/host/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."
/host/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 |   ///
/host/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."
[89/102] Compiling CLI XCTemplateCommand.swift
/host/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.",
/host/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 |   ///
/host/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.",
[90/102] Compiling CLI RemoveSnippetsCommand.swift
/host/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."
/host/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 |   ///
/host/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."
/host/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.",
/host/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 |   ///
/host/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.",
[91/102] Compiling CLI XCSnippetCommand.swift
/host/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."
/host/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 |   ///
/host/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."
/host/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.",
/host/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 |   ///
/host/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.",
[92/102] Compiling CLI ListSnippetsCommand.swift
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
[93/102] Compiling CLI OpenSnippetsCommand.swift
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
[94/102] Emitting module CLI
/host/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.",
/host/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 |   ///
/host/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.",
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
/host/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.",
/host/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 |   ///
/host/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.",
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
/host/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.",
/host/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 |   ///
/host/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.",
[95/102] Compiling CLI XCResourceCommand.swift
/host/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.",
/host/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 |   ///
/host/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.",
/host/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."
/host/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 |   ///
/host/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."
[96/102] Compiling CLI InstallSnippetsCommand.swift
/host/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.",
/host/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 |   ///
/host/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.",
/host/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."
/host/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 |   ///
/host/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."
[97/102] Compiling CLI main.swift
[98/102] Compiling CLI InstallTemplatesCommand.swift
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
[99/102] Compiling CLI ListTemplatesCommand.swift
/host/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."
/host/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 |   ///
/host/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."
/host/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."
/host/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 |   ///
/host/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."
[100/103] Wrapping AST for CLI for debugging
[101/103] Write Objects.LinkFileList
[102/103] Linking xcresource
Build complete! (25.04s)
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" : "/host/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"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.