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 main (41fc1c), with Swift 6.0 for Linux on 16 Sep 2024 10:58:52 UTC.

Swift 6 data race errors: 17

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

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.
/host/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 |
/host/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.
[19/68] Compiling StackOtterArgParser EnumerableFlag.swift
/host/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.
/host/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 |
/host/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.
[20/68] Compiling StackOtterArgParser BashCompletionsGenerator.swift
/host/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.
/host/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.
/host/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 |
[21/68] Compiling StackOtterArgParser CompletionsGenerator.swift
/host/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.
/host/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.
/host/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 |
[22/68] Compiling StackOtterArgParser FishCompletionsGenerator.swift
/host/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.
/host/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.
/host/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 |
[23/68] Compiling StackOtterArgParser ZshCompletionsGenerator.swift
/host/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.
/host/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.
/host/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 |
[24/68] Compiling StackOtterArgParser Argument.swift
/host/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.
/host/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.
/host/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 |
[25/68] Compiling StackOtterArgParser ArgumentHelp.swift
/host/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.
/host/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.
/host/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 |
[26/68] Compiling StackOtterArgParser ExpressibleByArgument.swift
/host/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.
/host/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.
/host/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 |
/host/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 |
[27/68] Compiling StackOtterArgParser ParsableArguments.swift
/host/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.
/host/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.
/host/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 |
/host/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 |
[28/68] Compiling StackOtterArgParser ParsableArgumentsValidation.swift
/host/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.
/host/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.
/host/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 |
/host/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/68] Compiling StackOtterArgParser ParsableCommand.swift
/host/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.
/host/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.
/host/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 |
/host/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/68] Compiling StackOtterArgParser ArgumentDecoder.swift
/host/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.
/host/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.
/host/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 |
/host/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/68] Compiling StackOtterArgParser CollectionExtensions.swift
/host/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 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 99 |   struct StandardError: TextOutputStream {
100 |     mutating func write(_ string: String) {
101 |       for byte in string.utf8 { putc(numericCast(byte), stderr) }
    |                                                         `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 |     }
103 |   }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
[32/68] Compiling StackOtterArgParser Platform.swift
/host/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 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 99 |   struct StandardError: TextOutputStream {
100 |     mutating func write(_ string: String) {
101 |       for byte in string.utf8 { putc(numericCast(byte), stderr) }
    |                                                         `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 |     }
103 |   }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
[33/68] Compiling StackOtterArgParser SequenceExtensions.swift
/host/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 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 99 |   struct StandardError: TextOutputStream {
100 |     mutating func write(_ string: String) {
101 |       for byte in string.utf8 { putc(numericCast(byte), stderr) }
    |                                                         `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 |     }
103 |   }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
[34/68] Compiling StackOtterArgParser StringExtensions.swift
/host/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 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 99 |   struct StandardError: TextOutputStream {
100 |     mutating func write(_ string: String) {
101 |       for byte in string.utf8 { putc(numericCast(byte), stderr) }
    |                                                         `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 |     }
103 |   }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
[35/68] Compiling StackOtterArgParser Tree.swift
/host/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 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 99 |   struct StandardError: TextOutputStream {
100 |     mutating func write(_ string: String) {
101 |       for byte in string.utf8 { putc(numericCast(byte), stderr) }
    |                                                         `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 |     }
103 |   }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
[36/68] Compiling StackOtterArgParser ArgumentVisibility.swift
/host/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.
/host/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.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[37/68] Compiling StackOtterArgParser CompletionKind.swift
/host/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.
/host/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.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[38/68] Compiling StackOtterArgParser Errors.swift
/host/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.
/host/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.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[39/68] Compiling StackOtterArgParser Flag.swift
/host/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.
/host/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.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[40/68] Compiling StackOtterArgParser NameSpecification.swift
/host/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.
/host/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.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
29 |
30 |   /// Never show help for this argument.
31 |   public static let `private` = Self(base: .private)
   |                     |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[41/68] Compiling StackOtterArgParser Name.swift
/host/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
/host/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.
/host/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)
[42/68] Compiling StackOtterArgParser Parsed.swift
/host/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
/host/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.
/host/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)
[43/68] Compiling StackOtterArgParser ParsedValues.swift
/host/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
/host/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.
/host/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)
[44/68] Compiling StackOtterArgParser ParserError.swift
/host/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
/host/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.
/host/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)
[45/68] Compiling StackOtterArgParser SplitArguments.swift
/host/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
/host/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.
/host/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)
[46/68] Compiling StackOtterArgParser ArgumentDefinition.swift
/host/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.
/host/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 |
/host/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 |
/host/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.
/host/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/68] Compiling StackOtterArgParser ArgumentSet.swift
/host/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.
/host/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 |
/host/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 |
/host/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.
/host/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/68] Compiling StackOtterArgParser CommandParser.swift
/host/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.
/host/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 |
/host/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 |
/host/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.
/host/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/68] Compiling StackOtterArgParser InputKey.swift
/host/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.
/host/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 |
/host/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 |
/host/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.
/host/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/68] Compiling StackOtterArgParser InputOrigin.swift
/host/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.
/host/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 |
/host/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 |
/host/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.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
   |               `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 |   /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 |   /// evolution.
   :
26 |
27 |   /// Only show help for this argument in the extended help screen.
28 |   public static let hidden = Self(base: .hidden)
   |                     |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |   /// Never show help for this argument.
[51/68] Compiling StackOtterArgParser DumpHelpGenerator.swift
/host/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 |
/host/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 {
/host/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 |
/host/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 {
/host/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 {
/host/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 |
/host/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.",
/host/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.
/host/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 }
/host/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 |
[52/68] Compiling StackOtterArgParser HelpCommand.swift
/host/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 |
/host/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 {
/host/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 |
/host/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 {
/host/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 {
/host/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 |
/host/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.",
/host/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.
/host/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 }
/host/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 |
[53/68] Compiling StackOtterArgParser HelpGenerator.swift
/host/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 |
/host/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 {
/host/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 |
/host/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 {
/host/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 {
/host/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 |
/host/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.",
/host/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.
/host/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 }
/host/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 |
[54/68] Compiling StackOtterArgParser MessageInfo.swift
/host/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 |
/host/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 {
/host/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 |
/host/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 {
/host/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 {
/host/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 |
/host/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.",
/host/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.
/host/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 }
/host/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 |
[55/68] Compiling StackOtterArgParser UsageGenerator.swift
/host/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 |
/host/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 {
/host/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 |
/host/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 {
/host/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 {
/host/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 |
/host/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.",
/host/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.
/host/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 }
/host/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 |
[56/69] Wrapping AST for StackOtterArgParser for debugging
[58/106] Compiling gen_manual MDocBuilder.swift
[59/106] Compiling gen_manual MDocComponent.swift
[60/106] Compiling gen_manual Document.swift
[61/106] Compiling gen_manual DocumentDate.swift
[62/109] Compiling repeat Repeat.swift
[63/109] Emitting module repeat
[64/110] Compiling roll SplitMix64.swift
[65/110] Compiling roll main.swift
[67/110] Emitting module roll
[67/111] Wrapping AST for repeat for debugging
[68/111] Write Objects.LinkFileList
[71/111] Compiling gen_manual Container.swift
[72/111] Compiling gen_manual Empty.swift
[73/111] Compiling gen_manual ForEach.swift
[74/111] Compiling gen_manual MDocASTNodeWrapper.swift
[74/111] Wrapping AST for roll for debugging
[75/111] Write Objects.LinkFileList
[77/111] Compiling gen_manual AuthorArgument.swift
[78/111] Compiling gen_manual ArgumentSynopsis.swift
[79/111] Compiling gen_manual Author.swift
[80/111] Compiling gen_manual Authors.swift
[81/111] Compiling gen_manual Synopsis.swift
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   // parsed as `yyyy-mm-dd`
17 |   public init?(argument: String) {
[82/111] Compiling gen_manual ArgumentParser+MDoc.swift
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   // parsed as `yyyy-mm-dd`
17 |   public init?(argument: String) {
[83/111] Compiling gen_manual Date+ExpressibleByArgument.swift
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   // parsed as `yyyy-mm-dd`
17 |   public init?(argument: String) {
[84/111] Compiling gen_manual Exit.swift
[85/111] Compiling gen_manual List.swift
[86/111] Compiling gen_manual MultiPageDescription.swift
[87/111] Compiling gen_manual Name.swift
[88/111] Compiling gen_manual Process+SimpleAPI.swift
/host/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.")
/host/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 |   ///
/host/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.")
[89/111] Compiling gen_manual GenerateManual.swift
/host/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.")
/host/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 |   ///
/host/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.")
[90/111] Compiling gen_manual MDocASTNode.swift
/host/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.")
/host/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 |   ///
/host/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.")
[91/111] Compiling gen_manual Preamble.swift
[92/111] Compiling gen_manual Section.swift
[93/111] Compiling gen_manual SeeAlso.swift
[94/111] Compiling gen_manual SinglePageDescription.swift
[94/111] Linking repeat
[95/111] Linking roll
[97/111] Emitting module gen_manual
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   // parsed as `yyyy-mm-dd`
17 |   public init?(argument: String) {
/host/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.")
/host/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 |   ///
/host/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.")
[98/111] Compiling StackOtterArgParserTestHelpers StringHelpers.swift
[99/111] Emitting module StackOtterArgParserTestHelpers
/host/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 {
[100/111] Compiling StackOtterArgParserTestHelpers TestHelpers.swift
/host/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 {
[102/112] Compiling math Math.swift
/host/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.",
/host/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 |
/host/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 |
/host/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.
/host/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")
/host/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.")
/host/spi-builder-workspace/Examples/math/Math.swift:187:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
185 |
186 |     struct Quantiles: ParsableCommand {
187 |         static var configuration = CommandConfiguration(
    |                    |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 |             abstract: "Print the quantiles of the values (TBD).")
189 |
[103/112] Emitting module math
/host/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.",
/host/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 |
/host/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 |
/host/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.
/host/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")
/host/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.")
/host/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 |
[104/113] Compiling gen_manual MDocMacro.swift
[105/113] Compiling gen_manual MDocSerializationContext.swift
[106/113] Compiling gen_manual String+Escaping.swift
[108/114] Wrapping AST for math for debugging
[109/114] Write Objects.LinkFileList
[110/114] Wrapping AST for gen-manual for debugging
[111/114] Write Objects.LinkFileList
[112/114] Linking math
[113/114] Linking gen-manual
Build complete! (21.79s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swift-argument-parser",
  "name" : "swift-argument-parser",
  "path" : "/host/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
      }
    }
  ],
  "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" : "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"
      ],
      "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" : "/host/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"
      ],
      "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"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:9d7dab235f2b0b46edadd73b1fb0c3b5323df02053420324a4a2f8ca89cb54a5
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.