Build Information
Successful build of swift-bundler, reference main (a32762
), with Swift 6.1 for Linux on 1 May 2025 14:23:02 UTC.
Swift 6 data race errors: 56
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
Build Log
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | {
22 | "type": ["number", "string", "object", "array", "boolean"]
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ProjectConfiguration.swift:55:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
53 | typealias Base = ProjectConfiguration
54 |
55 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [:]
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 | var condition: OverlayCondition
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/V2/AppConfigurationV2.swift:85:23: warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
83 | case .array(let array):
84 | return .array(
85 | await array.asyncMap { value in
| `- warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
86 | return await updateVariableDelimiters(value)
87 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:18:6: note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
16 | /// }
17 | /// ```
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
| `- note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
[3930/3987] Compiling SwiftBundler PackageConfigurationV1.swift
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/SwiftBundler/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: AsyncParsableCommand {
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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/AppConfiguration.swift:131:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
129 | typealias Base = AppConfiguration
130 |
131 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 | .platform("linux"): PropertySet()
133 | .add(.dbusActivatable, \.dbusActivatable),
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistError.swift:10:8: warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
8 | case failedToDeserializePlistFileContents(Data, Error?)
9 | case failedToReadInfoPlistFile(Error)
10 | case invalidPlistValue(Any)
| `- warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | var errorDescription: String? {
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:20:22: warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
| |- warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'schema' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'schema' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | {
22 | "type": ["number", "string", "object", "array", "boolean"]
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ProjectConfiguration.swift:55:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
53 | typealias Base = ProjectConfiguration
54 |
55 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [:]
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 | var condition: OverlayCondition
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/V2/AppConfigurationV2.swift:85:23: warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
83 | case .array(let array):
84 | return .array(
85 | await array.asyncMap { value in
| `- warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
86 | return await updateVariableDelimiters(value)
87 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:18:6: note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
16 | /// }
17 | /// ```
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
| `- note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
[3931/3987] Compiling SwiftBundler AppConfigurationV2.swift
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/SwiftBundler/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: AsyncParsableCommand {
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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/AppConfiguration.swift:131:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
129 | typealias Base = AppConfiguration
130 |
131 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 | .platform("linux"): PropertySet()
133 | .add(.dbusActivatable, \.dbusActivatable),
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistError.swift:10:8: warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
8 | case failedToDeserializePlistFileContents(Data, Error?)
9 | case failedToReadInfoPlistFile(Error)
10 | case invalidPlistValue(Any)
| `- warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | var errorDescription: String? {
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:20:22: warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
| |- warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'schema' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'schema' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | {
22 | "type": ["number", "string", "object", "array", "boolean"]
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ProjectConfiguration.swift:55:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
53 | typealias Base = ProjectConfiguration
54 |
55 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [:]
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 | var condition: OverlayCondition
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/V2/AppConfigurationV2.swift:85:23: warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
83 | case .array(let array):
84 | return .array(
85 | await array.asyncMap { value in
| `- warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
86 | return await updateVariableDelimiters(value)
87 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:18:6: note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
16 | /// }
17 | /// ```
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
| `- note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
[3932/3987] Compiling SwiftBundler PackageConfigurationV2.swift
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/SwiftBundler/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: AsyncParsableCommand {
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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/AppConfiguration.swift:131:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
129 | typealias Base = AppConfiguration
130 |
131 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 | .platform("linux"): PropertySet()
133 | .add(.dbusActivatable, \.dbusActivatable),
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistError.swift:10:8: warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
8 | case failedToDeserializePlistFileContents(Data, Error?)
9 | case failedToReadInfoPlistFile(Error)
10 | case invalidPlistValue(Any)
| `- warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | var errorDescription: String? {
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:20:22: warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
| |- warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'schema' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'schema' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | {
22 | "type": ["number", "string", "object", "array", "boolean"]
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ProjectConfiguration.swift:55:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
53 | typealias Base = ProjectConfiguration
54 |
55 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [:]
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 | var condition: OverlayCondition
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/V2/AppConfigurationV2.swift:85:23: warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
83 | case .array(let array):
84 | return .array(
85 | await array.asyncMap { value in
| `- warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
86 | return await updateVariableDelimiters(value)
87 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:18:6: note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
16 | /// }
17 | /// ```
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
| `- note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
[3933/3987] Compiling SwiftBundler Array.swift
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/SwiftBundler/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: AsyncParsableCommand {
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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/AppConfiguration.swift:131:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
129 | typealias Base = AppConfiguration
130 |
131 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 | .platform("linux"): PropertySet()
133 | .add(.dbusActivatable, \.dbusActivatable),
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistError.swift:10:8: warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
8 | case failedToDeserializePlistFileContents(Data, Error?)
9 | case failedToReadInfoPlistFile(Error)
10 | case invalidPlistValue(Any)
| `- warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | var errorDescription: String? {
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:20:22: warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
| |- warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'schema' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'schema' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | {
22 | "type": ["number", "string", "object", "array", "boolean"]
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ProjectConfiguration.swift:55:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
53 | typealias Base = ProjectConfiguration
54 |
55 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [:]
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 | var condition: OverlayCondition
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/V2/AppConfigurationV2.swift:85:23: warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
83 | case .array(let array):
84 | return .array(
85 | await array.asyncMap { value in
| `- warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
86 | return await updateVariableDelimiters(value)
87 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:18:6: note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
16 | /// }
17 | /// ```
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
| `- note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
[3934/3987] Compiling SwiftBundler CaseIterable.swift
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | commandName: "info",
9 | abstract: "Get info about a template."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "list",
8 | abstract: "List available templates."
/host/spi-builder-workspace/Sources/SwiftBundler/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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "update",
8 | abstract: "Update the default templates to the latest version."
/host/spi-builder-workspace/Sources/SwiftBundler/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: AsyncParsableCommand {
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: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | commandName: "templates",
8 | abstract: "Manage and list available package templates.",
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/AppConfiguration.swift:131:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
129 | typealias Base = AppConfiguration
130 |
131 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<AppConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 | .platform("linux"): PropertySet()
133 | .add(.dbusActivatable, \.dbusActivatable),
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistError.swift:10:8: warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
8 | case failedToDeserializePlistFileContents(Data, Error?)
9 | case failedToReadInfoPlistFile(Error)
10 | case invalidPlistValue(Any)
| `- warning: associated value 'invalidPlistValue' of 'Sendable'-conforming enum 'PlistError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
11 |
12 | var errorDescription: String? {
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:20:22: warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
| |- warning: static property 'schema' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'schema' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'schema' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | {
22 | "type": ["number", "string", "object", "array", "boolean"]
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ProjectConfiguration.swift:55:16: warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
53 | typealias Base = ProjectConfiguration
54 |
55 | static let exclusiveProperties: [OverlayCondition: PropertySet<Self>] = [:]
| |- warning: static property 'exclusiveProperties' is not concurrency-safe because non-'Sendable' type '[OverlayCondition : PropertySet<ProjectConfiguration.Overlay>]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'exclusiveProperties' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 | var condition: OverlayCondition
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/ConfigurationOverlay.swift:80:8: note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
78 | }
79 |
80 | struct PropertySet<Overlay: ConfigurationOverlay> {
| `- note: consider making generic struct 'PropertySet' conform to the 'Sendable' protocol
81 | var propertyPresenceCheckers: [(name: String, checker: (Overlay) -> Bool)] = []
82 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/V2/AppConfigurationV2.swift:85:23: warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
83 | case .array(let array):
84 | return .array(
85 | await array.asyncMap { value in
| `- warning: type 'PlistValue' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
86 | return await updateVariableDelimiters(value)
87 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PlistValue.swift:18:6: note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
16 | /// }
17 | /// ```
18 | enum PlistValue: Codable, Equatable, VariableEvaluatable {
| `- note: consider making enum 'PlistValue' conform to the 'Sendable' protocol
19 | /// The JSON schema for a plist value.
20 | private static var schema = """
[3935/3987] Wrapping AST for SwiftBundler for debugging
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.swift:36:22: warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| `- warning: static property 'lddLineParser' is not concurrency-safe because non-'Sendable' type 'Parsers.Map<Parse<Substring, ParserBuilder<Substring>.Take3<ParserBuilder<Substring>.Take2<PrefixThrough<Substring>, PrefixUpTo<Substring>>, Rest<Substring>, Substring, Substring>>, String>' may have shared mutable state; this is an error in the Swift 6 language mode
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/.build/checkouts/swift-parsing/Sources/Parsing/ParserPrinters/Map.swift:75:17: note: generic struct 'Map' does not conform to the 'Sendable' protocol
73 | /// You will not typically need to interact with this type directly. Instead you will usually use
74 | /// the ``Parser/map(_:)-4hsj5`` operation, which constructs this type.
75 | public struct Map<Upstream: Parser, NewOutput>: Parser {
| `- note: generic struct 'Map' does not conform to the 'Sendable' protocol
76 | /// The parser from which this parser receives output.
77 | public let upstream: Upstream
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/GenericLinuxBundler.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 | /// A bundler targeting generic Linux systems. Arranges executables, resources,
:
34 |
35 | /// A parser for the output of ldd. Parses a single line.
36 | private static let lddLineParser = Parse {
| |- note: add '@MainActor' to make static property 'lddLineParser' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | PrefixThrough(" => ")
38 | PrefixUpTo(" (")
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:21:12: warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
19 | enum Error: LocalizedError {
20 | case failedToSendPing(Swift.Error)
21 | case expectedPong(Packet)
| `- warning: associated value 'expectedPong' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Packet'; this is an error in the Swift 6 language mode
22 | case addrInUse
23 | case failedToCreateSocket(Swift.Error)
/host/spi-builder-workspace/Sources/HotReloadingProtocol/Packet.swift:3:13: note: enum 'Packet' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public enum Packet {
| `- note: enum 'Packet' does not conform to the 'Sendable' protocol
4 | static let pingId: UInt64 = 0
5 | static let pongId: UInt64 = 1
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/HotReloadingServer.swift:5:3: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
3 | import FileSystemWatcher
4 | import FlyingSocks
5 | import HotReloadingProtocol
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'HotReloadingProtocol'
6 |
7 | #if canImport(Darwin)
[3959/3989] Emitting module swift_bundler
[3960/3989] Compiling swift_bundler main.swift
[3961/3990] Wrapping AST for swift-bundler for debugging
[3962/3990] Write Objects.LinkFileList
[3963/3990] Linking swift-bundler
[3965/3990] Compiling SwiftBundler SwiftPackageManager.swift
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:226:16: warning: buildExecutableAsDylib not implemented for current platform
224 | #else
225 | fatalError("buildExecutableAsDylib not implemented for current platform")
226 | #warning("buildExecutableAsDylib not implemented for current platform")
| `- warning: buildExecutableAsDylib not implemented for current platform
227 | #endif
228 | }
/host/spi-builder-workspace/Sources/SwiftBundler/Bundler/Templater/TemplaterError.swift:27:8: warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
25 | case failedToUpdateIndentationStyle(directory: URL, Error)
26 | case failedToCheckSwiftVersion(SwiftPackageManagerError)
27 | case failedToCreateConfigurationFile(PackageConfiguration, URL, Error)
| `- warning: associated value 'failedToCreateConfigurationFile' of 'Sendable'-conforming enum 'TemplaterError' has non-sendable type 'PackageConfiguration'; this is an error in the Swift 6 language mode
28 | case missingVSCodeOverlay
29 |
/host/spi-builder-workspace/Sources/SwiftBundler/Configuration/PackageConfiguration.swift:5:8: note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
3 |
4 | /// The configuration for a package.
5 | struct PackageConfiguration: Codable {
| `- note: consider making struct 'PackageConfiguration' conform to the 'Sendable' protocol
6 | /// The current configuration format version.
7 | static let currentFormatVersion = 2
[3987/3991] Wrapping AST for SwiftBundler for debugging
[3989/3993] Compiling swift_bundler main.swift
[3990/3993] Emitting module swift_bundler
[3991/3994] Wrapping AST for swift-bundler for debugging
[3992/3994] Write Objects.LinkFileList
[3993/3994] Linking swift-bundler-tool
Build complete! (416.58s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.4",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log"
},
{
"identity" : "swift-parsing",
"requirement" : {
"range" : [
{
"lower_bound" : "0.13.0",
"upper_bound" : "0.14.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-parsing"
},
{
"identity" : "tomlkit",
"requirement" : {
"range" : [
{
"lower_bound" : "0.6.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/stackotter/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"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-docc-plugin"
},
{
"identity" : "xcodeproj",
"requirement" : {
"range" : [
{
"lower_bound" : "8.16.0",
"upper_bound" : "9.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/tuist/XcodeProj"
},
{
"identity" : "xcodegen",
"requirement" : {
"range" : [
{
"lower_bound" : "2.42.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/yonaskolb/XcodeGen"
},
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "600.0.0",
"upper_bound" : "601.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-syntax"
},
{
"identity" : "swift-overture",
"requirement" : {
"range" : [
{
"lower_bound" : "0.5.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-overture"
},
{
"identity" : "flyingfox",
"requirement" : {
"range" : [
{
"lower_bound" : "0.22.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swhitty/FlyingFox"
},
{
"identity" : "yams",
"requirement" : {
"range" : [
{
"lower_bound" : "5.1.2",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/jpsim/Yams"
},
{
"identity" : "pathkit",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/kylef/PathKit"
},
{
"identity" : "swift-certificates",
"requirement" : {
"range" : [
{
"lower_bound" : "1.7.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-certificates"
},
{
"identity" : "swift-asn1",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-asn1"
},
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "3.10.0",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto"
},
{
"identity" : "xmlcoder",
"requirement" : {
"range" : [
{
"lower_bound" : "0.17.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/CoreOffice/XMLCoder"
},
{
"identity" : "async-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/adam-fowler/async-collections.git"
},
{
"identity" : "asyncprocess",
"requirement" : {
"range" : [
{
"lower_bound" : "0.0.5",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/gregcotten/AsyncProcess"
},
{
"identity" : "swift-inotify",
"requirement" : {
"range" : [
{
"lower_bound" : "0.4.0",
"upper_bound" : "0.5.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/sersoft-gmbh/swift-inotify"
},
{
"identity" : "swift-system",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-system"
},
{
"identity" : "swift-async-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-async-algorithms"
}
],
"manifest_display_name" : "swift-bundler",
"name" : "swift-bundler",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
}
],
"products" : [
{
"name" : "swift-bundler",
"targets" : [
"swift-bundler"
],
"type" : {
"executable" : null
}
},
{
"name" : "SwiftBundler",
"targets" : [
"SwiftBundler"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftBundlerRuntime",
"targets" : [
"SwiftBundlerRuntime"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftBundlerBuilders",
"targets" : [
"SwiftBundlerBuilders"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftBundlerCommandPlugin",
"targets" : [
"SwiftBundlerCommandPlugin"
],
"type" : {
"plugin" : null
}
},
{
"name" : "schema-gen",
"targets" : [
"schema-gen"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "swift_bundler",
"module_type" : "SwiftTarget",
"name" : "swift-bundler",
"path" : "Sources/swift-bundler",
"product_memberships" : [
"swift-bundler",
"SwiftBundlerCommandPlugin"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"SwiftBundler"
],
"type" : "executable"
},
{
"c99name" : "schema_gen",
"module_type" : "SwiftTarget",
"name" : "schema-gen",
"path" : "Sources/schema-gen",
"product_dependencies" : [
"SwiftSyntax",
"SwiftParser"
],
"product_memberships" : [
"schema-gen"
],
"sources" : [
"Namespace.swift",
"PropertyDecl.swift",
"SchemaGenerator.swift",
"TypeDecl.swift"
],
"type" : "executable"
},
{
"c99name" : "SwiftBundlerTests",
"module_type" : "SwiftTarget",
"name" : "SwiftBundlerTests",
"path" : "Tests/SwiftBundlerTests",
"sources" : [
"SwiftBundlerTests.swift"
],
"target_dependencies" : [
"SwiftBundler"
],
"type" : "test"
},
{
"c99name" : "SwiftBundlerRuntime",
"module_type" : "SwiftTarget",
"name" : "SwiftBundlerRuntime",
"path" : "Sources/SwiftBundlerRuntime",
"product_dependencies" : [
"FlyingSocks"
],
"product_memberships" : [
"SwiftBundlerRuntime"
],
"sources" : [
"Dylib.swift",
"HotReloadingClient.swift"
],
"target_dependencies" : [
"HotReloadingProtocol"
],
"type" : "library"
},
{
"c99name" : "SwiftBundlerCommandPlugin",
"module_type" : "PluginTarget",
"name" : "SwiftBundlerCommandPlugin",
"path" : "Plugins/SwiftBundlerCommandPlugin",
"plugin_capability" : {
"intent" : {
"description" : "Run a package as an app.",
"type" : "custom",
"verb" : "bundler"
},
"permissions" : [
{
"network_scope" : {
"none" : {
}
},
"reason" : "Creating an app bundle requires writing to the package directory.",
"type" : "writeToPackageDirectory"
}
],
"type" : "command"
},
"product_memberships" : [
"SwiftBundlerCommandPlugin"
],
"sources" : [
"SwiftBundlerCommandPlugin.swift"
],
"target_dependencies" : [
"swift-bundler"
],
"type" : "plugin"
},
{
"c99name" : "SwiftBundlerBuilders",
"module_type" : "SwiftTarget",
"name" : "SwiftBundlerBuilders",
"path" : "Sources/SwiftBundlerBuilders",
"product_dependencies" : [
"ProcessSpawnSync"
],
"product_memberships" : [
"swift-bundler",
"SwiftBundler",
"SwiftBundlerBuilders",
"SwiftBundlerCommandPlugin"
],
"sources" : [
"Builder.swift",
"BuilderContextImpl.swift",
"BuilderResult.swift",
"Context.swift"
],
"type" : "library"
},
{
"c99name" : "SwiftBundler",
"module_type" : "SwiftTarget",
"name" : "SwiftBundler",
"path" : "Sources/SwiftBundler",
"product_dependencies" : [
"TOMLKit",
"Rainbow",
"Version",
"Yams",
"XMLCoder",
"Crypto",
"SwiftASN1",
"X509",
"ArgumentParser",
"Logging",
"Parsing",
"SwiftSyntax",
"SwiftSyntaxBuilder",
"Overture",
"AsyncCollections",
"ProcessSpawnSync",
"XcodeProj",
"PathKit",
"XcodeGenKit",
"ProjectSpec",
"FlyingSocks"
],
"product_memberships" : [
"swift-bundler",
"SwiftBundler",
"SwiftBundlerCommandPlugin"
],
"sources" : [
"Bundler/AppImageBundler.swift",
"Bundler/AppImageBundlerError.swift",
"Bundler/AppImageTool.swift",
"Bundler/AppImageToolError.swift",
"Bundler/ArchiveTool.swift",
"Bundler/ArchiveToolError.swift",
"Bundler/Bundler.swift",
"Bundler/CodeSigner/CodeSigner.swift",
"Bundler/CodeSigner/CodeSignerError.swift",
"Bundler/DarwinAppBundleStructure.swift",
"Bundler/DarwinBundler.swift",
"Bundler/DarwinBundlerError.swift",
"Bundler/DeviceManager.swift",
"Bundler/DynamicLibraryBundler.swift",
"Bundler/DynamicLibraryBundlerError.swift",
"Bundler/GenericBuildContext.swift",
"Bundler/GenericLinuxBundler.swift",
"Bundler/GenericLinuxBundlerError.swift",
"Bundler/GenericWindowsBundler.swift",
"Bundler/GenericWindowsBundlerError.swift",
"Bundler/HostPlatform.swift",
"Bundler/HotReloadingServer.swift",
"Bundler/IconSetCreator.swift",
"Bundler/IconSetCreatorError.swift",
"Bundler/MSIBundler.swift",
"Bundler/MachOEditor.swift",
"Bundler/MetadataInserter.swift",
"Bundler/MetadataInserterError.swift",
"Bundler/MetalCompiler.swift",
"Bundler/MetalCompilerError.swift",
"Bundler/NonMacAppleOS.swift",
"Bundler/NonMacApplePlatform.swift",
"Bundler/PatchElfTool.swift",
"Bundler/PatchElfToolError.swift",
"Bundler/PlistCreator.swift",
"Bundler/PlistCreatorError.swift",
"Bundler/ProjectBuilder.swift",
"Bundler/ProvisioningProfileManager/ProvisioningProfile.swift",
"Bundler/ProvisioningProfileManager/ProvisioningProfileManager.swift",
"Bundler/RPMBundler.swift",
"Bundler/RPMBundlerError.swift",
"Bundler/ResourceBundler.swift",
"Bundler/ResourceBundlerError.swift",
"Bundler/Runner/ConnectedDevice.swift",
"Bundler/Runner/Device.swift",
"Bundler/Runner/Runner.swift",
"Bundler/Runner/RunnerError.swift",
"Bundler/SimulatorManager/Simulator.swift",
"Bundler/SimulatorManager/SimulatorList.swift",
"Bundler/SimulatorManager/SimulatorManager.swift",
"Bundler/SimulatorManager/SimulatorManagerError.swift",
"Bundler/StoryboardCompiler.swift",
"Bundler/StoryboardCompilerError.swift",
"Bundler/StringCatalogCompiler.swift",
"Bundler/StringCatalogCompilerError.swift",
"Bundler/Stripper.swift",
"Bundler/SwiftPackageManager/AppleOS.swift",
"Bundler/SwiftPackageManager/ApplePlatform.swift",
"Bundler/SwiftPackageManager/AppleSDKPlatform.swift",
"Bundler/SwiftPackageManager/BuildArchitecture.swift",
"Bundler/SwiftPackageManager/BuildConfiguration.swift",
"Bundler/SwiftPackageManager/BuildPlan.swift",
"Bundler/SwiftPackageManager/LLVMTargetTriple.swift",
"Bundler/SwiftPackageManager/OS.swift",
"Bundler/SwiftPackageManager/PackageManifest.swift",
"Bundler/SwiftPackageManager/Platform.swift",
"Bundler/SwiftPackageManager/SwiftPackageManager.swift",
"Bundler/SwiftPackageManager/SwiftPackageManagerError.swift",
"Bundler/SwiftPackageManager/SwiftTargetInfo.swift",
"Bundler/System.swift",
"Bundler/SystemError.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/VariableEvaluatable.swift",
"Bundler/VariableEvaluator.swift",
"Bundler/VariableEvaluatorError.swift",
"Bundler/XcodeSupportGenerator.swift",
"Bundler/XcodeSupportGeneratorError.swift",
"Bundler/Xcodebuild/Xcodebuild.swift",
"Bundler/Xcodebuild/XcodebuildError.swift",
"Bundler/XcodeprojConverter/ExecutableTarget.swift",
"Bundler/XcodeprojConverter/LibraryTarget.swift",
"Bundler/XcodeprojConverter/TargetType.swift",
"Bundler/XcodeprojConverter/XcodeFile.swift",
"Bundler/XcodeprojConverter/XcodePackageDependency.swift",
"Bundler/XcodeprojConverter/XcodeTarget.swift",
"Bundler/XcodeprojConverter/XcodeprojConverter.swift",
"Bundler/XcodeprojConverter/XcodeprojConverterError.swift",
"Commands/BundleArguments.swift",
"Commands/BundleCommand.swift",
"Commands/BundlerChoice.swift",
"Commands/CLIError.swift",
"Commands/Command.swift",
"Commands/ConvertCommand.swift",
"Commands/CreateCommand.swift",
"Commands/Devices/DevicesCommand.swift",
"Commands/Devices/DevicesListCommand.swift",
"Commands/ErrorHandledCommand.swift",
"Commands/GenerateXcodeSupportCommand.swift",
"Commands/ListIdentitiesCommand.swift",
"Commands/MigrateCommand.swift",
"Commands/RunCommand.swift",
"Commands/Simulators/SimulatorsBootCommand.swift",
"Commands/Simulators/SimulatorsListCommand.swift",
"Commands/SimulatorsCommand.swift",
"Commands/Templates/TemplatesInfoCommand.swift",
"Commands/Templates/TemplatesListCommand.swift",
"Commands/Templates/TemplatesUpdateCommand.swift",
"Commands/TemplatesCommand.swift",
"Configuration/AppConfiguration.swift",
"Configuration/AppConfigurationError.swift",
"Configuration/ConfigurationFlattener.swift",
"Configuration/ConfigurationFlattenerError.swift",
"Configuration/ConfigurationOverlay.swift",
"Configuration/MetadataValue.swift",
"Configuration/MigrationMode.swift",
"Configuration/PackageConfiguration.swift",
"Configuration/PackageConfigurationError.swift",
"Configuration/PlistError.swift",
"Configuration/PlistValue.swift",
"Configuration/ProjectConfiguration.swift",
"Configuration/V1/PackageConfigurationV1.swift",
"Configuration/V2/AppConfigurationV2.swift",
"Configuration/V2/PackageConfigurationV2.swift",
"Extensions/Array.swift",
"Extensions/CaseIterable.swift",
"Extensions/Data.swift",
"Extensions/Dictionary.swift",
"Extensions/FileHandle+TextOutputStream.swift",
"Extensions/FileManager.swift",
"Extensions/JSONDecoder.swift",
"Extensions/JSONEncoder.swift",
"Extensions/Optional.swift",
"Extensions/PBXProductType.swift",
"Extensions/Process.swift",
"Extensions/ProcessError.swift",
"Extensions/ProcessInfo.swift",
"Extensions/PropertyListEncoder.swift",
"Extensions/Result.swift",
"Extensions/Sequence.swift",
"Extensions/String.swift",
"Extensions/TOMLDecoder.swift",
"Extensions/URL.swift",
"Extensions/Version.swift",
"SwiftBundler.swift",
"Utility/Box.swift",
"Utility/CodingPath.swift",
"Utility/CommandLine.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"
],
"target_dependencies" : [
"SwiftBundlerBuilders",
"HotReloadingProtocol",
"FileSystemWatcher"
],
"type" : "library"
},
{
"c99name" : "HotReloadingProtocol",
"module_type" : "SwiftTarget",
"name" : "HotReloadingProtocol",
"path" : "Sources/HotReloadingProtocol",
"product_dependencies" : [
"FlyingSocks"
],
"product_memberships" : [
"swift-bundler",
"SwiftBundler",
"SwiftBundlerRuntime",
"SwiftBundlerCommandPlugin"
],
"sources" : [
"Packet.swift",
"ReadableStream.swift",
"Socket+Stream.swift",
"WritableStream.swift"
],
"type" : "library"
},
{
"c99name" : "FileSystemWatcher",
"module_type" : "SwiftTarget",
"name" : "FileSystemWatcher",
"path" : "Sources/FileSystemWatcher",
"product_dependencies" : [
"Inotify",
"SystemPackage",
"AsyncAlgorithms"
],
"product_memberships" : [
"swift-bundler",
"SwiftBundler",
"SwiftBundlerCommandPlugin"
],
"sources" : [
"CoreServicesFileSystemWatcher.swift",
"DispatchQueue.swift",
"FileSystemWatcher.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.