The Swift Package Index logo.Swift Package Index

Build Information

Successful build of swift-argument-parser, reference main (90f76c), with Swift 6.3 for macOS (SPM) on 19 Apr 2026 03:45:49 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/MarcoEidinger/swift-argument-parser.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/MarcoEidinger/swift-argument-parser
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 90f76c1 List valid options in error messages (#382)
Cloned https://github.com/MarcoEidinger/swift-argument-parser.git
Revision (git rev-parse @):
90f76c14b43783ad3162c163ba9f6ac1b72f9a04
SUCCESS checkout https://github.com/MarcoEidinger/swift-argument-parser.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "swift-argument-parser",
      "name": "swift-argument-parser",
      "url": "https://github.com/MarcoEidinger/swift-argument-parser.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-argument-parser",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/MarcoEidinger/swift-argument-parser.git
[1/3220] Fetching swift-argument-parser
Fetched https://github.com/MarcoEidinger/swift-argument-parser.git from cache (1.26s)
Creating working copy for https://github.com/MarcoEidinger/swift-argument-parser.git
Working copy of https://github.com/MarcoEidinger/swift-argument-parser.git resolved at main (90f76c1)
warning: '.resolve-product-dependencies': dependency 'swift-argument-parser' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/MarcoEidinger/swift-argument-parser.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/24] Write sources
[5/24] Write roll-entitlement.plist
[5/24] Write sources
[6/24] Write math-entitlement.plist
[8/24] Write changelog-authors-entitlement.plist
[9/24] Write repeat-entitlement.plist
[10/24] Write sources
[11/24] Write swift-version--6988338F2F200930.txt
[13/26] Emitting module ArgumentParserToolInfo
[14/26] Compiling ArgumentParserToolInfo ToolInfo.swift
[15/61] Emitting module ArgumentParser
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 | @_implementationOnly import ArgumentParserToolInfo
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 11 |
 12 | @_implementationOnly import Foundation
 13 | @_implementationOnly import ArgumentParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 14 |
 15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 |
 14 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 |
 14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 24 |
 25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
 26 |   let parsableArgumentsType: ParsableArguments.Type
    |       `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 27 |   let underlayingErrors: [Error]
 28 |   var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 11 |
 12 | struct CommandError: Error {
 13 |   var commandStack: [ParsableCommand.Type]
    |       `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 14 |   var parserError: ParserError
 15 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:102:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-Sendable type 'any ParsableCommand.Type'
