The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of swift-argument-parser, reference 1.2.3 (8e0533), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 16:34:37 UTC.

Swift 6 data race errors: 17

Build Command

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

Build Log

11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
[33/79] Compiling StackOtterArgParser ParsableArguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |   /// The `stderr` output stream.
106 |   static var standardError = StandardError()
    |              |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[34/79] Compiling StackOtterArgParser ParsableArgumentsValidation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |   /// The `stderr` output stream.
106 |   static var standardError = StandardError()
    |              |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[35/79] Compiling StackOtterArgParser ParsableCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |   /// The `stderr` output stream.
106 |   static var standardError = StandardError()
    |              |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[36/79] Compiling StackOtterArgParser ArgumentDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |   /// The `stderr` output stream.
106 |   static var standardError = StandardError()
    |              |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[37/79] Compiling StackOtterArgParser ArgumentHelp.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[38/79] Compiling StackOtterArgParser ArgumentVisibility.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[39/79] Compiling StackOtterArgParser CompletionKind.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[40/79] Compiling StackOtterArgParser Errors.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[41/79] Compiling StackOtterArgParser InputOrigin.swift
[42/79] Compiling StackOtterArgParser Name.swift
[43/79] Compiling StackOtterArgParser Parsed.swift
[44/79] Compiling StackOtterArgParser ParsedValues.swift
[45/79] Emitting module StackOtterArgParser
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 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 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 16 |
 17 | struct HelpRequested: Error {
 18 |   var visibility: ArgumentVisibility
    |       `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 19 | }
 20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 |   case helpRequested(visibility: ArgumentVisibility)
   |        `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 |   case versionRequested
16 |   case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 |   case wrongType(Any?, forKey: InputKey)
   |        `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 |   case subcommandNameMismatch
44 |   case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     commandName: "help",
15 |     abstract: "Show subcommand help information.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
    |              |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'helpIndent' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |   static var labelColumnWidth = 26
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
 14 |   static var labelColumnWidth = 26
    |              |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'labelColumnWidth' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |   /// The `stderr` output stream.
106 |   static var standardError = StandardError()
    |              |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
[46/79] Compiling StackOtterArgParser Platform.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |   /// The `stderr` output stream.
106 |   static var standardError = StandardError()
    |              |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
[47/79] Compiling StackOtterArgParser SequenceExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |   /// The `stderr` output stream.
106 |   static var standardError = StandardError()
    |              |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
[48/79] Compiling StackOtterArgParser StringExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |   /// The `stderr` output stream.
106 |   static var standardError = StandardError()
    |              |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
[49/79] Compiling StackOtterArgParser Tree.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 |   /// The `stderr` output stream.
106 |   static var standardError = StandardError()
    |              |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
[50/79] Compiling StackOtterArgParser ArgumentDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 16 |
 17 | struct HelpRequested: Error {
 18 |   var visibility: ArgumentVisibility
    |       `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 19 | }
 20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
[51/79] Compiling StackOtterArgParser ArgumentSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 16 |
 17 | struct HelpRequested: Error {
 18 |   var visibility: ArgumentVisibility
    |       `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 19 | }
 20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
[52/79] Compiling StackOtterArgParser CommandParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 16 |
 17 | struct HelpRequested: Error {
 18 |   var visibility: ArgumentVisibility
    |       `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 19 | }
 20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
