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 XcodeTargetGraphGen with Swift 6.0 for Linux.

Swift 6 data race errors: 5

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/CuriositySoftware/XcodeTargetGraphGen.git
Reference: main
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/CuriositySoftware/XcodeTargetGraphGen
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 011590f Merge pull request #17 from CuriositySoftware/yimajo-patch-1
Cloned https://github.com/CuriositySoftware/XcodeTargetGraphGen.git
Revision (git rev-parse @):
011590fdc91172790caebd9c0a2a788d37f222ce
SUCCESS checkout https://github.com/CuriositySoftware/XcodeTargetGraphGen.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/CuriositySoftware/XcodeTargetGraphGen.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Fetching https://github.com/tuist/XcodeProj.git
Fetching https://github.com/kylef/Spectre.git
Fetching https://github.com/kylef/PathKit.git
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/tadija/AEXML.git
[1/1021] Fetching spectre
[165/3116] Fetching spectre, aexml
[1228/4527] Fetching spectre, aexml, pathkit
Fetched https://github.com/kylef/PathKit.git from cache (0.27s)
Fetched https://github.com/kylef/Spectre.git from cache (0.27s)
Fetched https://github.com/tadija/AEXML.git from cache (0.27s)
[1/20452] Fetching xcodeproj
[8182/32131] Fetching xcodeproj, swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.18s)
Fetched https://github.com/tuist/XcodeProj.git from cache (1.20s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.2.2 (0.45s)
Computing version for https://github.com/tuist/XcodeProj.git
Computed https://github.com/tuist/XcodeProj.git at 8.10.0 (0.43s)
Computing version for https://github.com/kylef/PathKit.git
Computed https://github.com/kylef/PathKit.git at 1.0.1 (1.04s)
Computing version for https://github.com/tadija/AEXML.git
Computed https://github.com/tadija/AEXML.git at 4.6.1 (0.43s)
Computing version for https://github.com/kylef/Spectre.git
Computed https://github.com/kylef/Spectre.git at 0.10.1 (0.43s)
Creating working copy for https://github.com/tuist/XcodeProj.git
Working copy of https://github.com/tuist/XcodeProj.git resolved at 8.10.0
Creating working copy for https://github.com/tadija/AEXML.git
Working copy of https://github.com/tadija/AEXML.git resolved at 4.6.1
Creating working copy for https://github.com/kylef/Spectre.git
Working copy of https://github.com/kylef/Spectre.git resolved at 0.10.1
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.2.2
Creating working copy for https://github.com/kylef/PathKit.git
Working copy of https://github.com/kylef/PathKit.git resolved at 1.0.1
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/26] Write sources
[12/26] Write swift-version-24593BA9C3E375BF.txt
[14/42] Emitting module ArgumentParserToolInfo
[15/42] Compiling ArgumentParserToolInfo ToolInfo.swift
[16/44] Wrapping AST for ArgumentParserToolInfo for debugging
[18/80] Emitting module Client
/host/spi-builder-workspace/Sources/Client/ConsoleClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'ConsoleClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ConsoleClient {
   |               `- note: consider making struct 'ConsoleClient' conform to the 'Sendable' protocol
 4 |     public var log: (_ text: String) -> Void
 5 | }
 6 |
 7 | public extension ConsoleClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'ConsoleClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { text in
10 |             print(text)
/host/spi-builder-workspace/Sources/Client/FileListReaderClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct FileListReaderClient {
   |               `- note: consider making struct 'FileListReaderClient' conform to the 'Sendable' protocol
 4 |     public var read: (_ fileURL: URL) throws -> [String]
 5 | }
 6 |
 7 | public extension FileListReaderClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { url in
10 |             let content = try String(contentsOf: url, encoding: .utf8)
/host/spi-builder-workspace/Sources/Client/FileOutputClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileOutputClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct FileOutputClient {
   |               `- note: consider making struct 'FileOutputClient' conform to the 'Sendable' protocol
 4 |     public var write: (_ text: String, _ url: URL) throws -> Void
 5 | }
 6 |
 7 | public extension FileOutputClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileOutputClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { text, url in
10 |             try text.write(to: url, atomically: true, encoding: .utf8)
[19/80] Compiling Client ConsoleClient.swift
/host/spi-builder-workspace/Sources/Client/ConsoleClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'ConsoleClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ConsoleClient {
   |               `- note: consider making struct 'ConsoleClient' conform to the 'Sendable' protocol
 4 |     public var log: (_ text: String) -> Void
 5 | }
 6 |
 7 | public extension ConsoleClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'ConsoleClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { text in
10 |             print(text)
[20/80] Emitting module Value
[21/80] Compiling Value Project.swift
[22/80] Compiling AEXML Parser.swift
[23/80] Compiling Client FileListReaderClient.swift
/host/spi-builder-workspace/Sources/Client/FileListReaderClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct FileListReaderClient {
   |               `- note: consider making struct 'FileListReaderClient' conform to the 'Sendable' protocol
 4 |     public var read: (_ fileURL: URL) throws -> [String]
 5 | }
 6 |
 7 | public extension FileListReaderClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { url in
10 |             let content = try String(contentsOf: url, encoding: .utf8)
[24/80] Compiling Client FileOutputClient.swift
/host/spi-builder-workspace/Sources/Client/FileOutputClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileOutputClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct FileOutputClient {
   |               `- note: consider making struct 'FileOutputClient' conform to the 'Sendable' protocol
 4 |     public var write: (_ text: String, _ url: URL) throws -> Void
 5 | }
 6 |
 7 | public extension FileOutputClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileOutputClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { text, url in
10 |             try text.write(to: url, atomically: true, encoding: .utf8)
[25/81] Compiling AEXML Error.swift
[26/81] Compiling AEXML Options.swift
[27/81] Compiling AEXML Element.swift
[28/81] Emitting module AEXML
[29/81] Compiling AEXML Document.swift
[32/83] Emitting module ArgumentParser
[33/88] Wrapping AST for Client for debugging
[34/88] Wrapping AST for Value for debugging
[35/90] Wrapping AST for AEXML for debugging
[37/91] Compiling ArgumentParser BashCompletionsGenerator.swift
[38/91] Compiling ArgumentParser CompletionsGenerator.swift
[39/91] Compiling ArgumentParser FishCompletionsGenerator.swift
[40/91] Compiling ArgumentParser ZshCompletionsGenerator.swift
[41/91] Compiling ArgumentParser Argument.swift
[42/91] Compiling ArgumentParser ArgumentHelp.swift
[43/91] Emitting module Converter
[44/91] Compiling Converter FormatterRepresentation.swift
[45/91] Compiling Converter ProjectConverter.swift
[46/92] Emitting module PathKit
[47/92] Compiling PathKit PathKit.swift
[49/93] Wrapping AST for Converter for debugging
[50/96] Wrapping AST for PathKit for debugging
[52/98] Compiling ArgumentParser CollectionExtensions.swift
[53/98] Compiling ArgumentParser Platform.swift
[54/98] Compiling ArgumentParser SequenceExtensions.swift
[55/98] Compiling ArgumentParser StringExtensions.swift
[56/98] Compiling ArgumentParser Tree.swift
[57/98] Compiling ArgumentParser Option.swift
[58/98] Compiling ArgumentParser OptionGroup.swift
[59/98] Compiling ArgumentParser AsyncParsableCommand.swift
[60/98] Compiling ArgumentParser CommandConfiguration.swift
[61/98] Compiling ArgumentParser EnumerableFlag.swift
[62/98] Compiling ArgumentParser ArgumentVisibility.swift
[63/98] Compiling ArgumentParser CompletionKind.swift
[64/98] Compiling ArgumentParser Errors.swift
[65/98] Compiling ArgumentParser Flag.swift
[66/98] Compiling ArgumentParser NameSpecification.swift
[67/154] Compiling Mermaid NodeEdgeFormatter.swift
[68/154] Compiling Mermaid SyntaxType.swift
[69/154] Compiling Mermaid SubgraphFormatter.swift
[70/184] Compiling XcodeProj PBXSourcesBuildPhase.swift
[71/184] Compiling XcodeProj BuildSettings.swift
[72/184] Compiling XcodeProj XCBuildConfiguration.swift
[73/184] Compiling XcodeProj XCConfigurationList.swift
[74/184] Compiling XcodeProj PBXOutputSettings.swift
[75/184] Compiling XcodeProj PBXProj.swift
[76/184] Compiling XcodeProj PBXProjEncoder.swift
[77/184] Compiling XcodeProj PBXProject.swift
[78/184] Compiling XcodeProj Equality.generated.swift
[79/184] Compiling XcodeProj Sourcery.swift
[80/184] Emitting module Mermaid
[81/184] Compiling Mermaid MermaidFormatter.swift
[83/185] Compiling XcodeProj XCRemoteSwiftPackageReference.swift
[84/185] Compiling XcodeProj XCSwiftPackageProductDependency.swift
[85/185] Compiling XcodeProj PBXAggregateTarget.swift
[86/185] Compiling XcodeProj PBXLegacyTarget.swift
[87/185] Compiling XcodeProj PBXNativeTarget.swift
[88/185] Compiling XcodeProj PBXFrameworksBuildPhase.swift
[89/185] Compiling XcodeProj PBXHeadersBuildPhase.swift
[90/185] Compiling XcodeProj PBXResourcesBuildPhase.swift
[91/185] Compiling XcodeProj PBXRezBuildPhase.swift
[92/185] Compiling XcodeProj PBXShellScriptBuildPhase.swift
[92/186] Wrapping AST for Mermaid for debugging
[94/186] Wrapping AST for ArgumentParser for debugging
[96/186] Compiling XcodeProj PBXBuildPhase.swift
[97/186] Compiling XcodeProj PBXBuildRule.swift
[98/186] Compiling XcodeProj PBXCopyFilesBuildPhase.swift
[108/198] Compiling XcodeProj Errors.swift
[109/198] Compiling XcodeProj AEXML+XcodeFormat.swift
[110/198] Compiling XcodeProj Array+Extras.swift
[111/198] Compiling XcodeProj Bool+Extras.swift
[112/198] Compiling XcodeProj Dictionary+Enumerate.swift
[113/198] Compiling XcodeProj Dictionary+Extras.swift
[114/198] Compiling XcodeProj KeyedDecodingContainer+Additions.swift
[115/198] Compiling XcodeProj NSRecursiveLock+Sync.swift
[116/198] Compiling XcodeProj Path+Extras.swift
[117/198] Compiling XcodeProj String+Utils.swift
[118/198] Compiling XcodeProj String+md5.swift
[119/198] Compiling XcodeProj BuildPhase.swift
[120/198] Compiling XcodeProj PBXBuildFile.swift
[121/198] Emitting module XcodeProj
[122/198] Compiling XcodeProj XCScheme+AnalyzeAction.swift
[123/198] Compiling XcodeProj XCScheme+ArchiveAction.swift
[124/198] Compiling XcodeProj XCScheme+BuildAction.swift
[125/198] Compiling XcodeProj XCScheme+BuildableProductRunnable.swift
[126/198] Compiling XcodeProj XCScheme+BuildableReference.swift
[127/198] Compiling XcodeProj XCScheme+CommandLineArguments.swift
[128/198] Compiling XcodeProj XCScheme+EnvironmentVariable.swift
[129/198] Compiling XcodeProj XCScheme+ExecutionAction.swift
[130/198] Compiling XcodeProj XCScheme+LaunchAction.swift
[131/198] Compiling XcodeProj XCScheme+LocationScenarioReference.swift
[132/198] Compiling XcodeProj XCScheme+PathRunnable.swift
[133/198] Compiling XcodeProj XCScheme+ProfileAction.swift
[134/198] Compiling XcodeProj PBXReferenceProxy.swift
[135/198] Compiling XcodeProj PBXTarget.swift
[136/198] Compiling XcodeProj PBXTargetDependency.swift
[137/198] Compiling XcodeProj WorkspaceSettings.swift
[138/198] Compiling XcodeProj XCBreakpointList.swift
[139/198] Compiling XcodeProj XCDebugger.swift
[140/198] Compiling XcodeProj XCSharedData.swift
[141/198] Compiling XcodeProj XCUserData.swift
[142/198] Compiling XcodeProj Xcode.swift
[143/198] Compiling XcodeProj XcodeProj.swift
[144/198] Compiling XcodeProj Writable.swift
[145/198] Compiling XcodeProj XCScheme+AditionalOption.swift
[146/198] Compiling XcodeProj XCScheme+RemoteRunnable.swift
[147/198] Compiling XcodeProj XCScheme+Runnable.swift
[148/198] Compiling XcodeProj XCScheme+SerialAction.swift
[149/198] Compiling XcodeProj XCScheme+StoreKitConfigurationFileReference.swift
[150/198] Compiling XcodeProj XCScheme+TestAction.swift
[151/198] Compiling XcodeProj XCScheme+TestItem.swift
[152/198] Compiling XcodeProj XCScheme+TestPlanReference.swift
[153/198] Compiling XcodeProj XCScheme+TestableReference.swift
[154/198] Compiling XcodeProj XCScheme.swift
[155/198] Compiling XcodeProj XCSchemeManagement.swift
[156/198] Compiling XcodeProj BuildSettingsProvider.swift
[157/198] Compiling XcodeProj CommentedString.swift
[158/198] Compiling XcodeProj PBXContainerItem.swift
[159/198] Compiling XcodeProj PBXContainerItemProxy.swift
[160/198] Compiling XcodeProj PBXFileElement.swift
[161/198] Compiling XcodeProj PBXFileReference.swift
[162/198] Compiling XcodeProj PBXGroup.swift
[163/198] Compiling XcodeProj PBXSourceTree.swift
[164/198] Compiling XcodeProj PBXVariantGroup.swift
[165/198] Compiling XcodeProj XCVersionGroup.swift
[166/198] Compiling XcodeProj PBXObject.swift
[167/198] Compiling XcodeProj PBXObjectParser.swift
[168/198] Compiling XcodeProj PBXObjectReference.swift
[169/198] Compiling XcodeProj PBXObjects.swift
[181/198] Compiling XcodeProj PBXProductType.swift
[182/198] Compiling XcodeProj Decoders.swift
[183/198] Compiling XcodeProj JSONDecoding.swift
[184/198] Compiling XcodeProj PBXBatchUpdater.swift
[185/198] Compiling XcodeProj PlistValue.swift
[186/198] Compiling XcodeProj ReferenceGenerator.swift
[187/198] Compiling XcodeProj XCConfig.swift
[188/198] Compiling XcodeProj XCWorkspace.swift
[189/198] Compiling XcodeProj XCWorkspaceData.swift
[190/198] Compiling XcodeProj XCWorkspaceDataElement.swift
[191/198] Compiling XcodeProj XCWorkspaceDataElementLocationType.swift
[192/198] Compiling XcodeProj XCWorkspaceDataFileRef.swift
[193/198] Compiling XcodeProj XCWorkspaceDataGroup.swift
[194/199] Wrapping AST for XcodeProj for debugging
[196/202] Compiling Generator Generator.swift
/host/spi-builder-workspace/Sources/Client/ConsoleClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'ConsoleClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct ConsoleClient {
   |               `- note: consider making struct 'ConsoleClient' conform to the 'Sendable' protocol
 4 |     public var log: (_ text: String) -> Void
 5 | }
 6 |
 7 | public extension ConsoleClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'ConsoleClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { text in
10 |             print(text)
/host/spi-builder-workspace/Sources/Client/FileListReaderClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct FileListReaderClient {
   |               `- note: consider making struct 'FileListReaderClient' conform to the 'Sendable' protocol
 4 |     public var read: (_ fileURL: URL) throws -> [String]
 5 | }
 6 |
 7 | public extension FileListReaderClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { url in
10 |             let content = try String(contentsOf: url, encoding: .utf8)
/host/spi-builder-workspace/Sources/Client/FileOutputClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileOutputClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct FileOutputClient {
   |               `- note: consider making struct 'FileOutputClient' conform to the 'Sendable' protocol
 4 |     public var write: (_ text: String, _ url: URL) throws -> Void
 5 | }
 6 |
 7 | public extension FileOutputClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileOutputClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { text, url in
10 |             try text.write(to: url, atomically: true, encoding: .utf8)
[197/202] Emitting module Generator
/host/spi-builder-workspace/Sources/Client/FileListReaderClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct FileListReaderClient {
   |               `- note: consider making struct 'FileListReaderClient' conform to the 'Sendable' protocol
 4 |     public var read: (_ fileURL: URL) throws -> [String]
 5 | }
 6 |
 7 | public extension FileListReaderClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { url in
10 |             let content = try String(contentsOf: url, encoding: .utf8)
[198/202] Compiling Generator ProjectMaker.swift
/host/spi-builder-workspace/Sources/Client/FileListReaderClient.swift:8:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public struct FileListReaderClient {
   |               `- note: consider making struct 'FileListReaderClient' conform to the 'Sendable' protocol
 4 |     public var read: (_ fileURL: URL) throws -> [String]
 5 | }
 6 |
 7 | public extension FileListReaderClient {
 8 |     static let live: Self = {
   |                |- warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'FileListReaderClient' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'live' with '@MainActor' 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 |         .init { url in
10 |             let content = try String(contentsOf: url, encoding: .utf8)
[199/203] Wrapping AST for Generator for debugging
[201/205] Emitting module XcodeTargetGraphGen
/host/spi-builder-workspace/Sources/XcodeTargetGraphGen/XcodeTargetGraphGenCommand.swift:7:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @main
 6 | struct XcodeTargetGraphGenCommand: ParsableCommand {
 7 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |         commandName: "xcgraphgen",
 9 |         abstract: "Output Xcode Target Dependency Graph.",
[202/205] Compiling XcodeTargetGraphGen XcodeTargetGraphGenCommand.swift
/host/spi-builder-workspace/Sources/XcodeTargetGraphGen/XcodeTargetGraphGenCommand.swift:7:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @main
 6 | struct XcodeTargetGraphGenCommand: ParsableCommand {
 7 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |         commandName: "xcgraphgen",
 9 |         abstract: "Output Xcode Target Dependency Graph.",
[203/206] Wrapping AST for XcodeTargetGraphGen for debugging
[204/206] Write Objects.LinkFileList
[205/206] Linking xcgraphgen
Build complete! (31.14s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "xcodeproj",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "8.10.0",
            "upper_bound" : "9.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tuist/XcodeProj.git"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    }
  ],
  "manifest_display_name" : "XcodeTargetGraphGen",
  "name" : "XcodeTargetGraphGen",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "xcgraphgen",
      "targets" : [
        "XcodeTargetGraphGen"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XcodeTargetGraphGenTests",
      "module_type" : "SwiftTarget",
      "name" : "XcodeTargetGraphGenTests",
      "path" : "Tests",
      "sources" : [
        "FileOutputClientTests.swift",
        "MermaidFormatterTests.swift",
        "NodeEdgeFormatterTests.swift",
        "ProjectConverterTests.swift",
        "SubgraphFormatterTests.swift"
      ],
      "target_dependencies" : [
        "XcodeTargetGraphGen",
        "Mermaid"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XcodeTargetGraphGen",
      "module_type" : "SwiftTarget",
      "name" : "XcodeTargetGraphGen",
      "path" : "Sources/XcodeTargetGraphGen",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "xcgraphgen"
      ],
      "sources" : [
        "XcodeTargetGraphGenCommand.swift"
      ],
      "target_dependencies" : [
        "Generator"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "Value",
      "module_type" : "SwiftTarget",
      "name" : "Value",
      "path" : "Sources/Value",
      "product_memberships" : [
        "xcgraphgen"
      ],
      "sources" : [
        "Project.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Mermaid",
      "module_type" : "SwiftTarget",
      "name" : "Mermaid",
      "path" : "Sources/Formatter",
      "product_memberships" : [
        "xcgraphgen"
      ],
      "sources" : [
        "Mermaid/MermaidFormatter.swift",
        "Mermaid/NodeEdgeFormatter.swift",
        "Mermaid/SubgraphFormatter.swift",
        "Mermaid/SyntaxType.swift"
      ],
      "target_dependencies" : [
        "Converter"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Generator",
      "module_type" : "SwiftTarget",
      "name" : "Generator",
      "path" : "Sources/Generator",
      "product_dependencies" : [
        "XcodeProj"
      ],
      "product_memberships" : [
        "xcgraphgen"
      ],
      "sources" : [
        "Generator.swift",
        "ProjectMaker.swift"
      ],
      "target_dependencies" : [
        "Mermaid",
        "Client",
        "Value"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Converter",
      "module_type" : "SwiftTarget",
      "name" : "Converter",
      "path" : "Sources/Converter",
      "product_memberships" : [
        "xcgraphgen"
      ],
      "sources" : [
        "FormatterRepresentation.swift",
        "ProjectConverter.swift"
      ],
      "target_dependencies" : [
        "Value"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Client",
      "module_type" : "SwiftTarget",
      "name" : "Client",
      "path" : "Sources/Client",
      "product_memberships" : [
        "xcgraphgen"
      ],
      "sources" : [
        "ConsoleClient.swift",
        "FileListReaderClient.swift",
        "FileOutputClient.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.