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 AST, reference main (cad7c2), with Swift 6.0 for macOS (SPM) on 15 Sep 2024 01:25:05 UTC.

Swift 6 data race errors: 6

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Release.Candidate.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.53.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/AnarchoSystems/AST.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/AnarchoSystems/AST
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at cad7c2c associated type changed
Cloned https://github.com/AnarchoSystems/AST.git
Revision (git rev-parse @):
cad7c2c4127a5e79a48991e33db5a787fb2b0506
SUCCESS checkout https://github.com/AnarchoSystems/AST.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/AnarchoSystems/AST.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Release.Candidate.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/10] Write sources
[3/10] Write MakeTestGrammarSources-tool-entitlement.plist
[5/10] Write sources
[6/10] Write swift-version-117DEE11B69C53C9.txt
[8/27] Emitting module ArgumentParserToolInfo
[9/27] Compiling ArgumentParserToolInfo ToolInfo.swift
[10/65] Compiling AST Stack.swift
[11/66] Compiling AST Utils.swift
[12/66] Compiling ArgumentParser ArgumentHelp.swift
[13/66] Compiling ArgumentParser ArgumentVisibility.swift
[14/66] Compiling ArgumentParser CompletionKind.swift
[15/66] Compiling ArgumentParser Errors.swift
[16/70] Emitting module ArgumentParser
[17/70] Compiling ArgumentParser BashCompletionsGenerator.swift
[18/70] Compiling ArgumentParser CompletionsGenerator.swift
[19/70] Compiling ArgumentParser FishCompletionsGenerator.swift
[20/70] Compiling ArgumentParser ZshCompletionsGenerator.swift
[21/70] Compiling ArgumentParser Argument.swift
[22/70] Compiling ArgumentParser ParsableArguments.swift
[23/70] Compiling ArgumentParser ParsableArgumentsValidation.swift
[24/70] Compiling ArgumentParser ParsableCommand.swift
[25/70] Compiling ArgumentParser ArgumentDecoder.swift
[26/70] Compiling ArgumentParser Platform.swift
[27/70] Compiling ArgumentParser SequenceExtensions.swift
[28/70] Compiling ArgumentParser StringExtensions.swift
[29/70] Compiling ArgumentParser Tree.swift
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:9:10: warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
   |          `- warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
12 | }
13 |
14 | public enum ParserGenerationError {
   |             `- note: consider making enum 'ParserGenerationError' conform to the 'Sendable' protocol
15 |     case shiftReduceConflict
16 |     case reduceReduceConflict(meta1: String, meta2: String, rule1: String, rule2: String)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:10:10: warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
   |          `- warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
11 |     case parserRuntime(ParserRuntimeError)
12 | }
   :
18 | }
19 |
20 | public enum ParserDefinitionError {
   |             `- note: consider making enum 'ParserDefinitionError' conform to the 'Sendable' protocol
21 |     case undefinedState
22 |     case noGoto(nonTerminal: String, state: Int)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:11:10: warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
   |          `- warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
12 | }
13 |
   :
26 | }
27 |
28 | public enum ParserRuntimeError {
   |             `- note: consider making enum 'ParserRuntimeError' conform to the 'Sendable' protocol
29 |     case unexpectedSymbol(String, expecting: [String])
30 |     case stackCorrupted(popped: Any, expecting: String)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:9:10: warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
   |          `- warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
12 | }
13 |
14 | public enum ParserGenerationError {
   |             `- note: consider making enum 'ParserGenerationError' conform to the 'Sendable' protocol
15 |     case shiftReduceConflict
16 |     case reduceReduceConflict(meta1: String, meta2: String, rule1: String, rule2: String)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:10:10: warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
   |          `- warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
11 |     case parserRuntime(ParserRuntimeError)
12 | }
   :
18 | }
19 |
20 | public enum ParserDefinitionError {
   |             `- note: consider making enum 'ParserDefinitionError' conform to the 'Sendable' protocol
21 |     case undefinedState
22 |     case noGoto(nonTerminal: String, state: Int)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:11:10: warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
   |          `- warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
12 | }
13 |
   :
26 | }
27 |
28 | public enum ParserRuntimeError {
   |             `- note: consider making enum 'ParserRuntimeError' conform to the 'Sendable' protocol
29 |     case unexpectedSymbol(String, expecting: [String])
30 |     case stackCorrupted(popped: Any, expecting: String)
[34/70] Emitting module AST
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:9:10: warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
   |          `- warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
12 | }
13 |
14 | public enum ParserGenerationError {
   |             `- note: consider making enum 'ParserGenerationError' conform to the 'Sendable' protocol
