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 macOS (SPM).

Swift 6 data race errors: 5

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/CuriositySoftware/XcodeTargetGraphGen.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
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:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/CuriositySoftware/XcodeTargetGraphGen.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/17] Write sources
[6/17] Write xcgraphgen-entitlement.plist
[6/17] Write sources
[13/17] Write swift-version-6F35C1178C84523A.txt
[15/33] Compiling ArgumentParserToolInfo ToolInfo.swift
[16/33] Emitting module ArgumentParserToolInfo
[17/71] Emitting module PathKit
[18/71] Compiling ArgumentParser ArgumentHelp.swift
[19/71] Compiling ArgumentParser ArgumentVisibility.swift
[20/71] Compiling ArgumentParser CompletionKind.swift
[21/71] Compiling ArgumentParser Errors.swift
[22/75] Compiling ArgumentParser Platform.swift
[23/75] Compiling ArgumentParser SequenceExtensions.swift
[24/75] Compiling ArgumentParser StringExtensions.swift
[25/75] Compiling ArgumentParser Tree.swift
[26/75] Emitting module ArgumentParser
[27/75] Compiling ArgumentParser InputOrigin.swift
[28/75] Compiling ArgumentParser Name.swift
[29/75] Compiling ArgumentParser Parsed.swift
[30/75] Compiling ArgumentParser ParsedValues.swift
[31/75] Compiling ArgumentParser ArgumentDefinition.swift
[32/75] Compiling ArgumentParser ArgumentSet.swift
[33/75] Compiling ArgumentParser CommandParser.swift
[34/75] Compiling ArgumentParser InputKey.swift
[35/75] Compiling ArgumentParser BashCompletionsGenerator.swift
[36/75] Compiling ArgumentParser CompletionsGenerator.swift
[37/75] Compiling ArgumentParser FishCompletionsGenerator.swift
[38/75] Compiling ArgumentParser ZshCompletionsGenerator.swift
[39/75] Compiling ArgumentParser Argument.swift
[40/75] Emitting module Value
[41/75] Compiling Value Project.swift
[42/75] Compiling PathKit PathKit.swift
[43/75] Compiling AEXML Parser.swift
[44/75] Compiling AEXML Options.swift
[45/75] Compiling ArgumentParser ParserError.swift
[46/75] Compiling ArgumentParser SplitArguments.swift
[47/75] Compiling ArgumentParser DumpHelpGenerator.swift
[48/75] Compiling ArgumentParser HelpCommand.swift
[49/75] Compiling Client FileOutputClient.swift
/Users/admin/builder/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)
[50/75] Compiling Client FileListReaderClient.swift
/Users/admin/builder/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)
[51/75] Compiling Client ConsoleClient.swift
/Users/admin/builder/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)
[52/75] Emitting module Client
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
[53/75] Compiling AEXML Element.swift
[54/75] Compiling AEXML Error.swift
[55/75] Emitting module AEXML
[56/75] Compiling AEXML Document.swift
[57/78] Compiling ArgumentParser Flag.swift
[58/78] Compiling ArgumentParser NameSpecification.swift
[59/78] Compiling ArgumentParser Option.swift
[60/78] Compiling ArgumentParser OptionGroup.swift
[61/78] Compiling ArgumentParser AsyncParsableCommand.swift
[62/78] Compiling ArgumentParser CommandConfiguration.swift
[63/78] Compiling ArgumentParser EnumerableFlag.swift
[64/78] Compiling ArgumentParser ExpressibleByArgument.swift
[65/78] Compiling ArgumentParser ParsableArguments.swift
[66/78] Compiling ArgumentParser ParsableArgumentsValidation.swift
[67/78] Compiling ArgumentParser ParsableCommand.swift
[68/78] Compiling ArgumentParser ArgumentDecoder.swift
[69/78] Compiling ArgumentParser HelpGenerator.swift
[70/78] Compiling ArgumentParser MessageInfo.swift
[71/78] Compiling ArgumentParser UsageGenerator.swift
[72/78] Compiling ArgumentParser CollectionExtensions.swift
[73/167] Compiling Converter FormatterRepresentation.swift
[74/167] Emitting module Converter
[75/167] Compiling Converter ProjectConverter.swift
[76/172] Compiling Mermaid SubgraphFormatter.swift
[77/172] Compiling Mermaid NodeEdgeFormatter.swift
[78/172] Compiling Mermaid SyntaxType.swift
[79/172] Compiling Mermaid MermaidFormatter.swift
[80/172] Emitting module Mermaid
[81/172] Compiling XcodeProj Errors.swift
[82/172] Compiling XcodeProj AEXML+XcodeFormat.swift
[83/172] Compiling XcodeProj Array+Extras.swift
[84/172] Compiling XcodeProj Bool+Extras.swift
[85/172] Compiling XcodeProj Dictionary+Enumerate.swift
[86/172] Compiling XcodeProj Dictionary+Extras.swift
[87/172] Compiling XcodeProj KeyedDecodingContainer+Additions.swift
[88/172] Compiling XcodeProj NSRecursiveLock+Sync.swift
[89/172] Compiling XcodeProj Path+Extras.swift
[90/172] Compiling XcodeProj String+Utils.swift
[91/181] Compiling XcodeProj XCScheme+TestPlanReference.swift
[92/181] Compiling XcodeProj XCScheme+TestableReference.swift
[93/181] Compiling XcodeProj XCScheme.swift
[94/181] Compiling XcodeProj XCSchemeManagement.swift
[95/181] Compiling XcodeProj BuildSettingsProvider.swift
[96/181] Compiling XcodeProj CommentedString.swift
[97/181] Compiling XcodeProj Decoders.swift
[98/181] Compiling XcodeProj JSONDecoding.swift
[99/181] Compiling XcodeProj PBXBatchUpdater.swift
[100/181] Compiling XcodeProj PlistValue.swift
[101/181] Compiling XcodeProj ReferenceGenerator.swift
[102/181] Compiling XcodeProj XCConfig.swift
[103/181] Compiling XcodeProj XCWorkspace.swift
[104/181] Compiling XcodeProj XCWorkspaceData.swift
[105/181] Compiling XcodeProj XCWorkspaceDataElement.swift
[106/181] Compiling XcodeProj XCWorkspaceDataElementLocationType.swift
[107/181] Compiling XcodeProj XCWorkspaceDataFileRef.swift
[108/181] Compiling XcodeProj XCWorkspaceDataGroup.swift
[109/181] Compiling XcodeProj XCScheme+AditionalOption.swift
[110/181] Compiling XcodeProj XCScheme+AnalyzeAction.swift
[111/181] Compiling XcodeProj XCScheme+ArchiveAction.swift
[112/181] Compiling XcodeProj XCScheme+BuildAction.swift
[113/181] Compiling XcodeProj XCScheme+BuildableProductRunnable.swift
[114/181] Compiling XcodeProj XCScheme+BuildableReference.swift
[115/181] Compiling XcodeProj XCScheme+CommandLineArguments.swift
[116/181] Compiling XcodeProj XCScheme+EnvironmentVariable.swift
[117/181] Compiling XcodeProj XCScheme+ExecutionAction.swift
[118/181] Compiling XcodeProj XCScheme+LaunchAction.swift
[119/181] Compiling XcodeProj PBXProject.swift
[120/181] Compiling XcodeProj Equality.generated.swift
[121/181] Compiling XcodeProj Sourcery.swift
[122/181] Compiling XcodeProj XCRemoteSwiftPackageReference.swift
[123/181] Compiling XcodeProj XCSwiftPackageProductDependency.swift
[124/181] Compiling XcodeProj PBXAggregateTarget.swift
[125/181] Compiling XcodeProj PBXLegacyTarget.swift
[126/181] Compiling XcodeProj PBXNativeTarget.swift
[127/181] Compiling XcodeProj PBXProductType.swift
[128/181] Compiling XcodeProj PBXReferenceProxy.swift
[129/181] Compiling XcodeProj XCScheme+LocationScenarioReference.swift
[130/181] Compiling XcodeProj XCScheme+PathRunnable.swift
[131/181] Compiling XcodeProj XCScheme+ProfileAction.swift
[132/181] Compiling XcodeProj XCScheme+RemoteRunnable.swift
[133/181] Compiling XcodeProj XCScheme+Runnable.swift
[134/181] Compiling XcodeProj XCScheme+SerialAction.swift
[135/181] Compiling XcodeProj XCScheme+StoreKitConfigurationFileReference.swift
[136/181] Compiling XcodeProj XCScheme+TestAction.swift
[137/181] Compiling XcodeProj XCScheme+TestItem.swift
[138/181] Compiling XcodeProj PBXTarget.swift
[139/181] Compiling XcodeProj PBXTargetDependency.swift
[140/181] Compiling XcodeProj WorkspaceSettings.swift
[141/181] Compiling XcodeProj XCBreakpointList.swift
[142/181] Compiling XcodeProj XCDebugger.swift
[143/181] Compiling XcodeProj XCSharedData.swift
[144/181] Compiling XcodeProj XCUserData.swift
[145/181] Compiling XcodeProj Xcode.swift
[146/181] Compiling XcodeProj XcodeProj.swift
[147/181] Compiling XcodeProj Writable.swift
[148/181] Compiling XcodeProj PBXShellScriptBuildPhase.swift
[149/181] Compiling XcodeProj PBXSourcesBuildPhase.swift
[150/181] Compiling XcodeProj BuildSettings.swift
[151/181] Compiling XcodeProj XCBuildConfiguration.swift
[152/181] Compiling XcodeProj XCConfigurationList.swift
[153/181] Compiling XcodeProj PBXContainerItem.swift
[154/181] Compiling XcodeProj PBXContainerItemProxy.swift
[155/181] Compiling XcodeProj PBXFileElement.swift
[156/181] Compiling XcodeProj PBXFileReference.swift
[157/181] Compiling XcodeProj PBXGroup.swift
[158/181] Compiling XcodeProj String+md5.swift
[159/181] Compiling XcodeProj BuildPhase.swift
[160/181] Compiling XcodeProj PBXBuildFile.swift
[161/181] Compiling XcodeProj PBXBuildPhase.swift
[162/181] Compiling XcodeProj PBXBuildRule.swift
[163/181] Compiling XcodeProj PBXCopyFilesBuildPhase.swift
[164/181] Compiling XcodeProj PBXFrameworksBuildPhase.swift
[165/181] Compiling XcodeProj PBXHeadersBuildPhase.swift
[166/181] Compiling XcodeProj PBXResourcesBuildPhase.swift
[167/181] Compiling XcodeProj PBXRezBuildPhase.swift
[168/181] Compiling XcodeProj PBXSourceTree.swift
[169/181] Compiling XcodeProj PBXVariantGroup.swift
[170/181] Compiling XcodeProj XCVersionGroup.swift
[171/181] Compiling XcodeProj PBXObject.swift
[172/181] Compiling XcodeProj PBXObjectParser.swift
[173/181] Compiling XcodeProj PBXObjectReference.swift
[174/181] Compiling XcodeProj PBXObjects.swift
[175/181] Compiling XcodeProj PBXOutputSettings.swift
[176/181] Compiling XcodeProj PBXProj.swift
[177/181] Compiling XcodeProj PBXProjEncoder.swift
[178/181] Emitting module XcodeProj
[179/184] Emitting module Generator
/Users/admin/builder/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)
[180/184] Compiling Generator Generator.swift
/Users/admin/builder/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)
/Users/admin/builder/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)
/Users/admin/builder/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)
[181/184] Compiling Generator ProjectMaker.swift
/Users/admin/builder/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)
[182/186] Compiling XcodeTargetGraphGen XcodeTargetGraphGenCommand.swift
/Users/admin/builder/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.",
[183/186] Emitting module XcodeTargetGraphGen
/Users/admin/builder/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.",
[183/186] Write Objects.LinkFileList
[184/186] Linking xcgraphgen
[185/186] Applying xcgraphgen
Build complete! (40.90s)
Fetching https://github.com/kylef/Spectre.git
Fetching https://github.com/tadija/AEXML.git
Fetching https://github.com/tuist/XcodeProj.git
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/kylef/PathKit.git
[1/1411] Fetching pathkit
[16/2432] Fetching pathkit, spectre
[815/4527] Fetching pathkit, spectre, aexml
Fetched https://github.com/kylef/PathKit.git from cache (0.93s)
[834/3116] Fetching spectre, aexml
[1044/14795] Fetching spectre, aexml, swift-argument-parser
[2427/35269] Fetching spectre, aexml, swift-argument-parser, xcodeproj
Fetched https://github.com/apple/swift-argument-parser from cache (2.19s)
Fetched https://github.com/kylef/Spectre.git from cache (2.19s)
Fetched https://github.com/tadija/AEXML.git from cache (2.19s)
Fetched https://github.com/tuist/XcodeProj.git from cache (2.19s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.2.2 (0.71s)
Computing version for https://github.com/tuist/XcodeProj.git
Computed https://github.com/tuist/XcodeProj.git at 8.10.0 (0.68s)
Computing version for https://github.com/kylef/PathKit.git
Computed https://github.com/kylef/PathKit.git at 1.0.1 (2.58s)
Computing version for https://github.com/tadija/AEXML.git
Computed https://github.com/tadija/AEXML.git at 4.6.1 (0.69s)
Computing version for https://github.com/kylef/Spectre.git
Computed https://github.com/kylef/Spectre.git at 0.10.1 (0.68s)
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/PathKit.git
Working copy of https://github.com/kylef/PathKit.git resolved at 1.0.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/tuist/XcodeProj.git
Working copy of https://github.com/tuist/XcodeProj.git resolved at 8.10.0
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
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" : "/Users/admin/builder/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.