[53/79] Compiling StackOtterArgParser InputKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 16 |
 17 | struct HelpRequested: Error {
 18 |   var visibility: ArgumentVisibility
    |       `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
 19 | }
 20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
[54/79] Compiling StackOtterArgParser ParserError.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 |   case helpRequested(visibility: ArgumentVisibility)
   |        `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 |   case versionRequested
16 |   case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 |   case wrongType(Any?, forKey: InputKey)
   |        `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 |   case subcommandNameMismatch
44 |   case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     commandName: "help",
15 |     abstract: "Show subcommand help information.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
[55/79] Compiling StackOtterArgParser SplitArguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 |   case helpRequested(visibility: ArgumentVisibility)
   |        `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 |   case versionRequested
16 |   case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 |   case wrongType(Any?, forKey: InputKey)
   |        `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 |   case subcommandNameMismatch
44 |   case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     commandName: "help",
15 |     abstract: "Show subcommand help information.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
[56/79] Compiling StackOtterArgParser DumpHelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 |   case helpRequested(visibility: ArgumentVisibility)
   |        `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 |   case versionRequested
16 |   case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 |   case wrongType(Any?, forKey: InputKey)
   |        `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 |   case subcommandNameMismatch
44 |   case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     commandName: "help",
15 |     abstract: "Show subcommand help information.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
[57/79] Compiling StackOtterArgParser HelpCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 |   case helpRequested(visibility: ArgumentVisibility)
   |        `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 |   case versionRequested
16 |   case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 |   case wrongType(Any?, forKey: InputKey)
   |        `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 |   case subcommandNameMismatch
44 |   case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     commandName: "help",
15 |     abstract: "Show subcommand help information.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
[58/79] Compiling StackOtterArgParser HelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
    |              |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'helpIndent' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |   static var labelColumnWidth = 26
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
 14 |   static var labelColumnWidth = 26
    |              |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'labelColumnWidth' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
[59/79] Compiling StackOtterArgParser MessageInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
    |              |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'helpIndent' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |   static var labelColumnWidth = 26
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
 14 |   static var labelColumnWidth = 26
    |              |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'labelColumnWidth' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
[60/79] Compiling StackOtterArgParser UsageGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
    |              |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'helpIndent' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |   static var labelColumnWidth = 26
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
 14 |   static var labelColumnWidth = 26
    |              |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'labelColumnWidth' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
[61/79] Compiling StackOtterArgParser CollectionExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
    |              |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'helpIndent' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |   static var labelColumnWidth = 26
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 | internal struct HelpGenerator {
 13 |   static var helpIndent = 2
 14 |   static var labelColumnWidth = 26
    |              |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'labelColumnWidth' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |   static var systemScreenWidth: Int { Platform.terminalWidth }
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
23 |
24 |   /// Show help for this argument whenever appropriate.
25 |   public static let `default` = Self(base: .default)
   |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 |   /// Only show help for this argument in the extended help screen.
[62/123] Compiling roll main.swift
[63/123] Emitting module repeat
[64/123] Compiling repeat Repeat.swift
[64/123] Write Objects.LinkFileList
[66/123] Emitting module roll
[67/123] Compiling roll SplitMix64.swift
[67/123] Write Objects.LinkFileList
[69/123] Compiling changelog_authors Util.swift
[70/123] Compiling changelog_authors Models.swift
[71/123] Compiling gen_manual MDocComponent.swift
[72/123] Compiling gen_manual Document.swift
[73/123] Compiling gen_manual DocumentDate.swift
[74/123] Compiling gen_manual Name.swift
[75/123] Compiling gen_manual Preamble.swift
[76/123] Compiling gen_manual Section.swift
[77/125] Emitting module count_lines
[78/125] Compiling count_lines CountLines.swift
[78/125] Write Objects.LinkFileList
[79/125] Linking roll
[80/125] Linking repeat
[82/125] Emitting module changelog_authors
[83/125] Compiling changelog_authors ChangelogAuthors.swift
[83/125] Write Objects.LinkFileList
[85/125] Compiling gen_manual Authors.swift
[86/125] Compiling gen_manual Container.swift
[87/125] Compiling gen_manual Empty.swift
[88/125] Compiling gen_manual ForEach.swift
[89/125] Compiling gen_manual MDocASTNodeWrapper.swift
[90/125] Compiling gen_manual MDocBuilder.swift
[91/125] Compiling gen_manual SeeAlso.swift
[92/125] Compiling gen_manual SinglePageDescription.swift
[93/125] Compiling gen_manual Synopsis.swift
[93/125] Applying repeat
[94/125] Applying roll
[96/125] Compiling gen_manual AuthorArgument.swift
[97/125] Compiling gen_manual ArgumentSynopsis.swift
[98/125] Compiling gen_manual Author.swift
[99/125] Compiling gen_manual MDocSerializationContext.swift
[100/125] Compiling gen_manual String+Escaping.swift
[101/125] Emitting module gen_manual
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   // parsed as `yyyy-mm-dd`
17 |   public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |   }
 24 |
 25 |   static let configuration = CommandConfiguration(
    |              `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |     commandName: "gen-manual",
 27 |     abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | import StackOtterArgParser
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
 13 | import StackOtterArgParserToolInfo
 14 | import Foundation
    :
 23 |   }
 24 |
 25 |   static let configuration = CommandConfiguration(
    |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     commandName: "gen-manual",
 27 |     abstract: "Generate a manual for the provided tool.")