15 |     case shiftReduceConflict
16 |     case reduceReduceConflict(meta1: String, meta2: String, rule1: String, rule2: String)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:10:10: warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
   |          `- warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
11 |     case parserRuntime(ParserRuntimeError)
12 | }
   :
18 | }
19 |
20 | public enum ParserDefinitionError {
   |             `- note: consider making enum 'ParserDefinitionError' conform to the 'Sendable' protocol
21 |     case undefinedState
22 |     case noGoto(nonTerminal: String, state: Int)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:11:10: warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
   |          `- warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
12 | }
13 |
   :
26 | }
27 |
28 | public enum ParserRuntimeError {
   |             `- note: consider making enum 'ParserRuntimeError' conform to the 'Sendable' protocol
29 |     case unexpectedSymbol(String, expecting: [String])
30 |     case stackCorrupted(popped: Any, expecting: String)
[37/70] Compiling AST PropertyWrappers.swift
[39/70] Compiling ArgumentParser InputOrigin.swift
[40/70] Compiling AST Sourcegen.swift
[41/70] Compiling AST SymbolProtocol.swift
[44/72] Compiling ArgumentParser AsyncParsableCommand.swift
[45/72] Compiling ArgumentParser CommandConfiguration.swift
[46/72] Compiling ArgumentParser EnumerableFlag.swift
[47/72] Compiling ArgumentParser ExpressibleByArgument.swift
[49/72] Compiling ArgumentParser Name.swift
[50/72] Compiling ArgumentParser Parsed.swift
[51/72] Compiling ArgumentParser ParsedValues.swift
[52/72] Compiling ArgumentParser ArgumentDefinition.swift
[53/72] Compiling ArgumentParser ArgumentSet.swift
[54/72] Compiling ArgumentParser CommandParser.swift
[55/72] Compiling ArgumentParser InputKey.swift
[56/72] Compiling ArgumentParser Flag.swift
[57/72] Compiling ArgumentParser NameSpecification.swift
[58/72] Compiling ArgumentParser Option.swift
[59/72] Compiling ArgumentParser OptionGroup.swift
[60/72] Compiling ArgumentParser ParserError.swift
[61/72] Compiling ArgumentParser SplitArguments.swift
[62/72] Compiling ArgumentParser DumpHelpGenerator.swift
[63/72] Compiling ArgumentParser HelpCommand.swift
[64/72] Compiling ArgumentParser HelpGenerator.swift
[65/72] Compiling ArgumentParser MessageInfo.swift
[66/72] Compiling ArgumentParser UsageGenerator.swift
[67/72] Compiling ArgumentParser CollectionExtensions.swift
[68/72] Emitting module TestGrammars
[69/72] Compiling TestGrammars TestGrammars.swift
[70/74] Emitting module MakeTestGrammarSources
[71/74] Compiling MakeTestGrammarSources MakeTestGrammarSources.swift
[71/74] Write Objects.LinkFileList
[72/74] Linking MakeTestGrammarSources-tool
[73/74] Applying MakeTestGrammarSources-tool
Build of product 'MakeTestGrammarSources' complete! (9.61s)
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateTestGrammarSources
Building for debugging...
[2/12] Write sources
[7/12] Write MakeTestGrammarSources-entitlement.plist
[8/12] Write swift-version-117DEE11B69C53C9.txt
[10/29] Compiling ArgumentParserToolInfo ToolInfo.swift
[11/29] Emitting module ArgumentParserToolInfo
[12/67] Compiling ArgumentParser Argument.swift
[13/67] Compiling ArgumentParser AsyncParsableCommand.swift
[14/68] Compiling ArgumentParser Option.swift
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:9:10: warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
   |          `- warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
12 | }
13 |
14 | public enum ParserGenerationError {
   |             `- note: consider making enum 'ParserGenerationError' conform to the 'Sendable' protocol
15 |     case shiftReduceConflict
16 |     case reduceReduceConflict(meta1: String, meta2: String, rule1: String, rule2: String)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:10:10: warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
   |          `- warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
11 |     case parserRuntime(ParserRuntimeError)
12 | }
   :
18 | }
19 |
20 | public enum ParserDefinitionError {
   |             `- note: consider making enum 'ParserDefinitionError' conform to the 'Sendable' protocol
