The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of swift-argument-parser, reference 1.5.1 (011f0c), with Swift 6.2 (beta) for macOS (SPM) on 24 Jun 2025 06:43:22 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apple/swift-argument-parser.git
Reference: 1.5.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/apple/swift-argument-parser
 * tag               1.5.1      -> FETCH_HEAD
HEAD is now at 011f0c7 Update changelog for 1.5.1, along with unreleased changes (#784)
Cloned https://github.com/apple/swift-argument-parser.git
Revision (git rev-parse @):
011f0c765fb46d9cac61bca19be0527e99c98c8b
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/apple/swift-argument-parser.git at 1.5.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/apple/swift-argument-parser.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/42] Write sources
[8/42] Write roll-entitlement.plist
[9/42] Write sources
[9/42] Write math-entitlement.plist
[11/42] Write sources
[13/42] Write repeat-entitlement.plist
[14/42] Write sources
[15/42] Write generate-manual-tool-entitlement.plist
[15/42] Write count-lines-entitlement.plist
[15/42] Write generate-manual-entitlement.plist
[18/42] Write sources
[18/42] Write changelog-authors-entitlement.plist
[20/42] Write swift-version-1EA4D86E10B52AF.txt
[22/46] Compiling ArgumentParserToolInfo ToolInfo.swift
[24/46] Emitting module ArgumentParserToolInfo
[26/124] Emitting module ArgumentParser
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
/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/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     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' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
/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/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     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' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
[28/132] Compiling ArgumentParser ArgumentHelp.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
[29/132] Compiling ArgumentParser ArgumentVisibility.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
[30/132] Compiling ArgumentParser CompletionKind.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
[31/132] Compiling ArgumentParser Errors.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
[32/132] Compiling ArgumentParser Flag.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
[33/132] Compiling ArgumentParser CommandConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
[34/132] Compiling ArgumentParser CommandGroup.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
[35/132] Compiling ArgumentParser EnumerableFlag.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
[36/132] Compiling ArgumentParser ExpressibleByArgument.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
[37/132] Compiling ArgumentParser NameSpecification.swift
[38/132] Compiling ArgumentParser Option.swift
[39/132] Compiling ArgumentParser UsageGenerator.swift
[40/132] Compiling ArgumentParser CollectionExtensions.swift
[41/132] Compiling ArgumentParser ParsableArguments.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 {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     var description: String {
[42/132] 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 {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     var description: String {
[43/132] 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 {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     var description: String {
[44/132] 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 {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     var description: String {
[45/132] Compiling ArgumentParser NameSpecification.swift
[46/132] Compiling ArgumentParser InputOrigin.swift
[47/132] Compiling ArgumentParser Name.swift
[48/132] Compiling ArgumentParser Parsed.swift
[49/132] Compiling ArgumentParser BashCompletionsGenerator.swift
[50/132] Compiling ArgumentParser CompletionsGenerator.swift
[51/132] Compiling ArgumentParser FishCompletionsGenerator.swift
[52/132] Compiling ArgumentParser ZshCompletionsGenerator.swift
[53/132] Compiling ArgumentParser Argument.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 {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     var description: String {
/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/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     var description: String {
/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/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     var description: String {
/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/Parsable Types/ParsableArgumentsValidation.swift:177:9: warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
175 |
176 |   struct InvalidDecoderError: ParsableArgumentsValidatorError, CustomStringConvertible {
177 |     let type: ParsableArguments.Type
    |         `- warning: stored property 'type' of 'Sendable'-conforming struct 'InvalidDecoderError' has non-sendable type 'any ParsableArguments.Type'
178 |
179 |     var description: String {
[67/132] Compiling ArgumentParser ParserError.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
[68/132] Compiling ArgumentParser SplitArguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
[69/132] Compiling ArgumentParser DumpHelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
[70/132] Compiling ArgumentParser HelpCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/Errors.swift:76:16: warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 68 | /// passing it to `exit(with:)`, exits the program with exit code `0`.
 69 | public struct CleanExit: Error, CustomStringConvertible {
 70 |   internal enum Representation {
    |                 `- note: consider making enum 'Representation' conform to the 'Sendable' protocol
 71 |     case helpRequest(ParsableCommand.Type? = nil)
 72 |     case message(String)
    :
 74 |   }
 75 |
 76 |   internal var base: Representation
    |                `- warning: stored property 'base' of 'Sendable'-conforming struct 'CleanExit' has non-sendable type 'CleanExit.Representation'; this is an error in the Swift 6 language mode
 77 |
 78 |   /// Treat this error as a help request and display the full help message.
[72/132] Compiling ArgumentParser ArgumentDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
[73/132] 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' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
[74/132] 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' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
[75/132] Compiling ArgumentParser InputKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
[76/132] Compiling ArgumentParser Platform.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
[77/132] Compiling ArgumentParser SequenceExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
[78/132] Compiling ArgumentParser StringExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
[79/132] Compiling ArgumentParser Tree.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:108:10: warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
106 |
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
    |          `- warning: associated value 'recursiveSubcommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
109 |     case aliasMatchingCommand(ParsableCommand.Type)
110 |   }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Tree.swift:109:10: warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
107 |   enum InitializationError: Error {
108 |     case recursiveSubcommand(ParsableCommand.Type)
109 |     case aliasMatchingCommand(ParsableCommand.Type)
    |          `- warning: associated value 'aliasMatchingCommand' of 'Sendable'-conforming enum 'InitializationError' has non-sendable type 'any ParsableCommand.Type'
110 |   }
111 | }
[88/132] Compiling ArgumentParser HelpGenerator.swift
[89/132] Compiling ArgumentParser MessageInfo.swift
[90/132] Compiling ArgumentParser UsageGenerator.swift
[91/132] Compiling ArgumentParser CollectionExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:13:7: warning: stored property 'commandStack' of 'Sendable'-conforming struct 'CommandError' has 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' has non-sendable type '[any ParsableCommand.Type]'
 14 |   var parserError: ParserError
 15 | }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:66:14: warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 64 |   /// An array of types that define subcommands for this command and are
 65 |   /// not part of any command group.
 66 |   public var ungroupedSubcommands: [ParsableCommand.Type]
    |              `- warning: stored property 'ungroupedSubcommands' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '[any ParsableCommand.Type]'
 67 |
 68 |   /// The list of subcommands and subcommand groups.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:72:14: warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 70 |
 71 |   /// The default command type to run if no subcommand is given.
 72 |   public var defaultSubcommand: ParsableCommand.Type?
    |              `- warning: stored property 'defaultSubcommand' of 'Sendable'-conforming struct 'CommandConfiguration' has non-sendable type '(any ParsableCommand.Type)?'
 73 |
 74 |   /// Flag names to be used for help.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandGroup.swift:18:14: warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
16 |
17 |   /// The list of subcommands that are part of this group.
18 |   public let subcommands: [ParsableCommand.Type]
   |              `- warning: stored property 'subcommands' of 'Sendable'-conforming struct 'CommandGroup' has non-sendable type '[any ParsableCommand.Type]'
19 |
20 |   /// Create a command group.
[112/204] Emitting module generate_manual
[113/206] Emitting module roll
[114/206] Compiling changelog_authors Util.swift
[115/206] Compiling generate_manual Name.swift
[116/206] Compiling generate_manual Preamble.swift
[117/206] Compiling generate_manual Section.swift
[118/206] Compiling generate_manual SeeAlso.swift
[119/206] Compiling generate_manual SinglePageDescription.swift
[120/206] Compiling generate_manual Synopsis.swift
[121/206] Compiling generate_manual Exit.swift
[122/206] Compiling generate_manual List.swift
[123/206] Compiling generate_manual MultiPageDescription.swift
[124/206] Compiling generate_manual Authors.swift
[125/206] Compiling generate_manual Container.swift
[126/206] Compiling generate_manual Empty.swift
[127/206] Compiling generate_manual ForEach.swift
[128/206] Compiling generate_manual MDocASTNodeWrapper.swift
[129/206] Compiling generate_manual MDocBuilder.swift
[130/208] Compiling repeat Repeat.swift
[131/208] Emitting module repeat
[131/208] Write Objects.LinkFileList
[136/208] Compiling generate_manual MDocComponent.swift
[137/208] Compiling generate_manual Document.swift
[138/208] Compiling generate_manual DocumentDate.swift
[139/208] Compiling changelog_authors Models.swift
[140/208] Compiling generate_manual AuthorArgument.swift
[141/208] Compiling generate_manual ArgumentSynopsis.swift
[142/208] Compiling generate_manual Author.swift
[143/208] Compiling generate_manual MDocSerializationContext.swift
[144/208] Compiling generate_manual String+Escaping.swift
[145/208] Emitting module generate_manual
[146/208] Compiling roll SplitMix64.swift
[147/208] Compiling roll main.swift
[147/208] Write Objects.LinkFileList
[149/208] Compiling count_lines CountLines.swift
[150/208] Emitting module count_lines
[156/208] Write Objects.LinkFileList
[158/208] Emitting module changelog_authors
[159/208] Compiling changelog_authors ChangelogAuthors.swift
[159/208] Write Objects.LinkFileList
[163/208] Compiling generate_manual ArgumentParser+MDoc.swift
[164/208] Compiling generate_manual Date+ExpressibleByArgument.swift
[165/208] Compiling generate_manual Process+SimpleAPI.swift
[166/208] Compiling generate_manual GenerateManual.swift
[167/208] Compiling generate_manual MDocASTNode.swift
[168/208] Compiling generate_manual MDocMacro.swift
[169/208] Compiling math Math.swift
[170/208] Emitting module math
[170/208] Linking repeat
[171/208] Write Objects.LinkFileList
[172/208] Applying repeat
[173/208] Linking roll
[174/208] Applying roll
[175/208] Linking count-lines
[194/208] Write Objects.LinkFileList
[195/208] Linking changelog-authors
[196/208] Write Objects.LinkFileList
[197/208] Applying count-lines
[198/208] Applying changelog-authors
[199/208] Linking math
[200/208] Applying math
[201/208] Linking generate-manual
[202/208] Linking generate-manual-tool
[203/208] Applying generate-manual
[204/208] Applying generate-manual-tool
[206/208] Emitting module ArgumentParserTestHelpers
[207/208] Compiling ArgumentParserTestHelpers StringHelpers.swift
[208/208] Compiling ArgumentParserTestHelpers TestHelpers.swift
Build complete! (19.97s)
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" : "GenerateManual",
      "targets" : [
        "GenerateManual"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "roll",
      "targets" : [
        "roll"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "repeat",
      "targets" : [
        "repeat"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "math",
      "targets" : [
        "math"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "generate-manual",
      "targets" : [
        "generate-manual"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "count-lines",
      "targets" : [
        "count-lines"
      ],
      "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" : [
        "Repeat.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "math",
      "module_type" : "SwiftTarget",
      "name" : "math",
      "path" : "Examples/math",
      "product_memberships" : [
        "math"
      ],
      "sources" : [
        "Math.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "generate_manual",
      "module_type" : "SwiftTarget",
      "name" : "generate-manual",
      "path" : "Tools/generate-manual",
      "product_memberships" : [
        "GenerateManual",
        "generate-manual"
      ],
      "sources" : [
        "AuthorArgument.swift",
        "DSL/ArgumentSynopsis.swift",
        "DSL/Author.swift",
        "DSL/Authors.swift",
        "DSL/Core/Container.swift",
        "DSL/Core/Empty.swift",
        "DSL/Core/ForEach.swift",
        "DSL/Core/MDocASTNodeWrapper.swift",
        "DSL/Core/MDocBuilder.swift",
        "DSL/Core/MDocComponent.swift",
        "DSL/Document.swift",
        "DSL/DocumentDate.swift",
        "DSL/Exit.swift",
        "DSL/List.swift",
        "DSL/MultiPageDescription.swift",
        "DSL/Name.swift",
        "DSL/Preamble.swift",
        "DSL/Section.swift",
        "DSL/SeeAlso.swift",
        "DSL/SinglePageDescription.swift",
        "DSL/Synopsis.swift",
        "Extensions/ArgumentParser+MDoc.swift",
        "Extensions/Date+ExpressibleByArgument.swift",
        "Extensions/Process+SimpleAPI.swift",
        "GenerateManual.swift",
        "MDoc/MDocASTNode.swift",
        "MDoc/MDocMacro.swift",
        "MDoc/MDocSerializationContext.swift",
        "MDoc/String+Escaping.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser",
        "ArgumentParserToolInfo"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "count_lines",
      "module_type" : "SwiftTarget",
      "name" : "count-lines",
      "path" : "Examples/count-lines",
      "product_memberships" : [
        "count-lines"
      ],
      "sources" : [
        "CountLines.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "changelog_authors",
      "module_type" : "SwiftTarget",
      "name" : "changelog-authors",
      "path" : "Tools/changelog-authors",
      "product_memberships" : [
        "changelog-authors"
      ],
      "sources" : [
        "ChangelogAuthors.swift",
        "Models.swift",
        "Util.swift"
      ],
      "target_dependencies" : [
        "ArgumentParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "GenerateManual",
      "module_type" : "PluginTarget",
      "name" : "GenerateManual",
      "path" : "Plugins/GenerateManual",
      "plugin_capability" : {
        "intent" : {
          "description" : "Generate a manual entry for a specified target.",
          "type" : "custom",
          "verb" : "generate-manual"
        },
        "permissions" : [
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "GenerateManual"
      ],
      "sources" : [
        "GenerateManualPlugin.swift",
        "GenerateManualPluginError.swift",
        "PackagePlugin+Helpers.swift"
      ],
      "target_dependencies" : [
        "generate-manual"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "ArgumentParserUnitTests",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserUnitTests",
      "path" : "Tests/ArgumentParserUnitTests",
      "sources" : [
        "CompletionScriptTests.swift",
        "DumpHelpGenerationTests.swift",
        "ErrorMessageTests.swift",
        "ExitCodeTests.swift",
        "HelpGenerationTests+AtArgument.swift",
        "HelpGenerationTests+AtOption.swift",
        "HelpGenerationTests+GroupName.swift",
        "HelpGenerationTests.swift",
        "InputOriginTests.swift",
        "MirrorTests.swift",
        "NameSpecificationTests.swift",
        "ParsableArgumentsValidationTests.swift",
        "SendableTests.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",
        "GenerateManual",
        "roll",
        "repeat",
        "math",
        "generate-manual",
        "count-lines",
        "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" : "ArgumentParserGenerateManualTests",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserGenerateManualTests",
      "path" : "Tests/ArgumentParserGenerateManualTests",
      "sources" : [
        "CountLinesGenerateManualTests.swift",
        "MathGenerateManualTests.swift",
        "RepeatGenerateManualTests.swift",
        "RollDiceGenerateManualTests.swift"
      ],
      "target_dependencies" : [
        "ArgumentParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ArgumentParserExampleTests",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserExampleTests",
      "path" : "Tests/ArgumentParserExampleTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/ArgumentParserExampleTests/CountLinesTest.txt",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "CountLinesExampleTests.swift",
        "MathExampleTests.swift",
        "RepeatExampleTests.swift",
        "RollDiceExampleTests.swift"
      ],
      "target_dependencies" : [
        "ArgumentParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ArgumentParserEndToEndTests",
      "module_type" : "SwiftTarget",
      "name" : "ArgumentParserEndToEndTests",
      "path" : "Tests/ArgumentParserEndToEndTests",
      "sources" : [
        "AsyncCommandEndToEndTests.swift",
        "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+ParsingStrategy.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",
        "GenerateManual",
        "roll",
        "repeat",
        "math",
        "generate-manual",
        "count-lines",
        "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/ArgumentVisibility.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/AsyncParsableCommand.swift",
        "Parsable Types/CommandConfiguration.swift",
        "Parsable Types/CommandGroup.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/InputKey.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/Platform.swift",
        "Utilities/SequenceExtensions.swift",
        "Utilities/StringExtensions.swift",
        "Utilities/Tree.swift"
      ],
      "target_dependencies" : [
        "ArgumentParserToolInfo"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
Done.