Build Information
Successful build of swift-argument-parser, reference v1.2.4 (41fc1c
), with Swift 6.1 for Linux on 29 Apr 2025 02:20:22 UTC.
Swift 6 data race errors: 27
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- 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: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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- 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: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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- 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: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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- 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: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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[34/121] 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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[35/121] 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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[36/121] 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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[37/121] 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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[38/121] 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: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
[39/121] Compiling StackOtterArgParser ArgumentDefinition.swift
/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.
[40/121] Compiling StackOtterArgParser ArgumentSet.swift
/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.
[41/121] Compiling StackOtterArgParser CommandParser.swift
/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.
[42/121] Compiling StackOtterArgParser InputKey.swift
/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.
[43/121] Compiling StackOtterArgParser InputOrigin.swift
/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.
[44/121] Compiling StackOtterArgParser Option.swift
[45/121] Compiling StackOtterArgParser OptionGroup.swift
[46/121] Compiling StackOtterArgParser AsyncParsableCommand.swift
[47/121] Compiling StackOtterArgParser CommandConfiguration.swift
[48/121] Compiling StackOtterArgParser EnumerableFlag.swift
[49/121] Compiling StackOtterArgParser ExpressibleByArgument.swift
[50/121] Compiling StackOtterArgParser ParsableArguments.swift
[51/121] Compiling StackOtterArgParser ParsableArgumentsValidation.swift
[52/121] Compiling StackOtterArgParser ParsableCommand.swift
[53/121] Compiling StackOtterArgParser ArgumentDecoder.swift
[54/121] 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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
[55/121] 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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
[56/121] 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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
[57/121] 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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
[58/121] 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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/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: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- 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 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
[69/121] Compiling StackOtterArgParser DumpHelpGenerator.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)
[70/121] Compiling StackOtterArgParser HelpCommand.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)
[71/121] Compiling StackOtterArgParser HelpGenerator.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)
[72/121] Compiling StackOtterArgParser MessageInfo.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)
[73/121] Compiling StackOtterArgParser UsageGenerator.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)
/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[84/121] Compiling StackOtterArgParser Name.swift
/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.
[85/121] Compiling StackOtterArgParser Parsed.swift
/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.
[86/121] Compiling StackOtterArgParser ParsedValues.swift
/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.
[87/121] Compiling StackOtterArgParser ParserError.swift
/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.
[88/121] Compiling StackOtterArgParser SplitArguments.swift
/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/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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/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: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/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)
/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)
/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)
/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)
/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)
[106/123] Wrapping AST for StackOtterArgParser for debugging
[109/187] 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 {
[110/187] Compiling gen_manual Container.swift
[111/187] Compiling gen_manual Empty.swift
[112/187] Compiling gen_manual ForEach.swift
[113/187] Compiling gen_manual MDocASTNodeWrapper.swift
[114/190] Emitting module repeat
[115/190] Compiling repeat Repeat.swift
[116/191] Compiling gen_manual MDocBuilder.swift
[117/191] Compiling gen_manual MDocComponent.swift
[118/191] Compiling gen_manual Document.swift
[119/191] Compiling gen_manual DocumentDate.swift
[120/194] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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.")
[121/194] Compiling roll SplitMix64.swift
[122/194] Compiling roll main.swift
[127/194] Emitting module roll
[128/194] Compiling gen_manual AuthorArgument.swift
[129/194] Compiling gen_manual ArgumentSynopsis.swift
[130/194] Compiling gen_manual Author.swift
[131/194] Compiling gen_manual Authors.swift
[133/195] Compiling gen_manual Exit.swift
[134/195] Compiling gen_manual List.swift
[135/195] Compiling gen_manual MultiPageDescription.swift
[136/195] Compiling gen_manual Name.swift
[145/195] Compiling gen_manual Preamble.swift
[146/195] Compiling gen_manual Section.swift
[147/195] Compiling gen_manual SeeAlso.swift
[148/195] Compiling gen_manual SinglePageDescription.swift
[149/195] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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.")
[158/195] Wrapping AST for repeat for debugging
[159/195] Write Objects.LinkFileList
[161/195] 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 {
[162/195] Compiling StackOtterArgParserTestHelpers StringHelpers.swift
[163/196] Compiling gen_manual Synopsis.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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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.")
[164/196] Compiling gen_manual ArgumentParser+MDoc.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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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.")
[165/196] Compiling gen_manual Date+ExpressibleByArgument.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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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.")
[166/196] Compiling gen_manual Process+SimpleAPI.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) {
[167/196] Compiling gen_manual GenerateManual.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) {
[168/196] Compiling gen_manual MDocASTNode.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) {
[168/196] Wrapping AST for roll for debugging
[169/196] Write Objects.LinkFileList
/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/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/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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.")
/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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.")
/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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.")
[177/196] Linking repeat
[178/196] Linking roll
[180/196] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 | abstract: "Print the quantiles of the values (TBD).")
189 |
[181/196] 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- 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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 | abstract: "Print the quantiles of the values (TBD).")
189 |
[182/197] Compiling gen_manual MDocMacro.swift
[183/197] Compiling gen_manual MDocSerializationContext.swift
[184/197] Compiling gen_manual String+Escaping.swift
[189/199] Wrapping AST for gen-manual for debugging
[190/199] Write Objects.LinkFileList
[191/199] Wrapping AST for math for debugging
[192/199] Write Objects.LinkFileList
[194/199] Wrapping AST for gen-manual for debugging
[195/199] Write Objects.LinkFileList
[196/199] Linking gen-manual-tool
[197/199] Linking math
[198/199] Linking gen-manual
Build complete! (38.16s)
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.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.