21 |     case undefinedState
22 |     case noGoto(nonTerminal: String, state: Int)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:11:10: warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
   |          `- warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
12 | }
13 |
   :
26 | }
27 |
28 | public enum ParserRuntimeError {
   |             `- note: consider making enum 'ParserRuntimeError' conform to the 'Sendable' protocol
29 |     case unexpectedSymbol(String, expecting: [String])
30 |     case stackCorrupted(popped: Any, expecting: String)
[15/68] Compiling ArgumentParser OptionGroup.swift
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:9:10: warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
   |          `- warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
12 | }
13 |
14 | public enum ParserGenerationError {
   |             `- note: consider making enum 'ParserGenerationError' conform to the 'Sendable' protocol
15 |     case shiftReduceConflict
16 |     case reduceReduceConflict(meta1: String, meta2: String, rule1: String, rule2: String)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:10:10: warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
   |          `- warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
11 |     case parserRuntime(ParserRuntimeError)
12 | }
   :
18 | }
19 |
20 | public enum ParserDefinitionError {
   |             `- note: consider making enum 'ParserDefinitionError' conform to the 'Sendable' protocol
21 |     case undefinedState
22 |     case noGoto(nonTerminal: String, state: Int)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:11:10: warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
   |          `- warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
12 | }
13 |
   :
26 | }
27 |
28 | public enum ParserRuntimeError {
   |             `- note: consider making enum 'ParserRuntimeError' conform to the 'Sendable' protocol
29 |     case unexpectedSymbol(String, expecting: [String])
30 |     case stackCorrupted(popped: Any, expecting: String)
[16/68] Compiling ArgumentParser FishCompletionsGenerator.swift
[17/68] Compiling ArgumentParser ZshCompletionsGenerator.swift
[18/68] Compiling AST Utils.swift
[19/68] Compiling ArgumentParser BashCompletionsGenerator.swift
[20/68] Compiling ArgumentParser CompletionsGenerator.swift
[21/68] Compiling ArgumentParser InputOrigin.swift
[22/68] Compiling ArgumentParser Name.swift
[23/68] Compiling ArgumentParser Parsed.swift
[24/68] Compiling ArgumentParser ParsedValues.swift
[26/72] Compiling ArgumentParser CommandConfiguration.swift
[27/72] Compiling ArgumentParser EnumerableFlag.swift
[28/72] Compiling ArgumentParser ExpressibleByArgument.swift
[29/72] Compiling ArgumentParser ArgumentHelp.swift
[30/72] Compiling ArgumentParser ArgumentVisibility.swift
[31/72] Compiling ArgumentParser CompletionKind.swift
[32/72] Compiling ArgumentParser Errors.swift
[33/72] Compiling AST Sourcegen.swift
[34/72] Compiling AST PropertyWrappers.swift
[35/72] Compiling AST Stack.swift
[36/72] Compiling AST SymbolProtocol.swift
[37/72] Emitting module AST
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:9:10: warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
   |          `- warning: associated value 'parserGeneration' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserGenerationError'; this is an error in the Swift 6 language mode
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
12 | }
13 |
14 | public enum ParserGenerationError {
   |             `- note: consider making enum 'ParserGenerationError' conform to the 'Sendable' protocol
