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 v1.2.4 (41fc1c), with Swift 6.0 for macOS (SPM) on 16 Sep 2024 11:05:13 UTC.

Swift 6 data race errors: 17

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.53.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wabiverse/swift-arg-parser.git
Reference: v1.2.4
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/wabiverse/swift-arg-parser
 * tag               v1.2.4     -> FETCH_HEAD
HEAD is now at 41fc1c8 Rename GenerateManual to GenManual, to fix conflicts with apple's.
Cloned https://github.com/wabiverse/swift-arg-parser.git
Revision (git rev-parse @):
41fc1c8f8482e321d46164df28c6ef672a42bc85
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/wabiverse/swift-arg-parser.git at v1.2.4
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/wabiverse/swift-arg-parser.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Release.Candidate.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
[1/1] Compiling plugin GenManual
Building for debugging...
[1/35] Write sources
[2/35] Write roll-entitlement.plist
[6/35] Write sources
[7/35] Write math-entitlement.plist
[7/35] Write count-lines-entitlement.plist
[7/35] Write repeat-entitlement.plist
[7/35] Write sources
[7/35] Write changelog-authors-entitlement.plist
[8/35] Write gen-manual-entitlement.plist
[14/35] Write sources
[16/35] Write swift-version-117DEE11B69C53C9.txt
[18/37] Emitting module StackOtterArgParserToolInfo
[19/37] Compiling StackOtterArgParserToolInfo ToolInfo.swift
[20/75] Compiling StackOtterArgParser AsyncParsableCommand.swift
[21/75] Compiling StackOtterArgParser CommandConfiguration.swift
[22/75] Compiling StackOtterArgParser EnumerableFlag.swift
[23/75] Compiling StackOtterArgParser ExpressibleByArgument.swift
[24/79] Compiling StackOtterArgParser InputOrigin.swift
[25/79] Compiling StackOtterArgParser Name.swift
[26/79] Compiling StackOtterArgParser Parsed.swift
[27/79] Compiling StackOtterArgParser ParsedValues.swift
[28/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 |
[29/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 |
[30/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 |
[31/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 |
[32/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 |
[33/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 |
[34/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 |
[35/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 |
[36/79] Compiling StackOtterArgParser Flag.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/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.
[37/79] Compiling StackOtterArgParser NameSpecification.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/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.
[38/79] Compiling StackOtterArgParser Option.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/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.
[39/79] Compiling StackOtterArgParser OptionGroup.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/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.
[40/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 |
[41/79] Compiling StackOtterArgParser BashCompletionsGenerator.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.
[42/79] Compiling StackOtterArgParser CompletionsGenerator.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.
[43/79] Compiling StackOtterArgParser FishCompletionsGenerator.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.
[44/79] Compiling StackOtterArgParser ZshCompletionsGenerator.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.
[45/79] Compiling StackOtterArgParser Argument.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.
[46/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.
[47/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.
[48/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.
[49/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.
[50/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 |
[51/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 |
[52/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 |
[53/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 |
[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] Emitting module repeat
[63/123] Compiling repeat Repeat.swift
[63/123] Write Objects.LinkFileList
[65/123] Emitting module roll
[66/123] Compiling roll SplitMix64.swift
[67/123] Compiling roll main.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 ForEach.swift
[72/123] Compiling gen_manual MDocASTNodeWrapper.swift
[73/123] Compiling gen_manual MDocBuilder.swift
[74/123] Compiling gen_manual Authors.swift
[75/123] Compiling gen_manual Container.swift
[76/123] Compiling gen_manual Empty.swift
[77/123] Compiling gen_manual MDocComponent.swift
[78/123] Compiling gen_manual Document.swift
[79/123] Compiling gen_manual DocumentDate.swift
[80/123] Compiling gen_manual Exit.swift
[81/123] Compiling gen_manual List.swift
[82/123] Compiling gen_manual MultiPageDescription.swift
[83/125] Compiling gen_manual AuthorArgument.swift
[84/125] Compiling gen_manual ArgumentSynopsis.swift
[85/125] Compiling gen_manual Author.swift
[86/125] Compiling count_lines CountLines.swift
[87/125] Emitting module count_lines
[87/125] Linking roll
[88/125] Linking repeat
[89/125] Write Objects.LinkFileList
[90/125] Applying roll
[91/125] Applying repeat
[93/125] Compiling gen_manual Name.swift
[94/125] Compiling gen_manual Preamble.swift
[95/125] Compiling gen_manual Section.swift
[96/125] Compiling gen_manual SeeAlso.swift
[97/125] Compiling gen_manual SinglePageDescription.swift
[98/125] Compiling gen_manual Synopsis.swift
[99/125] Emitting module changelog_authors
[100/125] Compiling changelog_authors ChangelogAuthors.swift
[100/125] Write Objects.LinkFileList
[102/125] Compiling gen_manual MDocSerializationContext.swift
[103/125] Compiling gen_manual String+Escaping.swift
[104/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.")
[105/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 |
[106/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 |
[106/125] Write Objects.LinkFileList
[107/125] Linking count-lines
[108/125] Applying count-lines
[109/125] Linking changelog-authors
[110/125] Applying changelog-authors
[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! (19.85s)
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" : "GenManual",
      "targets" : [
        "GenManual"
      ],
      "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" : [
        "GenManual",
        "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",
        "GenManual",
        "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" : "StackOtterArgParserGenManualTests",
      "module_type" : "SwiftTarget",
      "name" : "StackOtterArgParserGenManualTests",
      "path" : "Tests/ArgumentParserGenManualTests",
      "sources" : [
        "CountLinesGenManualTests.swift",
        "MathGenManualTests.swift",
        "RepeatGenManualTests.swift",
        "RollDiceGenManualTests.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",
        "GenManual",
        "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" : "GenManual",
      "module_type" : "PluginTarget",
      "name" : "GenManual",
      "path" : "Plugins/GenManual",
      "plugin_capability" : {
        "intent" : {
          "description" : "Generate a manual entry for a specified target.",
          "type" : "custom",
          "verb" : "gen-manual"
        },
        "permissions" : [
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "GenManual"
      ],
      "sources" : [
        "GenManualPlugin.swift",
        "GenManualPluginError.swift",
        "PackagePlugin+Helpers.swift"
      ],
      "target_dependencies" : [
        "gen-manual"
      ],
      "type" : "plugin"
    }
  ],
  "tools_version" : "5.6"
}
Done.