Build Information
Successful build of swift-argument-parser, reference main (41fc1c
), with Swift 6.1 for macOS (SPM) on 29 Apr 2025 02:28:21 UTC.
Swift 6 data race errors: 27
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -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
Build Log
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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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 |
[50/130] Compiling StackOtterArgParser SplitArguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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 |
[51/130] Compiling StackOtterArgParser DumpHelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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 |
[52/130] Compiling StackOtterArgParser HelpCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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 |
[53/130] Compiling StackOtterArgParser ArgumentHelp.swift
[54/130] Compiling StackOtterArgParser ArgumentVisibility.swift
[55/130] Compiling StackOtterArgParser CompletionKind.swift
[56/130] Compiling StackOtterArgParser Errors.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
[74/130] Compiling StackOtterArgParser Platform.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
[75/130] Compiling StackOtterArgParser SequenceExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
[76/130] Compiling StackOtterArgParser StringExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
[77/130] Compiling StackOtterArgParser Tree.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
[82/130] Compiling StackOtterArgParser InputOrigin.swift
[83/130] Compiling StackOtterArgParser Name.swift
[84/130] Compiling StackOtterArgParser Parsed.swift
[85/130] Compiling StackOtterArgParser CollectionExtensions.swift
[86/130] Compiling StackOtterArgParser Flag.swift
[87/130] Compiling StackOtterArgParser NameSpecification.swift
[88/130] Compiling StackOtterArgParser Option.swift
[89/130] Compiling StackOtterArgParser OptionGroup.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/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.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/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.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/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.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/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.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 }
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/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.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/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.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/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.",
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/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.",
[110/202] Emitting module repeat
[111/202] Compiling repeat Repeat.swift
[111/202] Write Objects.LinkFileList
[113/202] Compiling roll SplitMix64.swift
[114/202] Emitting module roll
[115/202] Compiling roll main.swift
[115/202] Write Objects.LinkFileList
[117/202] Emitting module math
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | // Customize your command's help and subcommands by implementing the
17 | // `configuration` property.
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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.",
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:53:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | struct Add: ParsableCommand {
53 | static var configuration =
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
65 |
66 | struct Multiply: ParsableCommand {
67 | static var configuration =
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:82:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
80 | extension Math {
81 | struct Statistics: ParsableCommand {
82 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:93:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
91 | extension Math.Statistics {
92 | struct Average: ParsableCommand {
93 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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")
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:163:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | struct StandardDeviation: ParsableCommand {
163 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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.")
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:187:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
185 |
186 | struct Quantiles: ParsableCommand {
187 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
[118/202] Compiling math Math.swift
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | // Customize your command's help and subcommands by implementing the
17 | // `configuration` property.
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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.",
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:53:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | struct Add: ParsableCommand {
53 | static var configuration =
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
65 |
66 | struct Multiply: ParsableCommand {
67 | static var configuration =
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:82:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
80 | extension Math {
81 | struct Statistics: ParsableCommand {
82 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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.
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:93:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
91 | extension Math.Statistics {
92 | struct Average: ParsableCommand {
93 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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")
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:163:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | struct StandardDeviation: ParsableCommand {
163 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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.")
/Users/admin/builder/spi-builder-workspace/Examples/math/Math.swift:187:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
185 |
186 | struct Quantiles: ParsableCommand {
187 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: 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 |
[118/202] Linking repeat
[119/202] Write Objects.LinkFileList
[120/202] Applying repeat
[122/202] Compiling changelog_authors Models.swift
[123/202] Compiling changelog_authors Util.swift
[123/202] Linking roll
[125/202] Compiling gen_manual Authors.swift
[126/202] Compiling gen_manual Container.swift
[127/202] Compiling gen_manual Empty.swift
[127/204] Applying roll
[129/204] Compiling gen_manual ForEach.swift
[130/204] Compiling gen_manual MDocASTNodeWrapper.swift
[131/204] Compiling gen_manual MDocBuilder.swift
[132/206] Emitting module changelog_authors
[133/206] Compiling changelog_authors ChangelogAuthors.swift
[133/206] Write Objects.LinkFileList
[135/206] Compiling gen_manual MDocComponent.swift
[136/206] Compiling gen_manual Document.swift
[137/206] Compiling gen_manual DocumentDate.swift
[138/206] Compiling gen_manual Exit.swift
[139/206] Compiling gen_manual List.swift
[140/206] Compiling gen_manual MultiPageDescription.swift
[141/206] Compiling gen_manual SeeAlso.swift
[142/206] Compiling gen_manual SinglePageDescription.swift
[143/206] Compiling gen_manual Synopsis.swift
[153/206] Compiling gen_manual AuthorArgument.swift
[154/206] Compiling gen_manual ArgumentSynopsis.swift
[155/206] Compiling gen_manual Author.swift
[159/206] Emitting module count_lines
[160/206] Compiling count_lines CountLines.swift
[160/206] Write Objects.LinkFileList
[162/206] Emitting module gen_manual
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: 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.")
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: 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/206] Linking math
[167/206] Applying math
[169/206] Compiling gen_manual MDocSerializationContext.swift
[170/206] Compiling gen_manual String+Escaping.swift
[172/206] Linking changelog-authors
[173/206] Applying changelog-authors
[175/206] Compiling gen_manual ArgumentParser+MDoc.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
[176/206] Compiling gen_manual Date+ExpressibleByArgument.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
[177/206] Compiling gen_manual Process+SimpleAPI.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
[178/206] Compiling gen_manual Name.swift
[179/206] Compiling gen_manual Preamble.swift
[180/206] Compiling gen_manual Section.swift
[181/206] Compiling gen_manual GenerateManual.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: 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.")
[182/206] Compiling gen_manual MDocASTNode.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: 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.")
[183/206] Compiling gen_manual MDocMacro.swift
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: 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.")
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: 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.")
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: 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.")
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/GenerateManual.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
10 | //===----------------------------------------------------------------------===//
11 |
12 | import StackOtterArgParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'StackOtterArgParser'
13 | import StackOtterArgParserToolInfo
14 | import Foundation
:
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| |- note: 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.")
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
[195/206] Write Objects.LinkFileList
[197/206] Linking count-lines
[198/206] Applying count-lines
[199/206] Linking gen-manual-tool
[200/206] Linking gen-manual
[201/206] Applying gen-manual-tool
[202/206] Applying gen-manual
[204/206] Emitting module StackOtterArgParserTestHelpers
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:29:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
27 |
28 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
29 | extension CollectionDifference.Change: Comparable where ChangeElement: Equatable {
| |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 | public static func < (lhs: Self, rhs: Self) -> Bool {
31 | guard lhs.offset == rhs.offset else {
[205/206] Compiling StackOtterArgParserTestHelpers StringHelpers.swift
[206/206] Compiling StackOtterArgParserTestHelpers TestHelpers.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:29:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
27 |
28 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
29 | extension CollectionDifference.Change: Comparable where ChangeElement: Equatable {
| |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 | public static func < (lhs: Self, rhs: Self) -> Bool {
31 | guard lhs.offset == rhs.offset else {
Build complete! (15.90s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-argument-parser",
"name" : "swift-argument-parser",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "StackOtterArgParser",
"targets" : [
"StackOtterArgParser"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "GenManual",
"targets" : [
"GenManual"
],
"type" : {
"plugin" : null
}
},
{
"name" : "roll",
"targets" : [
"roll"
],
"type" : {
"executable" : null
}
},
{
"name" : "repeat",
"targets" : [
"repeat"
],
"type" : {
"executable" : null
}
},
{
"name" : "math",
"targets" : [
"math"
],
"type" : {
"executable" : null
}
},
{
"name" : "gen-manual",
"targets" : [
"gen-manual"
],
"type" : {
"executable" : null
}
},
{
"name" : "count-lines",
"targets" : [
"count-lines"
],
"type" : {
"executable" : null
}
},
{
"name" : "changelog-authors",
"targets" : [
"changelog-authors"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "roll",
"module_type" : "SwiftTarget",
"name" : "roll",
"path" : "Examples/roll",
"product_memberships" : [
"roll"
],
"sources" : [
"SplitMix64.swift",
"main.swift"
],
"target_dependencies" : [
"StackOtterArgParser"
],
"type" : "executable"
},
{
"c99name" : "repeat",
"module_type" : "SwiftTarget",
"name" : "repeat",
"path" : "Examples/repeat",
"product_memberships" : [
"repeat"
],
"sources" : [
"Repeat.swift"
],
"target_dependencies" : [
"StackOtterArgParser"
],
"type" : "executable"
},
{
"c99name" : "math",
"module_type" : "SwiftTarget",
"name" : "math",
"path" : "Examples/math",
"product_memberships" : [
"math"
],
"sources" : [
"Math.swift"
],
"target_dependencies" : [
"StackOtterArgParser"
],
"type" : "executable"
},
{
"c99name" : "gen_manual",
"module_type" : "SwiftTarget",
"name" : "gen-manual",
"path" : "Tools/generate-manual",
"product_memberships" : [
"GenManual",
"gen-manual"
],
"sources" : [
"AuthorArgument.swift",
"DSL/ArgumentSynopsis.swift",
"DSL/Author.swift",
"DSL/Authors.swift",
"DSL/Core/Container.swift",
"DSL/Core/Empty.swift",
"DSL/Core/ForEach.swift",
"DSL/Core/MDocASTNodeWrapper.swift",
"DSL/Core/MDocBuilder.swift",
"DSL/Core/MDocComponent.swift",
"DSL/Document.swift",
"DSL/DocumentDate.swift",
"DSL/Exit.swift",
"DSL/List.swift",
"DSL/MultiPageDescription.swift",
"DSL/Name.swift",
"DSL/Preamble.swift",
"DSL/Section.swift",
"DSL/SeeAlso.swift",
"DSL/SinglePageDescription.swift",
"DSL/Synopsis.swift",
"Extensions/ArgumentParser+MDoc.swift",
"Extensions/Date+ExpressibleByArgument.swift",
"Extensions/Process+SimpleAPI.swift",
"GenerateManual.swift",
"MDoc/MDocASTNode.swift",
"MDoc/MDocMacro.swift",
"MDoc/MDocSerializationContext.swift",
"MDoc/String+Escaping.swift"
],
"target_dependencies" : [
"StackOtterArgParser",
"StackOtterArgParserToolInfo"
],
"type" : "executable"
},
{
"c99name" : "count_lines",
"module_type" : "SwiftTarget",
"name" : "count-lines",
"path" : "Examples/count-lines",
"product_memberships" : [
"count-lines"
],
"sources" : [
"CountLines.swift"
],
"target_dependencies" : [
"StackOtterArgParser"
],
"type" : "executable"
},
{
"c99name" : "changelog_authors",
"module_type" : "SwiftTarget",
"name" : "changelog-authors",
"path" : "Tools/changelog-authors",
"product_memberships" : [
"changelog-authors"
],
"sources" : [
"ChangelogAuthors.swift",
"Models.swift",
"Util.swift"
],
"target_dependencies" : [
"StackOtterArgParser"
],
"type" : "executable"
},
{
"c99name" : "StackOtterArgParserUnitTests",
"module_type" : "SwiftTarget",
"name" : "StackOtterArgParserUnitTests",
"path" : "Tests/ArgumentParserUnitTests",
"sources" : [
"CompletionScriptTests.swift",
"DumpHelpGenerationTests.swift",
"ErrorMessageTests.swift",
"ExitCodeTests.swift",
"HelpGenerationTests+AtArgument.swift",
"HelpGenerationTests+AtOption.swift",
"HelpGenerationTests+GroupName.swift",
"HelpGenerationTests.swift",
"InputOriginTests.swift",
"MirrorTests.swift",
"NameSpecificationTests.swift",
"ParsableArgumentsValidationTests.swift",
"SequenceExtensionTests.swift",
"SplitArgumentTests.swift",
"StringEditDistanceTests.swift",
"StringSnakeCaseTests.swift",
"StringWrappingTests.swift",
"TreeTests.swift",
"UsageGenerationTests.swift"
],
"target_dependencies" : [
"StackOtterArgParser",
"StackOtterArgParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "StackOtterArgParserToolInfo",
"module_type" : "SwiftTarget",
"name" : "StackOtterArgParserToolInfo",
"path" : "Sources/ArgumentParserToolInfo",
"product_memberships" : [
"StackOtterArgParser",
"GenManual",
"roll",
"repeat",
"math",
"gen-manual",
"count-lines",
"changelog-authors"
],
"sources" : [
"ToolInfo.swift"
],
"type" : "library"
},
{
"c99name" : "StackOtterArgParserTestHelpers",
"module_type" : "SwiftTarget",
"name" : "StackOtterArgParserTestHelpers",
"path" : "Sources/ArgumentParserTestHelpers",
"sources" : [
"StringHelpers.swift",
"TestHelpers.swift"
],
"target_dependencies" : [
"StackOtterArgParser",
"StackOtterArgParserToolInfo"
],
"type" : "library"
},
{
"c99name" : "StackOtterArgParserPackageManagerTests",
"module_type" : "SwiftTarget",
"name" : "StackOtterArgParserPackageManagerTests",
"path" : "Tests/ArgumentParserPackageManagerTests",
"sources" : [
"HelpTests.swift",
"PackageManager/Clean.swift",
"PackageManager/Config.swift",
"PackageManager/Describe.swift",
"PackageManager/GenerateXcodeProject.swift",
"PackageManager/Options.swift",
"Tests.swift"
],
"target_dependencies" : [
"StackOtterArgParser",
"StackOtterArgParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "StackOtterArgParserGenManualTests",
"module_type" : "SwiftTarget",
"name" : "StackOtterArgParserGenManualTests",
"path" : "Tests/ArgumentParserGenManualTests",
"sources" : [
"CountLinesGenManualTests.swift",
"MathGenManualTests.swift",
"RepeatGenManualTests.swift",
"RollDiceGenManualTests.swift"
],
"target_dependencies" : [
"StackOtterArgParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "StackOtterArgParserExampleTests",
"module_type" : "SwiftTarget",
"name" : "StackOtterArgParserExampleTests",
"path" : "Tests/ArgumentParserExampleTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ArgumentParserExampleTests/CountLinesTest.txt",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"CountLinesExampleTests.swift",
"MathExampleTests.swift",
"RepeatExampleTests.swift",
"RollDiceExampleTests.swift"
],
"target_dependencies" : [
"StackOtterArgParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "StackOtterArgParserEndToEndTests",
"module_type" : "SwiftTarget",
"name" : "StackOtterArgParserEndToEndTests",
"path" : "Tests/ArgumentParserEndToEndTests",
"sources" : [
"CustomParsingEndToEndTests.swift",
"DefaultSubcommandEndToEndTests.swift",
"DefaultsEndToEndTests.swift",
"EnumEndToEndTests.swift",
"EqualsEndToEndTests.swift",
"FlagsEndToEndTests.swift",
"JoinedEndToEndTests.swift",
"LongNameWithShortDashEndToEndTests.swift",
"NestedCommandEndToEndTests.swift",
"OptionGroupEndToEndTests.swift",
"OptionalEndToEndTests.swift",
"PositionalEndToEndTests.swift",
"RawRepresentableEndToEndTests.swift",
"RepeatingEndToEndTests+ParsingStrategy.swift",
"RepeatingEndToEndTests.swift",
"ShortNameEndToEndTests.swift",
"SimpleEndToEndTests.swift",
"SingleValueParsingStrategyTests.swift",
"SourceCompatEndToEndTests.swift",
"SubcommandEndToEndTests.swift",
"TransformEndToEndTests.swift",
"UnparsedValuesEndToEndTest.swift",
"ValidationEndToEndTests.swift"
],
"target_dependencies" : [
"StackOtterArgParser",
"StackOtterArgParserTestHelpers"
],
"type" : "test"
},
{
"c99name" : "StackOtterArgParser",
"module_type" : "SwiftTarget",
"name" : "StackOtterArgParser",
"path" : "Sources/ArgumentParser",
"product_memberships" : [
"StackOtterArgParser",
"GenManual",
"roll",
"repeat",
"math",
"gen-manual",
"count-lines",
"changelog-authors"
],
"sources" : [
"Completions/BashCompletionsGenerator.swift",
"Completions/CompletionsGenerator.swift",
"Completions/FishCompletionsGenerator.swift",
"Completions/ZshCompletionsGenerator.swift",
"Parsable Properties/Argument.swift",
"Parsable Properties/ArgumentHelp.swift",
"Parsable Properties/ArgumentVisibility.swift",
"Parsable Properties/CompletionKind.swift",
"Parsable Properties/Errors.swift",
"Parsable Properties/Flag.swift",
"Parsable Properties/NameSpecification.swift",
"Parsable Properties/Option.swift",
"Parsable Properties/OptionGroup.swift",
"Parsable Types/AsyncParsableCommand.swift",
"Parsable Types/CommandConfiguration.swift",
"Parsable Types/EnumerableFlag.swift",
"Parsable Types/ExpressibleByArgument.swift",
"Parsable Types/ParsableArguments.swift",
"Parsable Types/ParsableArgumentsValidation.swift",
"Parsable Types/ParsableCommand.swift",
"Parsing/ArgumentDecoder.swift",
"Parsing/ArgumentDefinition.swift",
"Parsing/ArgumentSet.swift",
"Parsing/CommandParser.swift",
"Parsing/InputKey.swift",
"Parsing/InputOrigin.swift",
"Parsing/Name.swift",
"Parsing/Parsed.swift",
"Parsing/ParsedValues.swift",
"Parsing/ParserError.swift",
"Parsing/SplitArguments.swift",
"Usage/DumpHelpGenerator.swift",
"Usage/HelpCommand.swift",
"Usage/HelpGenerator.swift",
"Usage/MessageInfo.swift",
"Usage/UsageGenerator.swift",
"Utilities/CollectionExtensions.swift",
"Utilities/Platform.swift",
"Utilities/SequenceExtensions.swift",
"Utilities/StringExtensions.swift",
"Utilities/Tree.swift"
],
"target_dependencies" : [
"StackOtterArgParserToolInfo"
],
"type" : "library"
},
{
"c99name" : "GenManual",
"module_type" : "PluginTarget",
"name" : "GenManual",
"path" : "Plugins/GenManual",
"plugin_capability" : {
"intent" : {
"description" : "Generate a manual entry for a specified target.",
"type" : "custom",
"verb" : "gen-manual"
},
"permissions" : [
],
"type" : "command"
},
"product_memberships" : [
"GenManual"
],
"sources" : [
"GenManualPlugin.swift",
"GenManualPluginError.swift",
"PackagePlugin+Helpers.swift"
],
"target_dependencies" : [
"gen-manual"
],
"type" : "plugin"
}
],
"tools_version" : "5.6"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/wabiverse/swift-arg-parser/main
Repository: wabiverse/swift-arg-parser
Swift version used: 6.1
Target: StackOtterArgParser
Extracting symbol information for 'StackOtterArgParser'...
Finished extracting symbol information for 'StackOtterArgParser'. (2.70s)
Building documentation for 'StackOtterArgParser'...
warning: No symbol matched 'ArgumentParser'. Can't resolve 'ArgumentParser'.
--> ArgumentParser.md:1:3-1:21
1 + # ``ArgumentParser``
2 |
3 | Straightforward, type-safe argument parsing for Swift.
warning: '35km1' isn't a disambiguation for 'configuration' at '/StackOtterArgParser/ParsableCommand'
--> Articles/CommandsAndSubcommands.md:38:100-38:106
36 | ```
37 |
38 + Start by defining the root `Math` command. You can provide a static ``ParsableCommand/configuration-35km1`` property for a command that specifies its subcommands and a default subcommand, if any.
| ├─suggestion: Remove '-35km1' for 'static var configuration: CommandConfiguration { get }'
| ╰─suggestion: Replace '35km1' with '24lwi' for 'static var configuration: CommandConfiguration { get }'
39 |
40 | ```swift
warning: '866se' isn't a disambiguation for 'defaultCompletionKind' at '/StackOtterArgParser/ExpressibleByArgument'
--> Articles/CustomizingCompletions.md:33:148-33:154
31 | The generated completion script will suggest only file names for the `--input` option, only directory names for `--output-dir`, and only the strings `markdown` and `rst` for `--format`. The `--compression` option uses the default completions for a `CaseIterable` type, so the completion script will suggest `zip` and `gzip`.
32 |
33 + You can define the default completion kind for custom ``ExpressibleByArgument`` types by implementing ``ExpressibleByArgument/defaultCompletionKind-866se``. For example, any arguments or options with this `File` type will automatically use files for completions:
| ├─suggestion: Remove '-866se' for 'static var defaultCompletionKind: CompletionKind { get }'
| ├─suggestion: Replace '866se' with '8xw8l' for 'static var defaultCompletionKind: CompletionKind { get }'
| ╰─suggestion: Replace '866se' with '90n5t' for 'static var defaultCompletionKind: CompletionKind { get }'
34 |
35 | ```swift
warning: '5r0ge' isn't a disambiguation for 'validate()' at '/StackOtterArgParser/ParsableArguments'
--> Articles/Validation.md:11:97-11:103
9 | ### Validating Command-Line Input
10 |
11 + To validate your commands properties after parsing, implement the ``ParsableArguments/validate()-5r0ge`` method on any ``ParsableCommand`` or ``ParsableArguments`` type. Throwing an error from the `validate()` method causes the program to print a message to standard error and exit with an error code, preventing the `run()` method from being called with invalid inputs.
| ├─suggestion: Remove '-5r0ge' for 'mutating func validate() throws'
| ╰─suggestion: Replace '5r0ge' with '4h64v' for 'mutating func validate() throws'
12 |
13 | Here's a command that prints out one or more random elements from the list you provide. Its `validate()` method catches three different errors that a user can make and throws a relevant error for each one.
warning: No symbol matched 'ArgumentParser/Argument'. Can't resolve 'ArgumentParser'.
--> Extensions/Argument.md:1:3-1:30
1 + # ``ArgumentParser/Argument``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/ArgumentArrayParsingStrategy'. Can't resolve 'ArgumentParser'.
--> Extensions/ArgumentArrayParsingStrategy.md:1:3-1:50
1 + # ``ArgumentParser/ArgumentArrayParsingStrategy``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/AsyncParsableCommand'. Can't resolve 'ArgumentParser'.
--> Extensions/AsyncParsableCommand.md:1:3-1:42
1 + # ``ArgumentParser/AsyncParsableCommand``
2 |
3 | To use `async`/`await` code in your commands' `run()` method implementations, follow these steps:
warning: No symbol matched 'ArgumentParser/CommandConfiguration'. Can't resolve 'ArgumentParser'.
--> Extensions/CommandConfiguration.md:1:3-1:42
1 + # ``ArgumentParser/CommandConfiguration``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/Flag'. Can't resolve 'ArgumentParser'.
--> Extensions/Flag.md:1:3-1:26
1 + # ``ArgumentParser/Flag``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/Option'. Can't resolve 'ArgumentParser'.
--> Extensions/Option.md:1:3-1:28
1 + # ``ArgumentParser/Option``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/OptionGroup'. Can't resolve 'ArgumentParser'.
--> Extensions/OptionGroup.md:1:3-1:33
1 + # ``ArgumentParser/OptionGroup``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/ParsableArguments'. Can't resolve 'ArgumentParser'.
--> Extensions/ParsableArguments.md:1:3-1:39
1 + # ``ArgumentParser/ParsableArguments``
2 |
3 | ## Topics
warning: No symbol matched 'ArgumentParser/ParsableCommand'. Can't resolve 'ArgumentParser'.
--> Extensions/ParsableCommand.md:1:3-1:37
1 + # ``ArgumentParser/ParsableCommand``
2 |
3 | `ParsableCommand` types are the basic building blocks for command-line tools built using `ArgumentParser`. To create a command, declare properties using the `@Argument`, `@Option`, and `@Flag` property wrappers, or include groups of options with `@OptionGroup`. Finally, implement your command's functionality in the ``run()-7p2fr`` method.
warning: Parameter 'initial' not found in initializer declaration
--> ../Parsable Properties/Argument.swift:602:9-602:61
600 | ///
601 | /// - Parameters:
602 + /// - initial: A default value to use for this property.
| ╰─suggestion: Remove 'initial' parameter documentation
603 | /// - parsingStrategy: The behavior to use when parsing multiple values from
604 | /// the command-line arguments.
warning: Parameter 'wrappedValue' is missing documentation
--> ../Parsable Properties/Argument.swift:606:79-606:79
604 | /// the command-line arguments.
605 | /// - help: Information about how to use this argument.
606 + /// - completion: Kind of completion provided to the user for this option.
607 | public init<T>(
608 | wrappedValue: Array<T>,
warning: Parameter 'command' not found in type method declaration
--> ../Parsable Properties/Errors.swift:83:7-84:31
81 | /// flags or subcommands.
82 | ///
83 + /// - Parameter command: The command type to offer help for, if different
| ╰─suggestion: Remove 'command' parameter documentation
84 + /// from the root command.
85 | public static func helpRequest(_ type: ParsableCommand.Type? = nil) -> CleanExit {
86 | self.init(base: .helpRequest(type))
warning: Parameter 'type' is missing documentation
--> ../Parsable Properties/Errors.swift:84:31-84:31
82 | ///
83 | /// - Parameter command: The command type to offer help for, if different
84 + /// from the root command.
| ╰─suggestion: Document 'type' parameter
85 | public static func helpRequest(_ type: ParsableCommand.Type? = nil) -> CleanExit {
86 | self.init(base: .helpRequest(type))
warning: Parameter 'wrappedValue' not found in initializer declaration
--> ../Parsable Properties/Flag.swift:340:9-340:142
338 | /// - Parameters:
339 | /// - name: A specification for what names are allowed for this flag.
340 + /// - wrappedValue: A default value to use for this property, provided implicitly by the compiler during property wrapper initialization.
| ╰─suggestion: Remove 'wrappedValue' parameter documentation
341 | /// - inversion: The method for converting this flag's name into an on/off pair.
342 | /// - exclusivity: The behavior to use when an on/off pair of flags is specified.
warning: Parameter 'name' not found in initializer declaration
--> ../Parsable Properties/Flag.swift:583:9-583:74
581 | ///
582 | /// - Parameters:
583 + /// - name: A specification for what names are allowed for this flag.
| ╰─suggestion: Remove 'name' parameter documentation
584 | /// - help: Information about how to use this flag.
585 | public init<Element>(
warning: Parameter 'wrappedValue' is missing documentation
--> ../Parsable Properties/Flag.swift:584:56-584:56
582 | /// - Parameters:
583 | /// - name: A specification for what names are allowed for this flag.
584 + /// - help: Information about how to use this flag.
| ╰─suggestion: Document 'wrappedValue' parameter
585 | public init<Element>(
586 | wrappedValue: [Element],
warning: Parameter 'transform' is missing documentation
--> ../Parsable Properties/Option.swift:375:79-375:79
373 | /// - parsingStrategy: The behavior to use when looking for this option's value.
374 | /// - help: Information about how to use this option.
375 + /// - completion: Kind of completion provided to the user for this option.
| ╰─suggestion: Document 'transform' parameter
376 | public init(
377 | name: NameSpecification = .long,
warning: Parameter 'initial' not found in initializer declaration
--> ../Parsable Properties/Option.swift:604:9-604:61
602 | /// - Parameters:
603 | /// - name: A specification for what names are allowed for this flag.
604 + /// - initial: A default value to use for this property.
| ╰─suggestion: Remove 'initial' parameter documentation
605 | /// - parsingStrategy: The behavior to use when parsing multiple values
606 | /// from the command-line arguments.
warning: Parameter 'wrappedValue' is missing documentation
--> ../Parsable Properties/Option.swift:608:79-608:79
606 | /// from the command-line arguments.
607 | /// - help: Information about how to use this option.
608 + /// - completion: Kind of completion provided to the user for this option.
609 | public init<T>(
610 | wrappedValue: Array<T>,
warning: Parameter 'initial' not found in initializer declaration
--> ../Parsable Properties/Option.swift:674:9-675:57
672 | /// - Parameters:
673 | /// - name: A specification for what names are allowed for this flag.
674 + /// - initial: A default value to use for this property. If `initial` is
| ╰─suggestion: Remove 'initial' parameter documentation
675 + /// `nil`, this option defaults to an empty array.
676 | /// - parsingStrategy: The behavior to use when parsing multiple values
677 | /// from the command-line arguments.
warning: Parameter 'wrappedValue' is missing documentation
--> ../Parsable Properties/Option.swift:681:43-681:43
679 | /// - completion: Kind of completion provided to the user for this option.
680 | /// - transform: A closure that converts a string into this property's
681 + /// element type or throws an error.
682 | public init<T>(
683 | wrappedValue: Array<T>,
Finished building documentation for 'StackOtterArgParser' (0.31s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/wabiverse/swift-arg-parser/main
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.47s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (1.13s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.76s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.45s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit DeclarationFragments.swift
[11/57] Compiling SymbolKit Fragment.swift
[12/57] Compiling SymbolKit FragmentKind.swift
[13/57] Compiling SymbolKit FunctionParameter.swift
[14/57] Compiling SymbolKit FunctionSignature.swift
[15/57] Compiling SymbolKit SemanticVersion.swift
[16/57] Compiling SymbolKit AccessControl.swift
[17/57] Compiling SymbolKit Availability.swift
[18/57] Compiling SymbolKit AvailabilityItem.swift
[19/57] Compiling SymbolKit Domain.swift
[20/57] Compiling SymbolKit Mixin+Equals.swift
[21/57] Compiling SymbolKit Mixin+Hash.swift
[22/57] Compiling SymbolKit Mixin.swift
[23/57] Compiling SymbolKit LineList.swift
[24/57] Compiling SymbolKit Position.swift
[25/57] Emitting module SymbolKit
[26/57] Compiling SymbolKit SourceRange.swift
[27/57] Compiling SymbolKit Metadata.swift
[28/57] Compiling SymbolKit Module.swift
[29/57] Compiling SymbolKit OperatingSystem.swift
[30/57] Compiling SymbolKit Platform.swift
[31/57] Compiling SymbolKit Identifier.swift
[32/57] Compiling SymbolKit KindIdentifier.swift
[33/57] Compiling SymbolKit Location.swift
[34/57] Compiling SymbolKit Mutability.swift
[35/57] Compiling SymbolKit Names.swift
[36/57] Compiling SymbolKit SPI.swift
[37/57] Compiling SymbolKit Snippet.swift
[38/57] Compiling SymbolKit Extension.swift
[39/57] Compiling SymbolKit Relationship.swift
[40/57] Compiling SymbolKit RelationshipKind.swift
[41/57] Compiling SymbolKit SourceOrigin.swift
[42/57] Compiling SymbolKit GenericConstraints.swift
[43/57] Compiling SymbolKit Swift.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets Snippet.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.85s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/3] Emitting module StackOtterArgParserToolInfo
[3/3] Compiling StackOtterArgParserToolInfo ToolInfo.swift
[4/41] Compiling StackOtterArgParser ArgumentHelp.swift
[5/41] Compiling StackOtterArgParser ArgumentVisibility.swift
[6/41] Compiling StackOtterArgParser CompletionKind.swift
[7/41] Compiling StackOtterArgParser Errors.swift
[8/45] Emitting module StackOtterArgParser
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[9/45] Compiling StackOtterArgParser Flag.swift
[10/45] Compiling StackOtterArgParser NameSpecification.swift
[11/45] Compiling StackOtterArgParser Option.swift
[12/45] Compiling StackOtterArgParser OptionGroup.swift
[13/45] Compiling StackOtterArgParser ParsableArguments.swift
[14/45] Compiling StackOtterArgParser ParsableArgumentsValidation.swift
[15/45] Compiling StackOtterArgParser ParsableCommand.swift
[16/45] Compiling StackOtterArgParser ArgumentDecoder.swift
[17/45] Compiling StackOtterArgParser Platform.swift
[18/45] Compiling StackOtterArgParser SequenceExtensions.swift
[19/45] Compiling StackOtterArgParser StringExtensions.swift
[20/45] Compiling StackOtterArgParser Tree.swift
[21/45] Compiling StackOtterArgParser ParserError.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
[22/45] Compiling StackOtterArgParser SplitArguments.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
[23/45] Compiling StackOtterArgParser DumpHelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
[24/45] Compiling StackOtterArgParser HelpCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
[25/45] Compiling StackOtterArgParser BashCompletionsGenerator.swift
[26/45] Compiling StackOtterArgParser CompletionsGenerator.swift
[27/45] Compiling StackOtterArgParser FishCompletionsGenerator.swift
[28/45] Compiling StackOtterArgParser ZshCompletionsGenerator.swift
[29/45] Compiling StackOtterArgParser Argument.swift
[30/45] Compiling StackOtterArgParser HelpGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[31/45] Compiling StackOtterArgParser MessageInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[32/45] Compiling StackOtterArgParser UsageGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[33/45] Compiling StackOtterArgParser CollectionExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/Users/admin/builder/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[34/45] Compiling StackOtterArgParser InputOrigin.swift
[35/45] Compiling StackOtterArgParser Name.swift
[36/45] Compiling StackOtterArgParser Parsed.swift
[37/45] Compiling StackOtterArgParser ParsedValues.swift
[38/45] Compiling StackOtterArgParser ArgumentDefinition.swift
[39/45] Compiling StackOtterArgParser ArgumentSet.swift
[40/45] Compiling StackOtterArgParser CommandParser.swift
[41/45] Compiling StackOtterArgParser InputKey.swift
[42/45] Compiling StackOtterArgParser AsyncParsableCommand.swift
[43/45] Compiling StackOtterArgParser CommandConfiguration.swift
[44/45] Compiling StackOtterArgParser EnumerableFlag.swift
[45/45] Compiling StackOtterArgParser ExpressibleByArgument.swift
Build of target: 'StackOtterArgParser' complete! (1.71s)
677
6 /Users/admin/builder/spi-builder-workspace/.docs/wabiverse/swift-arg-parser/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/wabiverse/swift-arg-parser/main
File count: 677
Doc size: 6.0MB
Preparing doc bundle ...
Uploading prod-wabiverse-swift-arg-parser-main-436b9c73.zip to s3://spi-docs-inbox/prod-wabiverse-swift-arg-parser-main-436b9c73.zip
Copying... [12%]
Copying... [21%]
Copying... [33%]
Copying... [41%]
Copying... [54%]
Copying... [62%]
Copying... [70%]
Copying... [83%]
Copying... [91%]
Copying... [100%]
Done.