100 |
101 |   enum InitializationError: Error {
102 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-Sendable type 'any ParsableCommand.Type'
103 |   }
104 | }
[#ImplementationOnlyDeprecated]: <https://docs.swift.org/compiler/documentation/diagnostics/implementation-only-deprecated>
[16/64] Compiling ArgumentParser ArgumentSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 11 |
 12 | struct CommandError: Error {
 13 |   var commandStack: [ParsableCommand.Type]
    |       `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 14 |   var parserError: ParserError
 15 | }
[17/64] Compiling ArgumentParser CommandParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 11 |
 12 | struct CommandError: Error {
 13 |   var commandStack: [ParsableCommand.Type]
    |       `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 14 |   var parserError: ParserError
 15 | }
[18/64] Compiling ArgumentParser InputOrigin.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 11 |
 12 | struct CommandError: Error {
 13 |   var commandStack: [ParsableCommand.Type]
    |       `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 14 |   var parserError: ParserError
 15 | }
[19/64] Compiling ArgumentParser Name.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 11 |
 12 | struct CommandError: Error {
 13 |   var commandStack: [ParsableCommand.Type]
    |       `- warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' contains non-Sendable type 'any ParsableCommand.Type'
 14 |   var parserError: ParserError
 15 | }
[20/64] Compiling ArgumentParser BashCompletionsGenerator.swift
[21/64] Compiling ArgumentParser CompletionsGenerator.swift
[22/64] Compiling ArgumentParser FishCompletionsGenerator.swift
[23/64] Compiling ArgumentParser ZshCompletionsGenerator.swift
[24/64] Compiling ArgumentParser Flag.swift
[25/64] Compiling ArgumentParser NameSpecification.swift
[26/64] Compiling ArgumentParser Option.swift
[27/64] Compiling ArgumentParser OptionGroup.swift
[28/64] Compiling ArgumentParser CommandConfiguration.swift
[29/64] Compiling ArgumentParser EnumerableFlag.swift
[30/64] Compiling ArgumentParser ExpressibleByArgument.swift
[31/64] Compiling ArgumentParser ParsableArguments.swift
[32/64] Compiling ArgumentParser Parsed.swift
[33/64] Compiling ArgumentParser ParsedValues.swift
[34/64] Compiling ArgumentParser ParserError.swift
[35/64] Compiling ArgumentParser SplitArguments.swift
[36/64] Compiling ArgumentParser SequenceExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:102:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-Sendable type 'any ParsableCommand.Type'
100 |
101 |   enum InitializationError: Error {
102 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-Sendable type 'any ParsableCommand.Type'
103 |   }
104 | }
[37/64] Compiling ArgumentParser StringExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:102:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-Sendable type 'any ParsableCommand.Type'
100 |
101 |   enum InitializationError: Error {
102 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-Sendable type 'any ParsableCommand.Type'
103 |   }
104 | }
[38/64] Compiling ArgumentParser Tree.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:102:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-Sendable type 'any ParsableCommand.Type'
100 |
101 |   enum InitializationError: Error {
102 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-Sendable type 'any ParsableCommand.Type'
103 |   }
104 | }
[39/64] Compiling ArgumentParser Argument.swift
[40/64] Compiling ArgumentParser ArgumentHelp.swift
[41/64] Compiling ArgumentParser CompletionKind.swift
[42/64] Compiling ArgumentParser Errors.swift
[43/64] Compiling ArgumentParser ParsableArgumentsValidation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 24 |
 25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
 26 |   let parsableArgumentsType: ParsableArguments.Type
    |       `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 27 |   let underlayingErrors: [Error]
 28 |   var description: String {
[44/64] Compiling ArgumentParser ParsableCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 24 |
 25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
 26 |   let parsableArgumentsType: ParsableArguments.Type
    |       `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 27 |   let underlayingErrors: [Error]
 28 |   var description: String {
[45/64] Compiling ArgumentParser ArgumentDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 24 |
 25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
 26 |   let parsableArgumentsType: ParsableArguments.Type
    |       `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 27 |   let underlayingErrors: [Error]
 28 |   var description: String {
[46/64] Compiling ArgumentParser ArgumentDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:26:7: warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 24 |
 25 | struct ParsableArgumentsValidationError: Error, CustomStringConvertible {
 26 |   let parsableArgumentsType: ParsableArguments.Type
    |       `- warning: stored property 'parsableArgumentsType' of 'Sendable'-conforming struct 'ParsableArgumentsValidationError' has non-Sendable type 'any ParsableArguments.Type'
 27 |   let underlayingErrors: [Error]
 28 |   var description: String {
[47/64] Compiling ArgumentParser DumpHelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 | @_implementationOnly import ArgumentParserToolInfo
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 11 |
 12 | @_implementationOnly import Foundation
 13 | @_implementationOnly import ArgumentParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 14 |
 15 | internal struct DumpHelpGenerator {
[#ImplementationOnlyDeprecated]: <https://docs.swift.org/compiler/documentation/diagnostics/implementation-only-deprecated>
[48/64] Compiling ArgumentParser HelpCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 | @_implementationOnly import ArgumentParserToolInfo
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 11 |
 12 | @_implementationOnly import Foundation
 13 | @_implementationOnly import ArgumentParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 14 |
 15 | internal struct DumpHelpGenerator {
[#ImplementationOnlyDeprecated]: <https://docs.swift.org/compiler/documentation/diagnostics/implementation-only-deprecated>
[49/64] Compiling ArgumentParser HelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 | @_implementationOnly import ArgumentParserToolInfo
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 11 |
 12 | @_implementationOnly import Foundation
 13 | @_implementationOnly import ArgumentParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 14 |
 15 | internal struct DumpHelpGenerator {
[#ImplementationOnlyDeprecated]: <https://docs.swift.org/compiler/documentation/diagnostics/implementation-only-deprecated>
[50/64] Compiling ArgumentParser MessageInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 |
 14 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 |
 14 | struct UsageGenerator {
[#ImplementationOnlyDeprecated]: <https://docs.swift.org/compiler/documentation/diagnostics/implementation-only-deprecated>
[51/64] Compiling ArgumentParser UsageGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 |
 14 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 |
 14 | struct UsageGenerator {
[#ImplementationOnlyDeprecated]: <https://docs.swift.org/compiler/documentation/diagnostics/implementation-only-deprecated>
[52/64] Compiling ArgumentParser CollectionExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 |
 14 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import Foundation
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'ArgumentParser' may lead to instability during execution [#ImplementationOnlyDeprecated]
 13 |
 14 | struct UsageGenerator {
[#ImplementationOnlyDeprecated]: <https://docs.swift.org/compiler/documentation/diagnostics/implementation-only-deprecated>
[53/76] Emitting module repeat
[54/76] Compiling repeat main.swift
[54/76] Write Objects.LinkFileList
[56/76] Compiling roll main.swift
[57/76] Emitting module roll
[58/76] Compiling roll SplitMix64.swift
[58/76] Write Objects.LinkFileList
[60/76] Emitting module changelog_authors
[61/76] Compiling changelog_authors main.swift
[61/76] Write Objects.LinkFileList
[63/76] Compiling math main.swift
[64/76] Emitting module math
[64/76] Write Objects.LinkFileList
[65/76] Linking repeat
[66/76] Linking roll
[67/76] Linking changelog-authors
[68/76] Applying repeat
[69/76] Applying roll
[70/76] Linking math
[71/76] Applying changelog-authors
[72/76] Applying math
[74/76] Compiling ArgumentParserTestHelpers StringHelpers.swift
[75/76] Compiling ArgumentParserTestHelpers TestHelpers.swift
[76/76] Emitting module ArgumentParserTestHelpers
Build complete! (13.56s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swift-argument-parser",
  "name" : "swift-argument-parser",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ArgumentParser",
      "targets" : [
        "ArgumentParser"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "roll",
      "targets" : [
        "roll"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "repeat",
      "targets" : [
        "repeat"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "math",
      "targets" : [
        "math"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "changelog-authors",
      "targets" : [
        "changelog-authors"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "roll",
      "module_type" : "SwiftTarget",
      "name" : "roll",
      "path" : "Examples/roll",
      "product_memberships" : [
        "roll"
      ],
      "sources" : [
        "SplitMix64.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "repeat",
      "module_type" : "SwiftTarget",
      "name" : "repeat",
      "path" : "Examples/repeat",
      "product_memberships" : [
        "repeat"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "math",
      "module_type" : "SwiftTarget",
      "name" : "math",
      "path" : "Examples/math",
      "product_memberships" : [
        "math"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "changelog_authors",
      "module_type" : "SwiftTarget",
      "name" : "changelog-authors",
      "path" : "Tools/changelog-authors",
      "product_memberships" : [
        "changelog-authors"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ArgumentParserUnitTests",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserUnitTests",
      "path" : "Tests/ArgumentParserUnitTests",
      "sources" : [
        "CompletionScriptTests.swift",
        "DumpHelpGenerationTests.swift",
        "ErrorMessageTests.swift",
        "ExitCodeTests.swift",
        "HelpGenerationTests.swift",
        "InputOriginTests.swift",
        "MirrorTests.swift",
        "NameSpecificationTests.swift",
        "ParsableArgumentsValidationTests.swift",
        "SequenceExtensionTests.swift",
        "SplitArgumentTests.swift",
        "StringEditDistanceTests.swift",
        "StringSnakeCaseTests.swift",
        "StringWrappingTests.swift",
        "TreeTests.swift",
        "UsageGenerationTests.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser",
        "ArgumentParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ArgumentParserToolInfo",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserToolInfo",
      "path" : "Sources/ArgumentParserToolInfo",
      "product_memberships" : [
        "ArgumentParser",
        "roll",
        "repeat",
        "math",
        "changelog-authors"
      ],
      "sources" : [
        "ToolInfo.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ArgumentParserTestHelpers",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserTestHelpers",
      "path" : "Sources/ArgumentParserTestHelpers",
      "sources" : [
        "StringHelpers.swift",
        "TestHelpers.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser",
        "ArgumentParserToolInfo"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ArgumentParserPackageManagerTests",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserPackageManagerTests",
      "path" : "Tests/ArgumentParserPackageManagerTests",
      "sources" : [
        "HelpTests.swift",
        "PackageManager/Clean.swift",
        "PackageManager/Config.swift",
        "PackageManager/Describe.swift",
        "PackageManager/GenerateXcodeProject.swift",
        "PackageManager/Options.swift",
        "Tests.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser",
        "ArgumentParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ArgumentParserExampleTests",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserExampleTests",
      "path" : "Tests/ArgumentParserExampleTests",
      "sources" : [
        "MathExampleTests.swift",
        "RepeatExampleTests.swift",
        "RollDiceExampleTests.swift"
      ],
      "target_dependencies" : [
        "ArgumentParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ArgumentParserEndToEndTests",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserEndToEndTests",
      "path" : "Tests/ArgumentParserEndToEndTests",
      "sources" : [
        "CustomParsingEndToEndTests.swift",
        "DefaultSubcommandEndToEndTests.swift",
        "DefaultsEndToEndTests.swift",
        "EnumEndToEndTests.swift",
        "EqualsEndToEndTests.swift",
        "FlagsEndToEndTests.swift",
        "JoinedEndToEndTests.swift",
        "LongNameWithShortDashEndToEndTests.swift",
        "NestedCommandEndToEndTests.swift",
        "OptionGroupEndToEndTests.swift",
        "OptionalEndToEndTests.swift",
        "PositionalEndToEndTests.swift",
        "RawRepresentableEndToEndTests.swift",
        "RepeatingEndToEndTests.swift",
        "ShortNameEndToEndTests.swift",
        "SimpleEndToEndTests.swift",
        "SingleValueParsingStrategyTests.swift",
        "SourceCompatEndToEndTests.swift",
        "SubcommandEndToEndTests.swift",
        "TransformEndToEndTests.swift",
        "UnparsedValuesEndToEndTest.swift",
        "ValidationEndToEndTests.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser",
        "ArgumentParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ArgumentParser",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParser",
      "path" : "Sources/ArgumentParser",
      "product_memberships" : [
        "ArgumentParser",
        "roll",
        "repeat",
        "math",
        "changelog-authors"
      ],
      "sources" : [
        "Completions/BashCompletionsGenerator.swift",
        "Completions/CompletionsGenerator.swift",
        "Completions/FishCompletionsGenerator.swift",
        "Completions/ZshCompletionsGenerator.swift",
        "Parsable Properties/Argument.swift",
        "Parsable Properties/ArgumentHelp.swift",
        "Parsable Properties/CompletionKind.swift",
        "Parsable Properties/Errors.swift",
        "Parsable Properties/Flag.swift",
        "Parsable Properties/NameSpecification.swift",
        "Parsable Properties/Option.swift",
        "Parsable Properties/OptionGroup.swift",
        "Parsable Types/CommandConfiguration.swift",
        "Parsable Types/EnumerableFlag.swift",
        "Parsable Types/ExpressibleByArgument.swift",
        "Parsable Types/ParsableArguments.swift",
        "Parsable Types/ParsableArgumentsValidation.swift",
        "Parsable Types/ParsableCommand.swift",
        "Parsing/ArgumentDecoder.swift",
        "Parsing/ArgumentDefinition.swift",
        "Parsing/ArgumentSet.swift",
        "Parsing/CommandParser.swift",
        "Parsing/InputOrigin.swift",
        "Parsing/Name.swift",
        "Parsing/Parsed.swift",
        "Parsing/ParsedValues.swift",
        "Parsing/ParserError.swift",
        "Parsing/SplitArguments.swift",
        "Usage/DumpHelpGenerator.swift",
        "Usage/HelpCommand.swift",
        "Usage/HelpGenerator.swift",
        "Usage/MessageInfo.swift",
        "Usage/UsageGenerator.swift",
        "Utilities/CollectionExtensions.swift",
        "Utilities/SequenceExtensions.swift",
        "Utilities/StringExtensions.swift",
        "Utilities/Tree.swift"
      ],
      "target_dependencies" : [
        "ArgumentParserToolInfo"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.