Build Information
Failed to build swift-argument-parser, reference main (b1b537
), with Swift 6.1 for Wasm on 29 May 2025 02:46:29 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
| |- 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 |
[46/121] Compiling StackOtterArgParser Platform.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
[47/121] Compiling StackOtterArgParser SequenceExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
[48/121] Compiling StackOtterArgParser StringExtensions.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
[49/121] Compiling StackOtterArgParser Tree.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
[50/121] Compiling StackOtterArgParser Name.swift
[51/121] Compiling StackOtterArgParser Parsed.swift
[52/121] Compiling StackOtterArgParser ParsedValues.swift
[53/121] Compiling StackOtterArgParser ParserError.swift
[54/121] Compiling StackOtterArgParser SplitArguments.swift
[55/121] Compiling StackOtterArgParser ArgumentDefinition.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
[56/121] Compiling StackOtterArgParser ArgumentSet.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
[57/121] Compiling StackOtterArgParser CommandParser.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
[58/121] Compiling StackOtterArgParser InputKey.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
[59/121] Compiling StackOtterArgParser InputOrigin.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:106:14: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
104 |
105 | /// The `stderr` output stream.
106 | static var standardError = StandardError()
| |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'standardError' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | }
108 |
/host/spi-builder-workspace/Sources/ArgumentParser/Utilities/Platform.swift:101:57: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
99 | struct StandardError: TextOutputStream {
100 | mutating func write(_ string: String) {
101 | for byte in string.utf8 { putc(numericCast(byte), stderr) }
| `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
102 | }
103 | }
/usr/include/stdio.h:145:14: note: var declared here
143 | extern FILE *stdin; /* Standard input stream. */
144 | extern FILE *stdout; /* Standard output stream. */
145 | extern FILE *stderr; /* Standard error output stream. */
| `- note: var declared here
146 | /* C89/C99 say they're macros. Make them happy. */
147 | #define stdin stdin
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
[70/121] Compiling StackOtterArgParser ExpressibleByArgument.swift
[71/121] Compiling StackOtterArgParser ParsableArguments.swift
[72/121] Compiling StackOtterArgParser ParsableArgumentsValidation.swift
[73/121] Compiling StackOtterArgParser ParsableCommand.swift
[74/121] Compiling StackOtterArgParser ArgumentDecoder.swift
[75/121] Compiling StackOtterArgParser Option.swift
[76/121] Compiling StackOtterArgParser OptionGroup.swift
[77/121] Compiling StackOtterArgParser AsyncParsableCommand.swift
[78/121] Compiling StackOtterArgParser CommandConfiguration.swift
[79/121] Compiling StackOtterArgParser EnumerableFlag.swift
[80/121] Compiling StackOtterArgParser DumpHelpGenerator.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[81/121] Compiling StackOtterArgParser HelpCommand.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[82/121] Compiling StackOtterArgParser HelpGenerator.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[83/121] Compiling StackOtterArgParser MessageInfo.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[84/121] Compiling StackOtterArgParser UsageGenerator.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:14:8: warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
12 | /// Gets thrown while parsing and will be handled by the error output generation.
13 | enum ParserError: Error {
14 | case helpRequested(visibility: ArgumentVisibility)
| `- warning: associated value 'helpRequested(visibility:)' of 'Sendable'-conforming enum 'ParserError' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
15 | case versionRequested
16 | case dumpHelpRequested
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/ParserError.swift:42:8: warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
40 | /// These are errors used internally to the parsing, and will not be exposed to the help generation.
41 | enum InternalParseError: Error {
42 | case wrongType(Any?, forKey: InputKey)
| `- warning: associated value 'wrongType(_:forKey:)' of 'Sendable'-conforming enum 'InternalParseError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | case subcommandNameMismatch
44 | case subcommandLevelMismatch(Int, Int)
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /// Only show help for this argument in the extended help screen.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Never show help for this argument.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /// Only show help for this argument in the extended help screen.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Never show help for this argument.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /// Only show help for this argument in the extended help screen.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Never show help for this argument.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /// Only show help for this argument in the extended help screen.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Never show help for this argument.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:25:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
23 |
24 | /// Show help for this argument whenever appropriate.
25 | public static let `default` = Self(base: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /// Only show help for this argument in the extended help screen.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:28:21: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
26 |
27 | /// Only show help for this argument in the extended help screen.
28 | public static let hidden = Self(base: .hidden)
| |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 | /// Never show help for this argument.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:31:21: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
:
29 |
30 | /// Never show help for this argument.
31 | public static let `private` = Self(base: .private)
| |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'ArgumentVisibility' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'private' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | }
33 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Parsing/CommandParser.swift:18:7: warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
16 |
17 | struct HelpRequested: Error {
18 | var visibility: ArgumentVisibility
| `- warning: stored property 'visibility' of 'Sendable'-conforming struct 'HelpRequested' has non-sendable type 'ArgumentVisibility'; this is an error in the Swift 6 language mode
19 | }
20 |
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift:13:15: note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
11 |
12 | /// Visibility level of an argument's help.
13 | public struct ArgumentVisibility: Hashable {
| `- note: consider making struct 'ArgumentVisibility' conform to the 'Sendable' protocol
14 | /// Internal implementation of `ArgumentVisibility` to allow for easier API
15 | /// evolution.
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpCommand.swift:13:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct HelpCommand: ParsableCommand {
13 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | commandName: "help",
15 | abstract: "Show subcommand help information.",
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:13:14: warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
| |- warning: static property 'helpIndent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'helpIndent' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'helpIndent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | static var labelColumnWidth = 26
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/HelpGenerator.swift:14:14: warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | internal struct HelpGenerator {
13 | static var helpIndent = 2
14 | static var labelColumnWidth = 26
| |- warning: static property 'labelColumnWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'labelColumnWidth' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'labelColumnWidth' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static var systemScreenWidth: Int { Platform.terminalWidth }
16 |
[106/131] Wrapping AST for StackOtterArgParser for debugging
error: emit-module command failed with exit code 1 (use -v to see invocation)
[109/187] Emitting module StackOtterArgParserTestHelpers
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:29:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
27 |
28 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
29 | extension CollectionDifference.Change: Comparable where ChangeElement: Equatable {
| |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 | public static func < (lhs: Self, rhs: Self) -> Bool {
31 | guard lhs.offset == rhs.offset else {
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:47:31: error: cannot find type 'XCTestExpectation' in scope
45 | // extensions to the ParsableArguments protocol to facilitate XCTestExpectation support
46 | public protocol TestableParsableArguments: ParsableArguments {
47 | var didValidateExpectation: XCTestExpectation { get }
| `- error: cannot find type 'XCTestExpectation' in scope
48 | }
49 |
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:58:26: error: cannot find type 'XCTestExpectation' in scope
56 | // extensions to the ParsableCommand protocol to facilitate XCTestExpectation support
57 | public protocol TestableParsableCommand: ParsableCommand, TestableParsableArguments {
58 | var didRunExpectation: XCTestExpectation { get }
| `- error: cannot find type 'XCTestExpectation' in scope
59 | }
60 |
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:67:11: error: cannot find type 'XCTestExpectation' in scope
65 | }
66 |
67 | extension XCTestExpectation {
| `- error: cannot find type 'XCTestExpectation' in scope
68 | public convenience init(singleExpectation description: String) {
69 | self.init(description: description)
[110/187] Compiling StackOtterArgParserTestHelpers StringHelpers.swift
[111/187] Compiling StackOtterArgParserTestHelpers TestHelpers.swift
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:29:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
27 |
28 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
29 | extension CollectionDifference.Change: Comparable where ChangeElement: Equatable {
| |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 | public static func < (lhs: Self, rhs: Self) -> Bool {
31 | guard lhs.offset == rhs.offset else {
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:47:31: error: cannot find type 'XCTestExpectation' in scope
45 | // extensions to the ParsableArguments protocol to facilitate XCTestExpectation support
46 | public protocol TestableParsableArguments: ParsableArguments {
47 | var didValidateExpectation: XCTestExpectation { get }
| `- error: cannot find type 'XCTestExpectation' in scope
48 | }
49 |
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:58:26: error: cannot find type 'XCTestExpectation' in scope
56 | // extensions to the ParsableCommand protocol to facilitate XCTestExpectation support
57 | public protocol TestableParsableCommand: ParsableCommand, TestableParsableArguments {
58 | var didRunExpectation: XCTestExpectation { get }
| `- error: cannot find type 'XCTestExpectation' in scope
59 | }
60 |
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:67:11: error: cannot find type 'XCTestExpectation' in scope
65 | }
66 |
67 | extension XCTestExpectation {
| `- error: cannot find type 'XCTestExpectation' in scope
68 | public convenience init(singleExpectation description: String) {
69 | self.init(description: description)
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:316:19: error: cannot find 'Process' in scope
314 |
315 | #if !canImport(Darwin) || os(macOS)
316 | let process = Process()
| `- error: cannot find 'Process' in scope
317 | if #available(macOS 10.13, *) {
318 | process.executableURL = commandURL
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:380:19: error: cannot find 'Process' in scope
378 |
379 | #if !canImport(Darwin) || os(macOS)
380 | let process = Process()
| `- error: cannot find 'Process' in scope
381 | if #available(macOS 10.13, *) {
382 | process.executableURL = commandURL
[112/187] Compiling gen_manual Process+SimpleAPI.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Process+SimpleAPI.swift:41:17: error: cannot find 'Process' in scope
39 | }
40 |
41 | let process = Process()
| `- error: cannot find 'Process' in scope
42 | if #available(macOS 10.13, *) {
43 | process.executableURL = executable
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/host/spi-builder-workspace/Tools/gen-manual/GenManual.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.")
[113/187] Compiling gen_manual GenManual.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Process+SimpleAPI.swift:41:17: error: cannot find 'Process' in scope
39 | }
40 |
41 | let process = Process()
| `- error: cannot find 'Process' in scope
42 | if #available(macOS 10.13, *) {
43 | process.executableURL = executable
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/host/spi-builder-workspace/Tools/gen-manual/GenManual.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.")
[114/187] Compiling gen_manual MDocASTNode.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Process+SimpleAPI.swift:41:17: error: cannot find 'Process' in scope
39 | }
40 |
41 | let process = Process()
| `- error: cannot find 'Process' in scope
42 | if #available(macOS 10.13, *) {
43 | process.executableURL = executable
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/host/spi-builder-workspace/Tools/gen-manual/GenManual.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.")
[115/190] Emitting module repeat
[116/190] Compiling repeat Repeat.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
/host/spi-builder-workspace/Tools/gen-manual/GenManual.swift:25:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
23 | }
24 |
25 | static let configuration = CommandConfiguration(
| `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
26 | commandName: "gen-manual",
27 | abstract: "Generate a manual for the provided tool.")
/host/spi-builder-workspace/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
[117/191] Emitting module math
/host/spi-builder-workspace/Examples/math/Math.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | // Customize your command's help and subcommands by implementing the
17 | // `configuration` property.
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | // Optional abstracts and discussions are used for help output.
20 | abstract: "A utility for performing maths.",
/host/spi-builder-workspace/Examples/math/Math.swift:53:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | struct Add: ParsableCommand {
53 | static var configuration =
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | CommandConfiguration(abstract: "Print the sum of the values.")
55 |
/host/spi-builder-workspace/Examples/math/Math.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
65 |
66 | struct Multiply: ParsableCommand {
67 | static var configuration =
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | CommandConfiguration(abstract: "Print the product of the values.")
69 |
/host/spi-builder-workspace/Examples/math/Math.swift:82:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
80 | extension Math {
81 | struct Statistics: ParsableCommand {
82 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | // Command names are automatically generated from the type name
84 | // by default; you can specify an override here.
/host/spi-builder-workspace/Examples/math/Math.swift:93:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
91 | extension Math.Statistics {
92 | struct Average: ParsableCommand {
93 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | abstract: "Print the average of the values.",
95 | version: "1.5.0-alpha")
/host/spi-builder-workspace/Examples/math/Math.swift:163:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | struct StandardDeviation: ParsableCommand {
163 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | commandName: "stdev",
165 | abstract: "Print the standard deviation of the values.")
/host/spi-builder-workspace/Examples/math/Math.swift:187:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
185 |
186 | struct Quantiles: ParsableCommand {
187 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 | abstract: "Print the quantiles of the values (TBD).")
189 |
/host/spi-builder-workspace/Examples/math/Math.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | // Customize your command's help and subcommands by implementing the
17 | // `configuration` property.
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | // Optional abstracts and discussions are used for help output.
20 | abstract: "A utility for performing maths.",
/host/spi-builder-workspace/Examples/math/Math.swift:53:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | struct Add: ParsableCommand {
53 | static var configuration =
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | CommandConfiguration(abstract: "Print the sum of the values.")
55 |
/host/spi-builder-workspace/Examples/math/Math.swift:67:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
65 |
66 | struct Multiply: ParsableCommand {
67 | static var configuration =
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | CommandConfiguration(abstract: "Print the product of the values.")
69 |
/host/spi-builder-workspace/Examples/math/Math.swift:82:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
80 | extension Math {
81 | struct Statistics: ParsableCommand {
82 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | // Command names are automatically generated from the type name
84 | // by default; you can specify an override here.
/host/spi-builder-workspace/Examples/math/Math.swift:93:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
91 | extension Math.Statistics {
92 | struct Average: ParsableCommand {
93 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | abstract: "Print the average of the values.",
95 | version: "1.5.0-alpha")
/host/spi-builder-workspace/Examples/math/Math.swift:163:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | struct StandardDeviation: ParsableCommand {
163 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | commandName: "stdev",
165 | abstract: "Print the standard deviation of the values.")
[118/191] Compiling roll SplitMix64.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin GenManual
Building for debugging...
[1/21] Write swift-version-24593BA9C3E375BF.txt
[3/25] Emitting module StackOtterArgParserToolInfo
[4/25] Compiling StackOtterArgParserToolInfo ToolInfo.swift
[5/26] Emitting module StackOtterArgParserToolInfo
[6/26] Compiling StackOtterArgParserToolInfo ToolInfo.swift
[9/99] Compiling StackOtterArgParser CompletionsGenerator.swift
[10/99] Compiling StackOtterArgParser FishCompletionsGenerator.swift
[11/99] Compiling StackOtterArgParser ZshCompletionsGenerator.swift
[12/99] Compiling StackOtterArgParser Argument.swift
[13/99] Compiling StackOtterArgParser ArgumentHelp.swift
[14/104] Emitting module StackOtterArgParser
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[16/109] Compiling StackOtterArgParser ArgumentVisibility.swift
[17/109] Compiling StackOtterArgParser CompletionKind.swift
[18/109] Compiling StackOtterArgParser Errors.swift
[19/109] Compiling StackOtterArgParser Flag.swift
[20/109] Compiling StackOtterArgParser NameSpecification.swift
[26/109] Compiling StackOtterArgParser BashCompletionsGenerator.swift
[27/109] Compiling StackOtterArgParser ExpressibleByArgument.swift
[28/109] Compiling StackOtterArgParser ParsableArguments.swift
[29/109] Compiling StackOtterArgParser ParsableArgumentsValidation.swift
[30/109] Compiling StackOtterArgParser ParsableCommand.swift
[31/109] Compiling StackOtterArgParser ArgumentDecoder.swift
[32/109] Compiling StackOtterArgParser Option.swift
[33/109] Compiling StackOtterArgParser OptionGroup.swift
[34/109] Compiling StackOtterArgParser AsyncParsableCommand.swift
[35/109] Compiling StackOtterArgParser CommandConfiguration.swift
[36/109] Compiling StackOtterArgParser EnumerableFlag.swift
[37/109] Compiling StackOtterArgParser DumpHelpGenerator.swift
[38/109] Compiling StackOtterArgParser HelpCommand.swift
[39/109] Compiling StackOtterArgParser HelpGenerator.swift
[40/109] Compiling StackOtterArgParser MessageInfo.swift
[41/109] Compiling StackOtterArgParser UsageGenerator.swift
[42/109] Compiling StackOtterArgParser Name.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[43/109] Compiling StackOtterArgParser Parsed.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[44/109] Compiling StackOtterArgParser ParsedValues.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[45/109] Compiling StackOtterArgParser ParserError.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[46/109] Compiling StackOtterArgParser SplitArguments.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[47/109] Compiling StackOtterArgParser ArgumentDefinition.swift
[48/109] Compiling StackOtterArgParser ArgumentSet.swift
[49/109] Compiling StackOtterArgParser CommandParser.swift
[50/109] Compiling StackOtterArgParser InputKey.swift
[51/109] Compiling StackOtterArgParser InputOrigin.swift
[52/109] Compiling StackOtterArgParser CollectionExtensions.swift
[53/109] Compiling StackOtterArgParser Platform.swift
[54/109] Compiling StackOtterArgParser SequenceExtensions.swift
[55/109] Compiling StackOtterArgParser StringExtensions.swift
[56/109] Compiling StackOtterArgParser Tree.swift
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.JSONEncoder
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import StackOtterArgParserToolInfo
13 | @_implementationOnly import class Foundation.JSONEncoder
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | internal struct DumpHelpGenerator {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 | @_implementationOnly import class Foundation.NSError
14 |
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/MessageInfo.swift:13:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
13 | @_implementationOnly import class Foundation.NSError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
14 |
15 | enum MessageInfo {
/host/spi-builder-workspace/Sources/ArgumentParser/Usage/UsageGenerator.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
10 | //===----------------------------------------------------------------------===//
11 |
12 | @_implementationOnly import protocol Foundation.LocalizedError
| `- warning: using '@_implementationOnly' without enabling library evolution for 'StackOtterArgParser' may lead to instability during execution
13 |
14 | struct UsageGenerator {
[94/111] Wrapping AST for StackOtterArgParser for debugging
[97/172] Emitting module repeat
[98/175] Compiling gen_manual Container.swift
[99/175] Compiling gen_manual Empty.swift
[100/175] Compiling gen_manual ForEach.swift
[101/175] Compiling gen_manual MDocASTNodeWrapper.swift
[102/178] Compiling gen_manual Process+SimpleAPI.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Process+SimpleAPI.swift:41:17: error: cannot find 'Process' in scope
39 | }
40 |
41 | let process = Process()
| `- error: cannot find 'Process' in scope
42 | if #available(macOS 10.13, *) {
43 | process.executableURL = executable
[103/178] Compiling gen_manual GenManual.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Process+SimpleAPI.swift:41:17: error: cannot find 'Process' in scope
39 | }
40 |
41 | let process = Process()
| `- error: cannot find 'Process' in scope
42 | if #available(macOS 10.13, *) {
43 | process.executableURL = executable
[104/178] Compiling gen_manual MDocASTNode.swift
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Process+SimpleAPI.swift:41:17: error: cannot find 'Process' in scope
39 | }
40 |
41 | let process = Process()
| `- error: cannot find 'Process' in scope
42 | if #available(macOS 10.13, *) {
43 | process.executableURL = executable
[105/178] Compiling gen_manual Synopsis.swift
[106/178] Compiling gen_manual ArgumentParser+MDoc.swift
[107/178] Compiling gen_manual Date+ExpressibleByArgument.swift
[108/178] Compiling gen_manual Preamble.swift
[109/181] Emitting module gen_manual
/host/spi-builder-workspace/Tools/gen-manual/Extensions/Date+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
13 | import Foundation
14 |
15 | extension Date: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'FoundationEssentials' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | // parsed as `yyyy-mm-dd`
17 | public init?(argument: String) {
[110/181] Compiling gen_manual AuthorArgument.swift
[111/181] Compiling gen_manual ArgumentSynopsis.swift
[112/181] Compiling gen_manual Author.swift
[113/181] Compiling gen_manual Authors.swift
[114/181] Compiling repeat Repeat.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[115/181] Compiling StackOtterArgParserTestHelpers StringHelpers.swift
[116/181] Emitting module StackOtterArgParserTestHelpers
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:29:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
27 |
28 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
29 | extension CollectionDifference.Change: Comparable where ChangeElement: Equatable {
| |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 | public static func < (lhs: Self, rhs: Self) -> Bool {
31 | guard lhs.offset == rhs.offset else {
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:47:31: error: cannot find type 'XCTestExpectation' in scope
45 | // extensions to the ParsableArguments protocol to facilitate XCTestExpectation support
46 | public protocol TestableParsableArguments: ParsableArguments {
47 | var didValidateExpectation: XCTestExpectation { get }
| `- error: cannot find type 'XCTestExpectation' in scope
48 | }
49 |
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:58:26: error: cannot find type 'XCTestExpectation' in scope
56 | // extensions to the ParsableCommand protocol to facilitate XCTestExpectation support
57 | public protocol TestableParsableCommand: ParsableCommand, TestableParsableArguments {
58 | var didRunExpectation: XCTestExpectation { get }
| `- error: cannot find type 'XCTestExpectation' in scope
59 | }
60 |
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:67:11: error: cannot find type 'XCTestExpectation' in scope
65 | }
66 |
67 | extension XCTestExpectation {
| `- error: cannot find type 'XCTestExpectation' in scope
68 | public convenience init(singleExpectation description: String) {
69 | self.init(description: description)
[117/181] Compiling StackOtterArgParserTestHelpers TestHelpers.swift
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:29:1: warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
27 |
28 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
29 | extension CollectionDifference.Change: Comparable where ChangeElement: Equatable {
| |- warning: extension declares a conformance of imported type 'Change' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
30 | public static func < (lhs: Self, rhs: Self) -> Bool {
31 | guard lhs.offset == rhs.offset else {
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:47:31: error: cannot find type 'XCTestExpectation' in scope
45 | // extensions to the ParsableArguments protocol to facilitate XCTestExpectation support
46 | public protocol TestableParsableArguments: ParsableArguments {
47 | var didValidateExpectation: XCTestExpectation { get }
| `- error: cannot find type 'XCTestExpectation' in scope
48 | }
49 |
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:58:26: error: cannot find type 'XCTestExpectation' in scope
56 | // extensions to the ParsableCommand protocol to facilitate XCTestExpectation support
57 | public protocol TestableParsableCommand: ParsableCommand, TestableParsableArguments {
58 | var didRunExpectation: XCTestExpectation { get }
| `- error: cannot find type 'XCTestExpectation' in scope
59 | }
60 |
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:67:11: error: cannot find type 'XCTestExpectation' in scope
65 | }
66 |
67 | extension XCTestExpectation {
| `- error: cannot find type 'XCTestExpectation' in scope
68 | public convenience init(singleExpectation description: String) {
69 | self.init(description: description)
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:316:19: error: cannot find 'Process' in scope
314 |
315 | #if !canImport(Darwin) || os(macOS)
316 | let process = Process()
| `- error: cannot find 'Process' in scope
317 | if #available(macOS 10.13, *) {
318 | process.executableURL = commandURL
/host/spi-builder-workspace/Sources/ArgumentParserTestHelpers/TestHelpers.swift:380:19: error: cannot find 'Process' in scope
378 |
379 | #if !canImport(Darwin) || os(macOS)
380 | let process = Process()
| `- error: cannot find 'Process' in scope
381 | if #available(macOS 10.13, *) {
382 | process.executableURL = commandURL
[123/182] Compiling roll SplitMix64.swift
[124/182] Compiling roll main.swift
[125/182] Emitting module roll
[126/183] Compiling gen_manual Section.swift
[127/183] Compiling gen_manual SeeAlso.swift
[128/183] Compiling gen_manual SinglePageDescription.swift
[129/183] Compiling gen_manual Exit.swift
[130/183] Emitting module math
BUILD FAILURE 6.1 wasm