15 |     case shiftReduceConflict
16 |     case reduceReduceConflict(meta1: String, meta2: String, rule1: String, rule2: String)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:10:10: warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
 8 | public enum ASTError : Error {
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
   |          `- warning: associated value 'parserDefinition' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserDefinitionError'; this is an error in the Swift 6 language mode
11 |     case parserRuntime(ParserRuntimeError)
12 | }
   :
18 | }
19 |
20 | public enum ParserDefinitionError {
   |             `- note: consider making enum 'ParserDefinitionError' conform to the 'Sendable' protocol
21 |     case undefinedState
22 |     case noGoto(nonTerminal: String, state: Int)
/Users/admin/builder/spi-builder-workspace/Sources/AST/Errors.swift:11:10: warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
 9 |     case parserGeneration(ParserGenerationError)
10 |     case parserDefinition(ParserDefinitionError)
11 |     case parserRuntime(ParserRuntimeError)
   |          `- warning: associated value 'parserRuntime' of 'Sendable'-conforming enum 'ASTError' has non-sendable type 'ParserRuntimeError'; this is an error in the Swift 6 language mode
12 | }
13 |
   :
26 | }
27 |
28 | public enum ParserRuntimeError {
   |             `- note: consider making enum 'ParserRuntimeError' conform to the 'Sendable' protocol
29 |     case unexpectedSymbol(String, expecting: [String])
30 |     case stackCorrupted(popped: Any, expecting: String)
[38/72] Compiling ArgumentParser Flag.swift
[39/72] Compiling ArgumentParser NameSpecification.swift
[40/74] Compiling ArgumentParser ParserError.swift
[41/74] Compiling ArgumentParser SplitArguments.swift
[42/74] Compiling ArgumentParser DumpHelpGenerator.swift
[43/74] Compiling ArgumentParser HelpCommand.swift
[53/74] Compiling ArgumentParser Platform.swift
[54/74] Compiling ArgumentParser SequenceExtensions.swift
[55/74] Compiling ArgumentParser StringExtensions.swift
[56/74] Compiling ArgumentParser Tree.swift
[57/74] Emitting module ArgumentParser
[58/74] Compiling ArgumentParser HelpGenerator.swift
[59/74] Compiling ArgumentParser MessageInfo.swift
[60/74] Compiling ArgumentParser UsageGenerator.swift
[61/74] Compiling ArgumentParser CollectionExtensions.swift
[62/74] Emitting module TestGrammars
[63/74] Compiling TestGrammars TestGrammars.swift
[64/74] Compiling ArgumentParser ParsableArguments.swift
[65/74] Compiling ArgumentParser ParsableArgumentsValidation.swift
[66/74] Compiling ArgumentParser ParsableCommand.swift
[67/74] Compiling ArgumentParser ArgumentDecoder.swift
[68/74] Compiling ArgumentParser ArgumentDefinition.swift
[69/74] Compiling ArgumentParser ArgumentSet.swift
[70/74] Compiling ArgumentParser CommandParser.swift
[71/74] Compiling ArgumentParser InputKey.swift
[72/76] Emitting module MakeTestGrammarSources
[73/76] Compiling MakeTestGrammarSources MakeTestGrammarSources.swift
[73/76] Write Objects.LinkFileList
[74/76] Linking MakeTestGrammarSources
[75/76] Applying MakeTestGrammarSources
Build complete! (26.10s)
Fetching https://github.com/apple/swift-argument-parser.git
[1/12167] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.53s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.3.0 (0.54s)
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.3.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    }
  ],
  "manifest_display_name" : "AST",
  "name" : "AST",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "AST",
      "targets" : [
        "AST"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "MakeTestGrammarSources",
      "targets" : [
        "MakeTestGrammarSources"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TestGrammars",
      "module_type" : "SwiftTarget",
      "name" : "TestGrammars",
      "path" : "Sources/TestGrammars",
      "product_memberships" : [
        "MakeTestGrammarSources"
      ],
      "sources" : [
        "TestGrammars.swift"
      ],
      "target_dependencies" : [
        "AST"
      ],
      "type" : "library"
    },
    {
      "c99name" : "MakeTestGrammarSources",
      "module_type" : "SwiftTarget",
      "name" : "MakeTestGrammarSources",
      "path" : "Sources/MakeTestGrammarSources",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "MakeTestGrammarSources"
      ],
      "sources" : [
        "MakeTestGrammarSources.swift"
      ],
      "target_dependencies" : [
        "AST",
        "TestGrammars"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "GenerateTestGrammarSources",
      "module_type" : "PluginTarget",
      "name" : "GenerateTestGrammarSources",
      "path" : "Plugins/GenerateTestGrammarSources",
      "plugin_capability" : {
        "type" : "buildTool"
      },
      "sources" : [
        "Generate.swift"
      ],
      "target_dependencies" : [
        "MakeTestGrammarSources"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "ASTTests",
      "module_type" : "SwiftTarget",
      "name" : "ASTTests",
      "path" : "Tests/ASTTests",
      "sources" : [
        "ASTTests.swift"
      ],
      "target_dependencies" : [
        "AST",
        "TestGrammars",
        "GenerateTestGrammarSources"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AST",
      "module_type" : "SwiftTarget",
      "name" : "AST",
      "path" : "Sources/AST",
      "product_memberships" : [
        "AST",
        "MakeTestGrammarSources"
      ],
      "sources" : [
        "ASTNode.swift",
        "Action.swift",
        "ClosedGraph.swift",
        "Constructor.swift",
        "Context.swift",
        "Errors.swift",
        "Expr.swift",
        "Grammar.swift",
        "Parser+CLR1.swift",
        "Parser.swift",
        "PropertyWrappers.swift",
        "Sourcegen.swift",
        "Stack.swift",
        "SymbolProtocol.swift",
        "Utils.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.