[102/125] Emitting module math
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 16 |     // Customize your command's help and subcommands by implementing the
 17 |     // `configuration` property.
 18 |     static var configuration = CommandConfiguration(
    |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |         // Optional abstracts and discussions are used for help output.
 20 |         abstract: "A utility for performing maths.",
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:53:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 51 |
 52 |     struct Add: ParsableCommand {
 53 |         static var configuration =
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |             CommandConfiguration(abstract: "Print the sum of the values.")
 55 |
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |
 66 |     struct Multiply: ParsableCommand {
 67 |         static var configuration =
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |             CommandConfiguration(abstract: "Print the product of the values.")
 69 |
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:82:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 80 | extension Math {
 81 |     struct Statistics: ParsableCommand {
 82 |         static var configuration = CommandConfiguration(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |             // Command names are automatically generated from the type name
 84 |             // by default; you can specify an override here.
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:93:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 | extension Math.Statistics {
 92 |     struct Average: ParsableCommand {
 93 |         static var configuration = CommandConfiguration(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |             abstract: "Print the average of the values.",
 95 |             version: "1.5.0-alpha")
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:163:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 |
162 |     struct StandardDeviation: ParsableCommand {
163 |         static var configuration = CommandConfiguration(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |             commandName: "stdev",
165 |             abstract: "Print the standard deviation of the values.")
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:187:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
185 |
186 |     struct Quantiles: ParsableCommand {
187 |         static var configuration = CommandConfiguration(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 |             abstract: "Print the quantiles of the values (TBD).")
189 |
[103/125] Compiling math Math.swift
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 16 |     // Customize your command's help and subcommands by implementing the
 17 |     // `configuration` property.
 18 |     static var configuration = CommandConfiguration(
    |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |         // Optional abstracts and discussions are used for help output.
 20 |         abstract: "A utility for performing maths.",
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:53:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 51 |
 52 |     struct Add: ParsableCommand {
 53 |         static var configuration =
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |             CommandConfiguration(abstract: "Print the sum of the values.")
 55 |
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |
 66 |     struct Multiply: ParsableCommand {
 67 |         static var configuration =
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |             CommandConfiguration(abstract: "Print the product of the values.")
 69 |
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:82:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 80 | extension Math {
 81 |     struct Statistics: ParsableCommand {
 82 |         static var configuration = CommandConfiguration(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |             // Command names are automatically generated from the type name
 84 |             // by default; you can specify an override here.
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:93:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 | extension Math.Statistics {
 92 |     struct Average: ParsableCommand {
 93 |         static var configuration = CommandConfiguration(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |             abstract: "Print the average of the values.",
 95 |             version: "1.5.0-alpha")
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:163:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 |
162 |     struct StandardDeviation: ParsableCommand {
163 |         static var configuration = CommandConfiguration(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |             commandName: "stdev",
165 |             abstract: "Print the standard deviation of the values.")
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:187:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
185 |
186 |     struct Quantiles: ParsableCommand {
187 |         static var configuration = CommandConfiguration(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 |             abstract: "Print the quantiles of the values (TBD).")
189 |
[103/125] Linking count-lines
[104/125] Write Objects.LinkFileList
[105/125] Applying count-lines
[106/125] Linking changelog-authors
[107/125] Applying changelog-authors
[109/125] Compiling gen_manual Exit.swift
[110/125] Compiling gen_manual List.swift
[111/125] Compiling gen_manual MultiPageDescription.swift
[112/125] Compiling gen_manual ArgumentParser+MDoc.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   // parsed as `yyyy-mm-dd`
17 |   public init?(argument: String) {
[113/125] Compiling gen_manual Date+ExpressibleByArgument.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   // parsed as `yyyy-mm-dd`
17 |   public init?(argument: String) {
[114/125] Compiling gen_manual Process+SimpleAPI.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   // parsed as `yyyy-mm-dd`
17 |   public init?(argument: String) {
[115/125] Compiling gen_manual GenerateManual.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |   }
 24 |
 25 |   static let configuration = CommandConfiguration(
    |              `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |     commandName: "gen-manual",
 27 |     abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | import StackOtterArgParser
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
 13 | import StackOtterArgParserToolInfo
 14 | import Foundation
    :
 23 |   }
 24 |
 25 |   static let configuration = CommandConfiguration(
    |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     commandName: "gen-manual",
 27 |     abstract: "Generate a manual for the provided tool.")
[116/125] Compiling gen_manual MDocASTNode.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |   }
 24 |
 25 |   static let configuration = CommandConfiguration(
    |              `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |     commandName: "gen-manual",
 27 |     abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | import StackOtterArgParser
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
 13 | import StackOtterArgParserToolInfo
 14 | import Foundation
    :
 23 |   }
 24 |
 25 |   static let configuration = CommandConfiguration(
    |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     commandName: "gen-manual",
 27 |     abstract: "Generate a manual for the provided tool.")
[117/125] Compiling gen_manual MDocMacro.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |   }
 24 |
 25 |   static let configuration = CommandConfiguration(
    |              `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |     commandName: "gen-manual",
 27 |     abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | import StackOtterArgParser
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
 13 | import StackOtterArgParserToolInfo
 14 | import Foundation
    :
 23 |   }
 24 |
 25 |   static let configuration = CommandConfiguration(
    |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |     commandName: "gen-manual",
 27 |     abstract: "Generate a manual for the provided tool.")
[117/125] Write Objects.LinkFileList
[118/125] Linking math
[119/125] Applying math
[120/125] Linking gen-manual
[121/125] Applying gen-manual
[123/125] Compiling StackOtterArgParserTestHelpers StringHelpers.swift
[124/125] Compiling StackOtterArgParserTestHelpers TestHelpers.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:29:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 27 |
 28 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 29 | extension CollectionDifference.Change: Comparable where ChangeElement: Equatable {
    | |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 30 |   public static func < (lhs: Self, rhs: Self) -> Bool {
 31 |     guard lhs.offset == rhs.offset else {
[125/125] Emitting module StackOtterArgParserTestHelpers
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:29:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 27 |
 28 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 29 | extension CollectionDifference.Change: Comparable where ChangeElement: Equatable {
    | |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 30 |   public static func < (lhs: Self, rhs: Self) -> Bool {
 31 |     guard lhs.offset == rhs.offset else {
Build complete! (20.12s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swift-argument-parser",
  "name" : "swift-argument-parser",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "StackOtterArgParser",
      "targets" : [
        "StackOtterArgParser"
      ],
      "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" : "gen-manual",
      "targets" : [
        "gen-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" : [
        "StackOtterArgParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "repeat",
      "module_type" : "SwiftTarget",
      "name" : "repeat",
      "path" : "Examples/repeat",
      "product_memberships" : [
        "repeat"
      ],
      "sources" : [
        "Repeat.swift"
      ],
      "target_dependencies" : [
        "StackOtterArgParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "math",
      "module_type" : "SwiftTarget",
      "name" : "math",
      "path" : "Examples/math",
      "product_memberships" : [
        "math"
      ],
      "sources" : [
        "Math.swift"
      ],
      "target_dependencies" : [
        "StackOtterArgParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "gen_manual",
      "module_type" : "SwiftTarget",
      "name" : "gen-manual",
      "path" : "Tools/generate-manual",
      "product_memberships" : [
        "GenerateManual",
        "gen-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" : [
        "StackOtterArgParser",
        "StackOtterArgParserToolInfo"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "count_lines",
      "module_type" : "SwiftTarget",
      "name" : "count-lines",
      "path" : "Examples/count-lines",
      "product_memberships" : [
        "count-lines"
      ],
      "sources" : [
        "CountLines.swift"
      ],
      "target_dependencies" : [
        "StackOtterArgParser"
      ],
      "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" : [
        "StackOtterArgParser"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "StackOtterArgParserUnitTests",
      "module_type" : "SwiftTarget",
      "name" : "StackOtterArgParserUnitTests",
      "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",
        "SequenceExtensionTests.swift",
        "SplitArgumentTests.swift",
        "StringEditDistanceTests.swift",
        "StringSnakeCaseTests.swift",
        "StringWrappingTests.swift",
        "TreeTests.swift",
        "UsageGenerationTests.swift"
      ],
      "target_dependencies" : [
        "StackOtterArgParser",
        "StackOtterArgParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "StackOtterArgParserToolInfo",
      "module_type" : "SwiftTarget",
      "name" : "StackOtterArgParserToolInfo",
      "path" : "Sources/ArgumentParserToolInfo",
      "product_memberships" : [
        "StackOtterArgParser",
        "GenerateManual",
        "roll",
        "repeat",
        "math",
        "gen-manual",
        "count-lines",
        "changelog-authors"
      ],
      "sources" : [
        "ToolInfo.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "StackOtterArgParserTestHelpers",
      "module_type" : "SwiftTarget",
      "name" : "StackOtterArgParserTestHelpers",
      "path" : "Sources/ArgumentParserTestHelpers",
      "sources" : [
        "StringHelpers.swift",
        "TestHelpers.swift"
      ],
      "target_dependencies" : [
        "StackOtterArgParser",
        "StackOtterArgParserToolInfo"
      ],
      "type" : "library"
    },
    {
      "c99name" : "StackOtterArgParserPackageManagerTests",
      "module_type" : "SwiftTarget",
      "name" : "StackOtterArgParserPackageManagerTests",
      "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" : [
        "StackOtterArgParser",
        "StackOtterArgParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "StackOtterArgParserGenerateManualTests",
      "module_type" : "SwiftTarget",
      "name" : "StackOtterArgParserGenerateManualTests",
      "path" : "Tests/ArgumentParserGenerateManualTests",
      "sources" : [
        "CountLinesGenerateManualTests.swift",
        "MathGenerateManualTests.swift",
        "RepeatGenerateManualTests.swift",
        "RollDiceGenerateManualTests.swift"
      ],
      "target_dependencies" : [
        "StackOtterArgParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "StackOtterArgParserExampleTests",
      "module_type" : "SwiftTarget",
      "name" : "StackOtterArgParserExampleTests",
      "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" : [
        "StackOtterArgParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "StackOtterArgParserEndToEndTests",
      "module_type" : "SwiftTarget",
      "name" : "StackOtterArgParserEndToEndTests",
      "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+ParsingStrategy.swift",
        "RepeatingEndToEndTests.swift",
        "ShortNameEndToEndTests.swift",
        "SimpleEndToEndTests.swift",
        "SingleValueParsingStrategyTests.swift",
        "SourceCompatEndToEndTests.swift",
        "SubcommandEndToEndTests.swift",
        "TransformEndToEndTests.swift",
        "UnparsedValuesEndToEndTest.swift",
        "ValidationEndToEndTests.swift"
      ],
      "target_dependencies" : [
        "StackOtterArgParser",
        "StackOtterArgParserTestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "StackOtterArgParser",
      "module_type" : "SwiftTarget",
      "name" : "StackOtterArgParser",
      "path" : "Sources/ArgumentParser",
      "product_memberships" : [
        "StackOtterArgParser",
        "GenerateManual",
        "roll",
        "repeat",
        "math",
        "gen-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/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" : [
        "StackOtterArgParserToolInfo"
      ],
      "type" : "library"
    },
    {
      "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" : "gen-manual"
        },
        "permissions" : [
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "GenerateManual"
      ],
      "sources" : [
        "GenerateManualPlugin.swift",
        "GenerateManualPluginError.swift",
        "PackagePlugin+Helpers.swift"
      ],
      "target_dependencies" : [
        "gen-manual"
      ],
      "type" : "plugin"
    }
  ],
  "tools_version" : "5.6"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/stackotter/swift-arg-parser/1.2.3
Repository:               stackotter/swift-arg-parser
Swift version used:       6.0
Target:                   StackOtterArgParser
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'StackOtterArgParser'...
Finished extracting symbol information for 'StackOtterArgParser'. (2.85s)
Building documentation for 'StackOtterArgParser'...
warning: No symbol matched 'ArgumentParser'. Can't resolve 'ArgumentParser'.
 --> ArgumentParser.md:1:3-1:21
1 + # ``ArgumentParser``
2 |
3 | Straightforward, type-safe argument parsing for Swift.
warning: '35km1' isn't a disambiguation for 'configuration' at '/StackOtterArgParser/ParsableCommand'
  --> Articles/CommandsAndSubcommands.md:38:100-38:106
36 | ```
37 |
38 + Start by defining the root `Math` command. You can provide a static ``ParsableCommand/configuration-35km1`` property for a command that specifies its subcommands and a default subcommand, if any.
   |                                                                                                    ├─suggestion: Remove '-35km1' for'static var configuration: CommandConfiguration { get }'
   |                                                                                                    ╰─suggestion: Replace '-35km1' with '-24lwi' for'static var configuration: CommandConfiguration { get }'
39 |
40 | ```swift
warning: '866se' isn't a disambiguation for 'defaultCompletionKind' at '/StackOtterArgParser/ExpressibleByArgument'
  --> Articles/CustomizingCompletions.md:33:148-33:154
31 | The generated completion script will suggest only file names for the `--input` option, only directory names for `--output-dir`, and only the strings `markdown` and `rst` for `--format`. The `--compression` option uses the default completions for a `CaseIterable` type, so the completion script will suggest `zip` and `gzip`.
32 |
33 + You can define the default completion kind for custom ``ExpressibleByArgument`` types by implementing ``ExpressibleByArgument/defaultCompletionKind-866se``. For example, any arguments or options with this `File` type will automatically use files for completions:
   |                                                                                                                                                    ├─suggestion: Remove '-866se' for'static var defaultCompletionKind: CompletionKind { get }'
   |                                                                                                                                                    ├─suggestion: Replace '-866se' with '-8xw8l' for'static var defaultCompletionKind: CompletionKind { get }'
   |                                                                                                                                                    ╰─suggestion: Replace '-866se' with '-90n5t' for'static var defaultCompletionKind: CompletionKind { get }'
34 |
35 | ```swift
warning: '5r0ge' isn't a disambiguation for 'validate()' at '/StackOtterArgParser/ParsableArguments'
  --> Articles/Validation.md:11:97-11:103
9  | ### Validating Command-Line Input
10 |
11 + To validate your commands properties after parsing, implement the ``ParsableArguments/validate()-5r0ge`` method on any ``ParsableCommand`` or ``ParsableArguments`` type. Throwing an error from the `validate()` method causes the program to print a message to standard error and exit with an error code, preventing the `run()` method from being called with invalid inputs.
   |                                                                                                 ├─suggestion: Remove '-5r0ge' for'mutating func validate() throws'
   |                                                                                                 ╰─suggestion: Replace '-5r0ge' with '-4h64v' for'mutating func validate() throws'
12 |
13 | Here's a command that prints out one or more random elements from the list you provide. Its `validate()` method catches three different errors that a user can make and throws a relevant error for each one.
warning: No symbol matched 'ArgumentParser/Argument'. Can't resolve 'ArgumentParser'.
 --> Extensions/Argument.md:1:3-1:30
1 + # ``ArgumentParser/Argument``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/ArgumentArrayParsingStrategy'. Can't resolve 'ArgumentParser'.
 --> Extensions/ArgumentArrayParsingStrategy.md:1:3-1:50
1 + # ``ArgumentParser/ArgumentArrayParsingStrategy``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/AsyncParsableCommand'. Can't resolve 'ArgumentParser'.
 --> Extensions/AsyncParsableCommand.md:1:3-1:42
1 + # ``ArgumentParser/AsyncParsableCommand``
2 |
3 | To use `async`/`await` code in your commands' `run()` method implementations, follow these steps:
warning: No symbol matched 'ArgumentParser/CommandConfiguration'. Can't resolve 'ArgumentParser'.
 --> Extensions/CommandConfiguration.md:1:3-1:42
1 + # ``ArgumentParser/CommandConfiguration``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/Flag'. Can't resolve 'ArgumentParser'.
 --> Extensions/Flag.md:1:3-1:26
1 + # ``ArgumentParser/Flag``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/Option'. Can't resolve 'ArgumentParser'.
 --> Extensions/Option.md:1:3-1:28
1 + # ``ArgumentParser/Option``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/OptionGroup'. Can't resolve 'ArgumentParser'.
 --> Extensions/OptionGroup.md:1:3-1:33
1 + # ``ArgumentParser/OptionGroup``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/ParsableArguments'. Can't resolve 'ArgumentParser'.
 --> Extensions/ParsableArguments.md:1:3-1:39
1 + # ``ArgumentParser/ParsableArguments``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/ParsableCommand'. Can't resolve 'ArgumentParser'.
 --> Extensions/ParsableCommand.md:1:3-1:37
1 + # ``ArgumentParser/ParsableCommand``
2 |
3 | `ParsableCommand` types are the basic building blocks for command-line tools built using `ArgumentParser`. To create a command, declare properties using the `@Argument`, `@Option`, and `@Flag` property wrappers, or include groups of options with `@OptionGroup`. Finally, implement your command's functionality in the ``run()-7p2fr`` method.
warning: Parameter 'initial' not found in initializer declaration
   --> ../Parsable Properties/Argument.swift:602:9-602:61
600 |   ///
601 |   /// - Parameters:
602 +   ///   - initial: A default value to use for this property.
    |         ╰─suggestion: Remove 'initial' parameter documentation
603 |   ///   - parsingStrategy: The behavior to use when parsing multiple values from
604 |   ///     the command-line arguments.
warning: Parameter 'wrappedValue' is missing documentation
   --> ../Parsable Properties/Argument.swift:606:79-606:79
604 |   ///     the command-line arguments.
605 |   ///   - help: Information about how to use this argument.
606 +   ///   - completion: Kind of completion provided to the user for this option.
607 |   public init<T>(
608 |     wrappedValue: Array<T>,
warning: Parameter 'command' not found in type method declaration
  --> ../Parsable Properties/Errors.swift:83:7-84:31
81 |   /// flags or subcommands.
82 |   ///
83 +   /// - Parameter command: The command type to offer help for, if different
   |       ╰─suggestion: Remove 'command' parameter documentation
84 +   ///   from the root command.
85 |   public static func helpRequest(_ type: ParsableCommand.Type? = nil) -> CleanExit {
86 |     self.init(base: .helpRequest(type))
warning: Parameter 'type' is missing documentation
  --> ../Parsable Properties/Errors.swift:84:31-84:31
82 |   ///
83 |   /// - Parameter command: The command type to offer help for, if different
84 +   ///   from the root command.
   |                               ╰─suggestion: Document 'type' parameter
85 |   public static func helpRequest(_ type: ParsableCommand.Type? = nil) -> CleanExit {
86 |     self.init(base: .helpRequest(type))
warning: Parameter 'wrappedValue' not found in initializer declaration
   --> ../Parsable Properties/Flag.swift:340:9-340:142
338 |   /// - Parameters:
339 |   ///   - name: A specification for what names are allowed for this flag.
340 +   ///   - wrappedValue: A default value to use for this property, provided implicitly by the compiler during property wrapper initialization.
    |         ╰─suggestion: Remove 'wrappedValue' parameter documentation
341 |   ///   - inversion: The method for converting this flag's name into an on/off pair.
342 |   ///   - exclusivity: The behavior to use when an on/off pair of flags is specified.
warning: Parameter 'name' not found in initializer declaration
   --> ../Parsable Properties/Flag.swift:583:9-583:74
581 |   ///
582 |   /// - Parameters:
583 +   ///   - name: A specification for what names are allowed for this flag.
    |         ╰─suggestion: Remove 'name' parameter documentation
584 |   ///   - help: Information about how to use this flag.
585 |   public init<Element>(
warning: Parameter 'wrappedValue' is missing documentation
   --> ../Parsable Properties/Flag.swift:584:56-584:56
582 |   /// - Parameters:
583 |   ///   - name: A specification for what names are allowed for this flag.
584 +   ///   - help: Information about how to use this flag.
    |         ╰─suggestion: Document 'wrappedValue' parameter
585 |   public init<Element>(
586 |     wrappedValue: [Element],
warning: Parameter 'transform' is missing documentation
   --> ../Parsable Properties/Option.swift:375:79-375:79
373 |   ///   - parsingStrategy: The behavior to use when looking for this option's value.
374 |   ///   - help: Information about how to use this option.
375 +   ///   - completion: Kind of completion provided to the user for this option.
    |                                                                               ╰─suggestion: Document 'transform' parameter
376 |   public init(
377 |     name: NameSpecification = .long,
warning: Parameter 'initial' not found in initializer declaration
   --> ../Parsable Properties/Option.swift:604:9-604:61
602 |   /// - Parameters:
603 |   ///   - name: A specification for what names are allowed for this flag.
604 +   ///   - initial: A default value to use for this property.
    |         ╰─suggestion: Remove 'initial' parameter documentation
605 |   ///   - parsingStrategy: The behavior to use when parsing multiple values
606 |   ///     from the command-line arguments.
warning: Parameter 'wrappedValue' is missing documentation
   --> ../Parsable Properties/Option.swift:608:79-608:79
606 |   ///     from the command-line arguments.
607 |   ///   - help: Information about how to use this option.
608 +   ///   - completion: Kind of completion provided to the user for this option.
609 |   public init<T>(
610 |     wrappedValue: Array<T>,
warning: Parameter 'initial' not found in initializer declaration
   --> ../Parsable Properties/Option.swift:674:9-675:57
672 |   /// - Parameters:
673 |   ///   - name: A specification for what names are allowed for this flag.
674 +   ///   - initial: A default value to use for this property. If `initial` is
    |         ╰─suggestion: Remove 'initial' parameter documentation
675 +   ///     `nil`, this option defaults to an empty array.
676 |   ///   - parsingStrategy: The behavior to use when parsing multiple values
677 |   ///     from the command-line arguments.
warning: Parameter 'wrappedValue' is missing documentation
   --> ../Parsable Properties/Option.swift:681:43-681:43
679 |   ///   - completion: Kind of completion provided to the user for this option.
680 |   ///   - transform: A closure that converts a string into this property's
681 +   ///     element type or throws an error.
682 |   public init<T>(
683 |     wrappedValue: Array<T>,Finished building documentation for 'StackOtterArgParser' (0.28s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/stackotter/swift-arg-parser/1.2.3
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.29s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.67s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.23s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.67s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Relationship.swift
[8/57] Compiling SymbolKit RelationshipKind.swift
[9/57] Compiling SymbolKit SourceOrigin.swift
[10/57] Compiling SymbolKit GenericConstraints.swift
[11/57] Compiling SymbolKit Swift.swift
[12/57] Compiling SymbolKit DeclarationFragments.swift
[13/57] Compiling SymbolKit Fragment.swift
[14/57] Compiling SymbolKit FragmentKind.swift
[15/57] Compiling SymbolKit FunctionParameter.swift
[16/57] Compiling SymbolKit FunctionSignature.swift
[17/57] Compiling SymbolKit SemanticVersion.swift
[18/57] Compiling SymbolKit AccessControl.swift
[19/57] Compiling SymbolKit Availability.swift
[20/57] Compiling SymbolKit AvailabilityItem.swift
[21/57] Compiling SymbolKit Domain.swift
[22/57] Compiling SymbolKit GenericConstraint.swift
[23/57] Compiling SymbolKit GenericParameter.swift
[24/57] Compiling SymbolKit Generics.swift
[25/57] Compiling SymbolKit Namespace.swift
[26/57] Compiling SymbolKit Identifier.swift
[27/57] Compiling SymbolKit KindIdentifier.swift
[28/57] Compiling SymbolKit Location.swift
[29/57] Compiling SymbolKit Mutability.swift
[30/57] Compiling SymbolKit Mixin+Equals.swift
[31/57] Compiling SymbolKit Mixin+Hash.swift
[32/57] Compiling SymbolKit Mixin.swift
[33/57] Compiling SymbolKit LineList.swift
[34/57] Compiling SymbolKit Position.swift
[35/57] Compiling SymbolKit SourceRange.swift
[36/57] Compiling SymbolKit Metadata.swift
[37/57] Compiling SymbolKit Module.swift
[38/57] Compiling SymbolKit OperatingSystem.swift
[39/57] Compiling SymbolKit Platform.swift
[40/57] Compiling SymbolKit Names.swift
[41/57] Compiling SymbolKit SPI.swift
[42/57] Compiling SymbolKit Snippet.swift
[43/57] Compiling SymbolKit Extension.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets Snippet.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.36s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/3] Emitting module StackOtterArgParserToolInfo
[3/3] Compiling StackOtterArgParserToolInfo ToolInfo.swift
[4/41] Compiling StackOtterArgParser AsyncParsableCommand.swift
[5/41] Compiling StackOtterArgParser CommandConfiguration.swift
[6/41] Compiling StackOtterArgParser EnumerableFlag.swift
[7/41] Compiling StackOtterArgParser ExpressibleByArgument.swift
[8/41] Compiling StackOtterArgParser ArgumentHelp.swift
[9/41] Compiling StackOtterArgParser ArgumentVisibility.swift
[10/41] Compiling StackOtterArgParser CompletionKind.swift
[11/41] Compiling StackOtterArgParser Errors.swift
[12/45] Emitting module StackOtterArgParser
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 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 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
[13/45] Compiling StackOtterArgParser Flag.swift
[14/45] Compiling StackOtterArgParser NameSpecification.swift
[15/45] Compiling StackOtterArgParser Option.swift
[16/45] Compiling StackOtterArgParser OptionGroup.swift
[17/45] Compiling StackOtterArgParser BashCompletionsGenerator.swift
[18/45] Compiling StackOtterArgParser CompletionsGenerator.swift
[19/45] Compiling StackOtterArgParser FishCompletionsGenerator.swift
[20/45] Compiling StackOtterArgParser ZshCompletionsGenerator.swift
[21/45] Compiling StackOtterArgParser Argument.swift
[22/45] Compiling StackOtterArgParser HelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
[23/45] Compiling StackOtterArgParser MessageInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
[24/45] Compiling StackOtterArgParser UsageGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
[25/45] Compiling StackOtterArgParser CollectionExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.NSError
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
 13 | @_implementationOnly import class Foundation.NSError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import protocol Foundation.LocalizedError
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 |
 14 | struct UsageGenerator {
[26/45] Compiling StackOtterArgParser ParsableArguments.swift
[27/45] Compiling StackOtterArgParser ParsableArgumentsValidation.swift
[28/45] Compiling StackOtterArgParser ParsableCommand.swift
[29/45] Compiling StackOtterArgParser ArgumentDecoder.swift
[30/45] Compiling StackOtterArgParser ParserError.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | internal struct DumpHelpGenerator {
[31/45] Compiling StackOtterArgParser SplitArguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | internal struct DumpHelpGenerator {
[32/45] Compiling StackOtterArgParser DumpHelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | internal struct DumpHelpGenerator {
[33/45] Compiling StackOtterArgParser HelpCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 10 | //===----------------------------------------------------------------------===//
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 13 | @_implementationOnly import class Foundation.JSONEncoder
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 11 |
 12 | @_implementationOnly import StackOtterArgParserToolInfo
 13 | @_implementationOnly import class Foundation.JSONEncoder
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
 14 |
 15 | internal struct DumpHelpGenerator {
[34/45] Compiling StackOtterArgParser InputOrigin.swift
[35/45] Compiling StackOtterArgParser Name.swift
[36/45] Compiling StackOtterArgParser Parsed.swift
[37/45] Compiling StackOtterArgParser ParsedValues.swift
[38/45] Compiling StackOtterArgParser ArgumentDefinition.swift
[39/45] Compiling StackOtterArgParser ArgumentSet.swift
[40/45] Compiling StackOtterArgParser CommandParser.swift
[41/45] Compiling StackOtterArgParser InputKey.swift
[42/45] Compiling StackOtterArgParser Platform.swift
[43/45] Compiling StackOtterArgParser SequenceExtensions.swift
[44/45] Compiling StackOtterArgParser StringExtensions.swift
[45/45] Compiling StackOtterArgParser Tree.swift
Build of target: 'StackOtterArgParser' complete! (1.77s)
     679
6	/Users/admin/builder/spi-builder-workspace/.docs/stackotter/swift-arg-parser/1.2.3
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/stackotter/swift-arg-parser/1.2.3
File count: 679
Doc size:   6.0MB
Preparing doc bundle ...
Uploading prod-stackotter-swift-arg-parser-1.2.3-e43dbce3.zip to s3://spi-docs-inbox/prod-stackotter-swift-arg-parser-1.2.3-e43dbce3.zip
Copying... [12%]
Copying... [20%]
Copying... [33%]
Copying... [41%]
Copying... [53%]
Copying... [61%]
Copying... [74%]
Copying... [82%]
Copying... [94%]
Copying... [100%]
Done.