Build Information
Successful build of swift-bundler, reference v2.0.5 (aa89e3
), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 16:19:58 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import ArgumentParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[177/240] Compiling swift_bundler FileManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Configuration/ExpressionEvaluator.swift:12:14: warning: static property 'expressionParser' is not concurrency-safe because non-'Sendable' type 'Parse<ParserBuilder.ZipOO<Prefix<Substring>, OneOf<OneOfBuilder.OneOf2<Parse<Parsers.Map<ParserBuilder.ZipVOV<String, Prefix<Substring>, String>, Optional<Substring>>>, Parse<Parsers.Map<End<Substring>, Optional<Substring>>>>>>>' may have shared mutable state; this is an error in the Swift 6 language mode
10 | struct ExpressionEvaluator {
11 | /// The parser used to parse expressions. See ``evaluateExpression(_:)``.
12 | static let expressionParser = Parse {
| `- warning: static property 'expressionParser' is not concurrency-safe because non-'Sendable' type 'Parse<ParserBuilder.ZipOO<Prefix<Substring>, OneOf<OneOfBuilder.OneOf2<Parse<Parsers.Map<ParserBuilder.ZipVOV<String, Prefix<Substring>, String>, Optional<Substring>>>, Parse<Parsers.Map<End<Substring>, Optional<Substring>>>>>>>' may have shared mutable state; this is an error in the Swift 6 language mode
13 | Prefix { $0 != "{" }
14 | OneOf {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/Parsers/Parse.swift:23:15: note: generic struct 'Parse' does not conform to the 'Sendable' protocol
21 | /// // | ^ expected integer
22 | /// ```
23 | public struct Parse<Parsers: Parser>: Parser {
| `- note: generic struct 'Parse' does not conform to the 'Sendable' protocol
24 | public let parsers: Parsers
25 |
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Configuration/ExpressionEvaluator.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Parsing'
1 | import Foundation
2 | import Parsing
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Parsing'
3 |
4 | /// Evaluates strings that can contain any number of variable substitutions of the form `{VARIABLE_NAME}`.
:
10 | struct ExpressionEvaluator {
11 | /// The parser used to parse expressions. See ``evaluateExpression(_:)``.
12 | static let expressionParser = Parse {
| |- note: annotate 'expressionParser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | Prefix { $0 != "{" }
14 | OneOf {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import ArgumentParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[178/240] Compiling swift_bundler OutputPartsBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/main.swift:16:9: warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | // Disable colored output if run from Xcode (the Xcode console does not support colors)
16 | Rainbow.enabled = ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] == nil
| `- warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 | #endif
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Rainbow/Sources/Rainbow.swift:101:23: note: static property declared here
99 |
100 | /// Enable `Rainbow` to colorize string or not. Default is `true`, unless the `NO_COLOR` environment variable is set.
101 | public static var enabled = ProcessInfo.processInfo.environment["NO_COLOR"] == nil
| `- note: static property declared here
102 |
103 | public static func extractEntry(for string: String) -> Entry {
[179/240] Compiling swift_bundler Section.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/main.swift:16:9: warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | // Disable colored output if run from Xcode (the Xcode console does not support colors)
16 | Rainbow.enabled = ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] == nil
| `- warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 | #endif
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Rainbow/Sources/Rainbow.swift:101:23: note: static property declared here
99 |
100 | /// Enable `Rainbow` to colorize string or not. Default is `true`, unless the `NO_COLOR` environment variable is set.
101 | public static var enabled = ProcessInfo.processInfo.environment["NO_COLOR"] == nil
| `- note: static property declared here
102 |
103 | public static func extractEntry(for string: String) -> Entry {
[180/240] Compiling swift_bundler String+OutputComponent.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/main.swift:16:9: warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | // Disable colored output if run from Xcode (the Xcode console does not support colors)
16 | Rainbow.enabled = ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] == nil
| `- warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 | #endif
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Rainbow/Sources/Rainbow.swift:101:23: note: static property declared here
99 |
100 | /// Enable `Rainbow` to colorize string or not. Default is `true`, unless the `NO_COLOR` environment variable is set.
101 | public static var enabled = ProcessInfo.processInfo.environment["NO_COLOR"] == nil
| `- note: static property declared here
102 |
103 | public static func extractEntry(for string: String) -> Entry {
[181/240] Compiling swift_bundler StringOutput.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/main.swift:16:9: warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | // Disable colored output if run from Xcode (the Xcode console does not support colors)
16 | Rainbow.enabled = ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] == nil
| `- warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 | #endif
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Rainbow/Sources/Rainbow.swift:101:23: note: static property declared here
99 |
100 | /// Enable `Rainbow` to colorize string or not. Default is `true`, unless the `NO_COLOR` environment variable is set.
101 | public static var enabled = ProcessInfo.processInfo.environment["NO_COLOR"] == nil
| `- note: static property declared here
102 |
103 | public static func extractEntry(for string: String) -> Entry {
[182/240] Compiling swift_bundler Signal.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/main.swift:16:9: warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | // Disable colored output if run from Xcode (the Xcode console does not support colors)
16 | Rainbow.enabled = ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] == nil
| `- warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 | #endif
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Rainbow/Sources/Rainbow.swift:101:23: note: static property declared here
99 |
100 | /// Enable `Rainbow` to colorize string or not. Default is `true`, unless the `NO_COLOR` environment variable is set.
101 | public static var enabled = ProcessInfo.processInfo.environment["NO_COLOR"] == nil
| `- note: static property declared here
102 |
103 | public static func extractEntry(for string: String) -> Entry {
[183/240] Compiling swift_bundler Stopwatch.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/main.swift:16:9: warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | // Disable colored output if run from Xcode (the Xcode console does not support colors)
16 | Rainbow.enabled = ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] == nil
| `- warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 | #endif
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Rainbow/Sources/Rainbow.swift:101:23: note: static property declared here
99 |
100 | /// Enable `Rainbow` to colorize string or not. Default is `true`, unless the `NO_COLOR` environment variable is set.
101 | public static var enabled = ProcessInfo.processInfo.environment["NO_COLOR"] == nil
| `- note: static property declared here
102 |
103 | public static func extractEntry(for string: String) -> Entry {
[184/240] Compiling swift_bundler main.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/main.swift:16:9: warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | // Disable colored output if run from Xcode (the Xcode console does not support colors)
16 | Rainbow.enabled = ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] == nil
| `- warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 | #endif
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Rainbow/Sources/Rainbow.swift:101:23: note: static property declared here
99 |
100 | /// Enable `Rainbow` to colorize string or not. Default is `true`, unless the `NO_COLOR` environment variable is set.
101 | public static var enabled = ProcessInfo.processInfo.environment["NO_COLOR"] == nil
| `- note: static property declared here
102 |
103 | public static func extractEntry(for string: String) -> Entry {
[185/240] Compiling swift_bundler PlistCreator.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[186/240] Compiling swift_bundler PlistCreatorError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[187/240] Compiling swift_bundler ResourceBundler.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[188/240] Compiling swift_bundler ResourceBundlerError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[189/240] Compiling swift_bundler BuildArchitecture.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[190/240] Compiling swift_bundler BuildConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[191/240] Compiling swift_bundler SwiftPackageManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[192/240] Compiling swift_bundler SwiftPackageManagerError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[193/240] Emitting module swift_bundler
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/main.swift:16:9: warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | // Disable colored output if run from Xcode (the Xcode console does not support colors)
16 | Rainbow.enabled = ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] == nil
| `- warning: reference to static property 'enabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 | #endif
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Rainbow/Sources/Rainbow.swift:101:23: note: static property declared here
99 |
100 | /// Enable `Rainbow` to colorize string or not. Default is `true`, unless the `NO_COLOR` environment variable is set.
101 | public static var enabled = ProcessInfo.processInfo.environment["NO_COLOR"] == nil
| `- note: static property declared here
102 |
103 | public static func extractEntry(for string: String) -> Entry {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
1 | import Foundation
2 | import Version
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
3 |
4 | /// An error returned by ``Templater``.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:6: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
4 | /// The subcommand for creating app bundles for a package.
5 | struct BundleCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "bundle",
8 | abstract: "Create an app bundle from a package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:6: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
4 | /// The subcommand for creating new app packages from templates.
5 | struct CreateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "create",
8 | abstract: "Create a new app package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6: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
4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
5 | struct GenerateXcodeSupportCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "generate-xcode-support",
8 | abstract: "Generate the files required for Xcode to work nicely with a package.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6: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
4 | /// The subcommand for running an app from a package.
5 | struct RunCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "run",
8 | abstract: "Run a package as an app.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7: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
5 | /// The subcommand for getting info about a template.
6 | struct TemplatesInfoCommand: Command {
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6: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
4 | /// The subcommand for listing available templates.
5 | struct TemplatesListCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6: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
4 | /// The subcommand for updating the default templates repository.
5 | struct TemplatesUpdateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6: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
4 | /// The subcommand for managing and listing available package templates.
5 | struct TemplatesCommand: ParsableCommand {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Configuration/ExpressionEvaluator.swift:12:14: warning: static property 'expressionParser' is not concurrency-safe because non-'Sendable' type 'Parse<ParserBuilder.ZipOO<Prefix<Substring>, OneOf<OneOfBuilder.OneOf2<Parse<Parsers.Map<ParserBuilder.ZipVOV<String, Prefix<Substring>, String>, Optional<Substring>>>, Parse<Parsers.Map<End<Substring>, Optional<Substring>>>>>>>' may have shared mutable state; this is an error in the Swift 6 language mode
10 | struct ExpressionEvaluator {
11 | /// The parser used to parse expressions. See ``evaluateExpression(_:)``.
12 | static let expressionParser = Parse {
| `- warning: static property 'expressionParser' is not concurrency-safe because non-'Sendable' type 'Parse<ParserBuilder.ZipOO<Prefix<Substring>, OneOf<OneOfBuilder.OneOf2<Parse<Parsers.Map<ParserBuilder.ZipVOV<String, Prefix<Substring>, String>, Optional<Substring>>>, Parse<Parsers.Map<End<Substring>, Optional<Substring>>>>>>>' may have shared mutable state; this is an error in the Swift 6 language mode
13 | Prefix { $0 != "{" }
14 | OneOf {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/Parsers/Parse.swift:23:15: note: generic struct 'Parse' does not conform to the 'Sendable' protocol
21 | /// // | ^ expected integer
22 | /// ```
23 | public struct Parse<Parsers: Parser>: Parser {
| `- note: generic struct 'Parse' does not conform to the 'Sendable' protocol
24 | public let parsers: Parsers
25 |
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Configuration/ExpressionEvaluator.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Parsing'
1 | import Foundation
2 | import Parsing
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Parsing'
3 |
4 | /// Evaluates strings that can contain any number of variable substitutions of the form `{VARIABLE_NAME}`.
:
10 | struct ExpressionEvaluator {
11 | /// The parser used to parse expressions. See ``evaluateExpression(_:)``.
12 | static let expressionParser = Parse {
| |- note: annotate 'expressionParser' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | Prefix { $0 != "{" }
14 | OneOf {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import ArgumentParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7: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
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | 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
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
1 | import Foundation
2 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
3 | import Darwin
4 |
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | static let configuration = CommandConfiguration(
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:6:5: warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 |
5 | /// The standard error stream used for logging errors.
6 | var standardError = FileHandle.standardError
| |- warning: var 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | /// Swift Bundler's basic log handler.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[194/240] Compiling swift_bundler Bundler.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[195/240] Compiling swift_bundler BundlerError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[196/240] Compiling swift_bundler DynamicLibraryBundler.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[197/240] Compiling swift_bundler DynamicLibraryBundlerError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[198/240] Compiling swift_bundler IconSetCreator.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[199/240] Compiling swift_bundler IconSetCreatorError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[200/240] Compiling swift_bundler MetalCompiler.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[201/240] Compiling swift_bundler MetalCompilerError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[202/240] Compiling swift_bundler Line.swift
[203/240] Compiling swift_bundler LineBuilder.swift
[204/240] Compiling swift_bundler LinePartsBuilder.swift
[205/240] Compiling swift_bundler List.swift
[206/240] Compiling swift_bundler Output.swift
[207/240] Compiling swift_bundler OutputBuilder.swift
[208/240] Compiling swift_bundler OutputComponent.swift
[209/240] Compiling swift_bundler SwiftTargetInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
1 | import Foundation
2 | import Version
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
3 |
4 | /// An error returned by ``Templater``.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
[210/240] Compiling swift_bundler IndentationStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
1 | import Foundation
2 | import Version
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
3 |
4 | /// An error returned by ``Templater``.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
[211/240] Compiling swift_bundler SystemDependency.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
1 | import Foundation
2 | import Version
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
3 |
4 | /// An error returned by ``Templater``.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
[212/240] Compiling swift_bundler Template.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
1 | import Foundation
2 | import Version
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
3 |
4 | /// An error returned by ``Templater``.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
[213/240] Compiling swift_bundler TemplateManifest.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
1 | import Foundation
2 | import Version
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
3 |
4 | /// An error returned by ``Templater``.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
[214/240] Compiling swift_bundler Templater.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
1 | import Foundation
2 | import Version
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
3 |
4 | /// An error returned by ``Templater``.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
[215/240] Compiling swift_bundler TemplaterError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
1 | import Foundation
2 | import Version
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
3 |
4 | /// An error returned by ``Templater``.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
[216/240] Compiling swift_bundler XcodeSupportGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
1 | import Foundation
2 | import Version
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Version'
3 |
4 | /// An error returned by ``Templater``.
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Bundler/Templater/TemplaterError.swift:15:8: warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
13 | case failedToReadTemplateManifest(template: String, manifest: URL, Error)
14 | case templateDoesNotSupportCurrentPlatform(template: String, platform: String, supportedPlatforms: [String])
15 | case templateDoesNotSupportInstalledSwiftVersion(template: String, version: Version, minimumSupportedVersion: Version)
| `- warning: associated value 'templateDoesNotSupportInstalledSwiftVersion(template:version:minimumSupportedVersion:)' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'Version'; this is an error in the Swift 6 language mode
16 | case failedToEnumerateTemplateContents(template: String)
17 | case failedToReadFile(template: String, file: URL, Error)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Version/Sources/Version.swift:18:15: note: struct 'Version' does not conform to the 'Sendable' protocol
16 | - SeeAlso: https://semver.org
17 | */
18 | public struct Version {
| `- note: struct 'Version' does not conform to the 'Sendable' protocol
19 | /// The major version.
20 | public let major: Int
[217/240] Compiling swift_bundler TemplatesListCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6: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
4 | /// The subcommand for listing available templates.
5 | struct TemplatesListCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6: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
4 | /// The subcommand for updating the default templates repository.
5 | struct TemplatesUpdateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6: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
4 | /// The subcommand for managing and listing available package templates.
5 | struct TemplatesCommand: ParsableCommand {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
[218/240] Compiling swift_bundler TemplatesUpdateCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6: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
4 | /// The subcommand for listing available templates.
5 | struct TemplatesListCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6: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
4 | /// The subcommand for updating the default templates repository.
5 | struct TemplatesUpdateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6: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
4 | /// The subcommand for managing and listing available package templates.
5 | struct TemplatesCommand: ParsableCommand {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
[219/240] Compiling swift_bundler TemplatesCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6: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
4 | /// The subcommand for listing available templates.
5 | struct TemplatesListCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6: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
4 | /// The subcommand for updating the default templates repository.
5 | struct TemplatesUpdateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6: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
4 | /// The subcommand for managing and listing available package templates.
5 | struct TemplatesCommand: ParsableCommand {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
[220/240] Compiling swift_bundler AppConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6: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
4 | /// The subcommand for listing available templates.
5 | struct TemplatesListCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6: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
4 | /// The subcommand for updating the default templates repository.
5 | struct TemplatesUpdateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6: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
4 | /// The subcommand for managing and listing available package templates.
5 | struct TemplatesCommand: ParsableCommand {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
[221/240] Compiling swift_bundler AppConfigurationError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6: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
4 | /// The subcommand for listing available templates.
5 | struct TemplatesListCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6: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
4 | /// The subcommand for updating the default templates repository.
5 | struct TemplatesUpdateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6: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
4 | /// The subcommand for managing and listing available package templates.
5 | struct TemplatesCommand: ParsableCommand {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
[222/240] Compiling swift_bundler Configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6: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
4 | /// The subcommand for listing available templates.
5 | struct TemplatesListCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6: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
4 | /// The subcommand for updating the default templates repository.
5 | struct TemplatesUpdateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6: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
4 | /// The subcommand for managing and listing available package templates.
5 | struct TemplatesCommand: ParsableCommand {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
[223/240] Compiling swift_bundler ConfigurationError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesListCommand.swift:6: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
4 | /// The subcommand for listing available templates.
5 | struct TemplatesListCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesUpdateCommand.swift:6: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
4 | /// The subcommand for updating the default templates repository.
5 | struct TemplatesUpdateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/TemplatesCommand.swift:6: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
4 | /// The subcommand for managing and listing available package templates.
5 | struct TemplatesCommand: ParsableCommand {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
[224/240] Compiling swift_bundler XcodeSupportGeneratorError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:6: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
4 | /// The subcommand for creating app bundles for a package.
5 | struct BundleCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "bundle",
8 | abstract: "Create an app bundle from a package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:6: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
4 | /// The subcommand for creating new app packages from templates.
5 | struct CreateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "create",
8 | abstract: "Create a new app package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6: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
4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
5 | struct GenerateXcodeSupportCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "generate-xcode-support",
8 | abstract: "Generate the files required for Xcode to work nicely with a package.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6: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
4 | /// The subcommand for running an app from a package.
5 | struct RunCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "run",
8 | abstract: "Run a package as an app.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7: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
5 | /// The subcommand for getting info about a template.
6 | struct TemplatesInfoCommand: Command {
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template.")
[225/240] Compiling swift_bundler BundleCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:6: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
4 | /// The subcommand for creating app bundles for a package.
5 | struct BundleCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "bundle",
8 | abstract: "Create an app bundle from a package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:6: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
4 | /// The subcommand for creating new app packages from templates.
5 | struct CreateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "create",
8 | abstract: "Create a new app package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6: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
4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
5 | struct GenerateXcodeSupportCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "generate-xcode-support",
8 | abstract: "Generate the files required for Xcode to work nicely with a package.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6: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
4 | /// The subcommand for running an app from a package.
5 | struct RunCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "run",
8 | abstract: "Run a package as an app.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7: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
5 | /// The subcommand for getting info about a template.
6 | struct TemplatesInfoCommand: Command {
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template.")
[226/240] Compiling swift_bundler Command.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:6: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
4 | /// The subcommand for creating app bundles for a package.
5 | struct BundleCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "bundle",
8 | abstract: "Create an app bundle from a package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:6: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
4 | /// The subcommand for creating new app packages from templates.
5 | struct CreateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "create",
8 | abstract: "Create a new app package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6: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
4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
5 | struct GenerateXcodeSupportCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "generate-xcode-support",
8 | abstract: "Generate the files required for Xcode to work nicely with a package.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6: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
4 | /// The subcommand for running an app from a package.
5 | struct RunCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "run",
8 | abstract: "Run a package as an app.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7: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
5 | /// The subcommand for getting info about a template.
6 | struct TemplatesInfoCommand: Command {
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template.")
[227/240] Compiling swift_bundler CreateCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:6: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
4 | /// The subcommand for creating app bundles for a package.
5 | struct BundleCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "bundle",
8 | abstract: "Create an app bundle from a package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:6: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
4 | /// The subcommand for creating new app packages from templates.
5 | struct CreateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "create",
8 | abstract: "Create a new app package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6: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
4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
5 | struct GenerateXcodeSupportCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "generate-xcode-support",
8 | abstract: "Generate the files required for Xcode to work nicely with a package.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6: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
4 | /// The subcommand for running an app from a package.
5 | struct RunCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "run",
8 | abstract: "Run a package as an app.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7: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
5 | /// The subcommand for getting info about a template.
6 | struct TemplatesInfoCommand: Command {
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template.")
[228/240] Compiling swift_bundler GenerateXcodeSupportCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:6: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
4 | /// The subcommand for creating app bundles for a package.
5 | struct BundleCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "bundle",
8 | abstract: "Create an app bundle from a package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:6: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
4 | /// The subcommand for creating new app packages from templates.
5 | struct CreateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "create",
8 | abstract: "Create a new app package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6: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
4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
5 | struct GenerateXcodeSupportCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "generate-xcode-support",
8 | abstract: "Generate the files required for Xcode to work nicely with a package.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6: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
4 | /// The subcommand for running an app from a package.
5 | struct RunCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "run",
8 | abstract: "Run a package as an app.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7: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
5 | /// The subcommand for getting info about a template.
6 | struct TemplatesInfoCommand: Command {
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template.")
[229/240] Compiling swift_bundler RunCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:6: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
4 | /// The subcommand for creating app bundles for a package.
5 | struct BundleCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "bundle",
8 | abstract: "Create an app bundle from a package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:6: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
4 | /// The subcommand for creating new app packages from templates.
5 | struct CreateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "create",
8 | abstract: "Create a new app package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6: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
4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
5 | struct GenerateXcodeSupportCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "generate-xcode-support",
8 | abstract: "Generate the files required for Xcode to work nicely with a package.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6: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
4 | /// The subcommand for running an app from a package.
5 | struct RunCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "run",
8 | abstract: "Run a package as an app.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7: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
5 | /// The subcommand for getting info about a template.
6 | struct TemplatesInfoCommand: Command {
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template.")
[230/240] Compiling swift_bundler TemplatesInfoCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:6: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
4 | /// The subcommand for creating app bundles for a package.
5 | struct BundleCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "bundle",
8 | abstract: "Create an app bundle from a package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/CreateCommand.swift:6: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
4 | /// The subcommand for creating new app packages from templates.
5 | struct CreateCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "create",
8 | abstract: "Create a new app package.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/GenerateXcodeSupportCommand.swift:6: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
4 | /// The subcommand for generating Xcode related support files (i.e. Xcode schemes).
5 | struct GenerateXcodeSupportCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "generate-xcode-support",
8 | abstract: "Generate the files required for Xcode to work nicely with a package.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/RunCommand.swift:6: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
4 | /// The subcommand for running an app from a package.
5 | struct RunCommand: Command {
6 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "run",
8 | abstract: "Run a package as an app.")
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Commands/Templates/TemplatesInfoCommand.swift:7: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
5 | /// The subcommand for getting info about a template.
6 | struct TemplatesInfoCommand: Command {
7 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template.")
[231/240] Compiling swift_bundler Process.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7: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
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | 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
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
1 | import Foundation
2 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
3 | import Darwin
4 |
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | static let configuration = CommandConfiguration(
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[232/240] Compiling swift_bundler ProcessError.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7: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
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | 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
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
1 | import Foundation
2 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
3 | import Darwin
4 |
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | static let configuration = CommandConfiguration(
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[233/240] Compiling swift_bundler Result.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7: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
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | 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
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
1 | import Foundation
2 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
3 | import Darwin
4 |
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | static let configuration = CommandConfiguration(
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[234/240] Compiling swift_bundler Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7: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
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | 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
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
1 | import Foundation
2 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
3 | import Darwin
4 |
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | static let configuration = CommandConfiguration(
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[235/240] Compiling swift_bundler String.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7: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
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | 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
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
1 | import Foundation
2 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
3 | import Darwin
4 |
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | static let configuration = CommandConfiguration(
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[236/240] Compiling swift_bundler URL.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7: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
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | 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
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
1 | import Foundation
2 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
3 | import Darwin
4 |
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | static let configuration = CommandConfiguration(
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[237/240] Compiling swift_bundler SwiftBundler.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Extensions/Process.swift:6:5: warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
4 | ///
5 | /// If the program is killed, all processes in this array are terminated before the program exits.
6 | var processes: [Process] = []
| |- warning: var 'processes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'processes' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'processes' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | extension Process {
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:7: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
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | 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
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
11 |
12 | /// The configuration for a command.
13 | public struct CommandConfiguration {
| `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
14 | /// The name of the command to use on the command line.
15 | ///
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/SwiftBundler.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
1 | import Foundation
2 | import ArgumentParser
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
3 | import Darwin
4 |
5 | /// The root command of Swift Bundler.
6 | struct SwiftBundler: ParsableCommand {
7 | static let configuration = CommandConfiguration(
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "swift-bundler",
9 | abstract: "A tool for creating macOS apps from Swift packages.",
/Users/admin/builder/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:31:5: warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | /// The global logger.
31 | var log = Logger(label: "Bundler") { _ in
| |- warning: var 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | return Handler()
33 | }
[237/240] Write Objects.LinkFileList
[238/240] Linking swift-bundler
[239/240] Applying swift-bundler
Build complete! (32.60s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"branch" : [
"main"
]
},
"type" : "sourceControl",
"url" : "https://github.com/stackotter/swift-argument-parser"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log"
},
{
"identity" : "swift-parsing",
"requirement" : {
"range" : [
{
"lower_bound" : "0.7.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-parsing.git"
},
{
"identity" : "tomlkit",
"requirement" : {
"range" : [
{
"lower_bound" : "0.5.2",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/LebJe/TOMLKit"
},
{
"identity" : "rainbow",
"requirement" : {
"range" : [
{
"lower_bound" : "4.0.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/onevcat/Rainbow"
},
{
"identity" : "version",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/mxcl/Version.git"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "swift-bundler",
"name" : "swift-bundler",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "swift-bundler",
"targets" : [
"swift-bundler"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "swift_bundler",
"module_type" : "SwiftTarget",
"name" : "swift-bundler",
"path" : "Sources/swift-bundler",
"product_dependencies" : [
"ArgumentParser",
"Logging",
"Parsing",
"TOMLKit",
"Rainbow",
"Version"
],
"product_memberships" : [
"swift-bundler"
],
"sources" : [
"Bundler/Bundler.swift",
"Bundler/BundlerError.swift",
"Bundler/DynamicLibraryBundler.swift",
"Bundler/DynamicLibraryBundlerError.swift",
"Bundler/IconSetCreator.swift",
"Bundler/IconSetCreatorError.swift",
"Bundler/MetalCompiler.swift",
"Bundler/MetalCompilerError.swift",
"Bundler/PlistCreator.swift",
"Bundler/PlistCreatorError.swift",
"Bundler/ResourceBundler.swift",
"Bundler/ResourceBundlerError.swift",
"Bundler/SwiftPackageManager/BuildArchitecture.swift",
"Bundler/SwiftPackageManager/BuildConfiguration.swift",
"Bundler/SwiftPackageManager/SwiftPackageManager.swift",
"Bundler/SwiftPackageManager/SwiftPackageManagerError.swift",
"Bundler/SwiftPackageManager/SwiftTargetInfo.swift",
"Bundler/Templater/IndentationStyle.swift",
"Bundler/Templater/SystemDependency.swift",
"Bundler/Templater/Template.swift",
"Bundler/Templater/TemplateManifest.swift",
"Bundler/Templater/Templater.swift",
"Bundler/Templater/TemplaterError.swift",
"Bundler/XcodeSupportGenerator.swift",
"Bundler/XcodeSupportGeneratorError.swift",
"Commands/BundleCommand.swift",
"Commands/Command.swift",
"Commands/CreateCommand.swift",
"Commands/GenerateXcodeSupportCommand.swift",
"Commands/RunCommand.swift",
"Commands/Templates/TemplatesInfoCommand.swift",
"Commands/Templates/TemplatesListCommand.swift",
"Commands/Templates/TemplatesUpdateCommand.swift",
"Commands/TemplatesCommand.swift",
"Configuration/AppConfiguration.swift",
"Configuration/AppConfigurationError.swift",
"Configuration/Configuration.swift",
"Configuration/ConfigurationError.swift",
"Configuration/ExpressionEvaluator.swift",
"Configuration/ExpressionEvaluatorError.swift",
"Configuration/OldConfiguration.swift",
"Extensions/Array.swift",
"Extensions/CaseIterable.swift",
"Extensions/FileHandle+TextOutputStream.swift",
"Extensions/FileManager.swift",
"Extensions/Process.swift",
"Extensions/ProcessError.swift",
"Extensions/Result.swift",
"Extensions/Sequence.swift",
"Extensions/String.swift",
"Extensions/URL.swift",
"SwiftBundler.swift",
"Utility/Logger.swift",
"Utility/LoggerLevel.swift",
"Utility/OutputBuilder/Array+OutputComponent.swift",
"Utility/OutputBuilder/ExampleCommand.swift",
"Utility/OutputBuilder/InlineList.swift",
"Utility/OutputBuilder/KeyedList.swift",
"Utility/OutputBuilder/KeyedListBuilder.swift",
"Utility/OutputBuilder/Line.swift",
"Utility/OutputBuilder/LineBuilder.swift",
"Utility/OutputBuilder/LinePartsBuilder.swift",
"Utility/OutputBuilder/List.swift",
"Utility/OutputBuilder/Output.swift",
"Utility/OutputBuilder/OutputBuilder.swift",
"Utility/OutputBuilder/OutputComponent.swift",
"Utility/OutputBuilder/OutputPartsBuilder.swift",
"Utility/OutputBuilder/Section.swift",
"Utility/OutputBuilder/String+OutputComponent.swift",
"Utility/OutputBuilder/StringOutput.swift",
"Utility/Signal.swift",
"Utility/Stopwatch.swift",
"main.swift"
],
"type" : "executable"
},
{
"c99name" : "SwiftBundler",
"module_type" : "SwiftTarget",
"name" : "SwiftBundler",
"path" : "Documentation",
"sources" : [
"Empty.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/stackotter/swift-bundler/v2.0.5
Repository: stackotter/swift-bundler
Swift version used: 6.0
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
Target: SwiftBundler
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Generating documentation for 'SwiftBundler'...
Converting documentation...
Conversion complete! (0.12s)
Generated DocC archive at '/Users/admin/builder/spi-builder-workspace/.docs/stackotter/swift-bundler/v2.0.5'
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/3] Compiling SwiftBundler Empty.swift
[3/3] Emitting module SwiftBundler
Build of target: 'SwiftBundler' complete! (0.35s)
66
2 /Users/admin/builder/spi-builder-workspace/.docs/stackotter/swift-bundler/v2.0.5
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/stackotter/swift-bundler/v2.0.5
File count: 66
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-stackotter-swift-bundler-v2.0.5-53f4607f.zip to s3://spi-docs-inbox/prod-stackotter-swift-bundler-v2.0.5-53f4607f.zip
Copying... [19%]
Copying... [39%]
Copying... [58%]
Copying... [78%]
Copying... [97%]
Copying... [100%]
Done.