Build Information
Failed to build webber, reference master (80b56d), with Swift 6.3 for Linux on 15 Apr 2026 05:08:53 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2277/2435] Compiling Vapor Client.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2278/2435] Compiling Vapor ClientRequest.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2279/2435] Compiling Vapor ClientResponse.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2280/2435] Compiling Vapor Request+Client.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2281/2435] Compiling Vapor BootCommand.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2282/2435] Compiling Vapor CommandContext+Application.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2283/2435] Compiling Vapor RoutesCommand.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2284/2435] Compiling Vapor ServeCommand.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2285/2435] Compiling Vapor AnyResponse+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2286/2435] Compiling Vapor AsyncBasicResponder.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:236:73: error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
234 |
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
| |- error: cannot convert value of type '[String : any AnyCommand]' to expected argument type '[String : any AnyAsyncCommand]'
| `- note: arguments to generic parameter 'Value' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Application.swift:237:80: error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
235 | let combinedCommands = AsyncCommands(
236 | commands: self.asyncCommands.commands.merging(self.commands.commands) { $1 },
237 | defaultCommand: self.asyncCommands.defaultCommand ?? self.commands.defaultCommand,
| |- error: cannot convert value of type '(any AnyCommand)?' to expected argument type '(any AnyAsyncCommand)?'
| `- note: arguments to generic parameter 'Wrapped' ('any AnyCommand' and 'any AnyAsyncCommand') are expected to be equal
238 | enableAutocomplete: self.asyncCommands.enableAutocomplete || self.commands.enableAutocomplete
239 | ).group()
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
[2287/2459] Compiling Vapor Running.swift
[2288/2459] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[2289/2459] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[2290/2459] Compiling Vapor DotEnvFile+load.swift
[2291/2459] Compiling Vapor Routes+caseInsenstive.swift
[2292/2459] Compiling Vapor Validatable+validate.swift
[2293/2459] Compiling Vapor Environment+Process.swift
[2294/2459] Compiling Vapor Environment+Secret.swift
[2295/2459] Compiling Vapor Environment.swift
[2296/2459] Compiling Vapor Abort.swift
[2297/2459] Compiling Vapor AbortError.swift
[2298/2459] Compiling Vapor DebuggableError.swift
[2299/2459] Compiling Vapor Demangler.swift
[2300/2459] Compiling Vapor ErrorSource.swift
[2301/2459] Compiling Vapor StackTrace.swift
[2302/2459] Compiling Vapor Exports.swift
[2303/2459] Compiling Vapor Application+HTTP.swift
[2304/2459] Compiling Vapor BasicResponder.swift
[2305/2459] Compiling Vapor BodyStream.swift
[2306/2459] Compiling Vapor Application+HTTP+Client.swift
[2307/2459] Compiling Vapor EventLoopHTTPClient.swift
[2308/2459] Compiling Vapor EndpointCache.swift
[2309/2459] Compiling Vapor HTTPMethod+String.swift
[2310/2459] Compiling Vapor HTTPStatus.swift
[2311/2483] Compiling Vapor HTTPServerUpgradeHandler.swift
[2312/2483] Compiling Vapor Logger+Report.swift
[2313/2483] Compiling Vapor LoggingSystem+Environment.swift
[2314/2483] Compiling Vapor Application+Middleware.swift
[2315/2483] Compiling Vapor CORSMiddleware.swift
[2316/2483] Compiling Vapor ErrorMiddleware.swift
[2317/2483] Compiling Vapor FileMiddleware.swift
[2318/2483] Compiling Vapor Middleware.swift
[2319/2483] Compiling Vapor MiddlewareConfiguration.swift
[2320/2483] Compiling Vapor ResponseCompressionMiddleware.swift
[2321/2483] Compiling Vapor RouteLoggingMiddleware.swift
[2322/2483] Compiling Vapor TracingMiddleware.swift
[2323/2483] Compiling Vapor File+Multipart.swift
[2324/2483] Compiling Vapor FormDataDecoder+Content.swift
[2325/2483] Compiling Vapor FormDataEncoder+Content.swift
[2326/2483] Compiling Vapor Application+Password.swift
[2327/2483] Compiling Vapor Application+Passwords.swift
[2328/2483] Compiling Vapor AsyncPasswordHasher.swift
[2329/2483] Compiling Vapor BcryptHasher.swift
[2330/2483] Compiling Vapor PasswordHasher.swift
[2331/2483] Compiling Vapor PlaintextHasher.swift
[2332/2483] Compiling Vapor Request+Password.swift
[2333/2483] Compiling Vapor Redirect.swift
[2334/2483] Compiling Vapor Request+Body.swift
[2335/2483] Compiling Vapor Request+BodyStream.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2336/2483] Compiling Vapor Request.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2337/2483] Compiling Vapor Application+Responder.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2338/2483] Compiling Vapor DefaultResponder.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2339/2483] Compiling Vapor Response+Body.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2340/2483] Compiling Vapor Response.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2341/2483] Compiling Vapor ResponseCodable.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2342/2483] Compiling Vapor Application+Routes.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2343/2483] Compiling Vapor Parameters+Require.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2344/2483] Compiling Vapor Request+WebSocket.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2345/2483] Compiling Vapor Route.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2346/2483] Compiling Vapor RouteCollection.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2347/2483] Compiling Vapor Routes.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2348/2483] Compiling Vapor RoutesBuilder+Group.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2349/2483] Compiling Vapor RoutesBuilder+Method.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2350/2483] Compiling Vapor RoutesBuilder+Middleware.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2351/2483] Compiling Vapor RoutesBuilder+WebSocket.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2352/2483] Compiling Vapor RoutesBuilder.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2353/2483] Compiling Vapor OTP.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2354/2483] Compiling Vapor Application+Servers.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2355/2483] Compiling Vapor Server.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2356/2483] Compiling Vapor App+Service.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2357/2483] Compiling Vapor Req+Service.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2358/2483] Compiling Vapor Service.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2359/2483] Compiling Vapor Validator.swift
[2360/2483] Compiling Vapor ValidatorResult.swift
[2361/2483] Compiling Vapor And.swift
[2362/2483] Compiling Vapor Case.swift
[2363/2483] Compiling Vapor CharacterSet.swift
[2364/2483] Compiling Vapor Count.swift
[2365/2483] Compiling Vapor Custom.swift
[2366/2483] Compiling Vapor Email.swift
[2367/2483] Compiling Vapor Empty.swift
[2368/2483] Compiling Vapor In.swift
[2369/2483] Compiling Vapor Nil.swift
[2370/2483] Compiling Vapor NilIgnoring.swift
[2371/2483] Compiling Vapor Not.swift
[2372/2483] Compiling Vapor Or.swift
[2373/2483] Compiling Vapor Pattern.swift
[2374/2483] Compiling Vapor Range.swift
[2375/2483] Compiling Vapor URL.swift
[2376/2483] Compiling Vapor Valid.swift
[2377/2483] Compiling Vapor Application+Views.swift
[2378/2483] Compiling Vapor PlaintextRenderer.swift
[2379/2483] Compiling Vapor Request+View.swift
[2380/2483] Compiling Vapor View.swift
[2381/2483] Compiling Vapor ViewRenderer.swift
[2382/2483] Compiling Vapor _Deprecations.swift
[2383/2483] Compiling Vapor Bytes+SecureCompare.swift
[2384/2483] Compiling Vapor Collection+Safe.swift
[2385/2483] Compiling Vapor DataProtocol+Copy.swift
[2386/2483] Compiling Vapor DecoderUnwrapper.swift
[2387/2483] Compiling Vapor DirectoryConfiguration.swift
[2388/2483] Compiling Vapor DotEnv.swift
[2389/2483] Compiling Vapor Extendable.swift
[2390/2483] Compiling Vapor File.swift
[2391/2483] Compiling Vapor FileIO.swift
[2392/2483] Compiling Vapor LifecycleHandler.swift
[2393/2483] Compiling Vapor OptionalType.swift
[2394/2483] Compiling Vapor RFC1123.swift
[2395/2483] Compiling Vapor SocketAddress+Hostname.swift
[2396/2483] Compiling Vapor Storage.swift
[2397/2483] Compiling Vapor String+IsIPAddress.swift
[2398/2483] Compiling Vapor Thread.swift
[2399/2483] Compiling Vapor URI.swift
[2400/2483] Compiling Vapor VaporSendableMetadataType.swift
[2401/2483] Compiling Vapor RangeResult.swift
[2402/2483] Compiling Vapor Validatable.swift
[2403/2483] Compiling Vapor Validation.swift
[2404/2483] Compiling Vapor ValidationKey.swift
[2405/2483] Compiling Vapor Validations.swift
[2406/2483] Compiling Vapor ValidationsError.swift
[2407/2483] Compiling Vapor Application+Sessions.swift
[2408/2483] Compiling Vapor MemorySessions.swift
[2409/2483] Compiling Vapor Request+Session.swift
[2410/2483] Compiling Vapor Session.swift
[2411/2483] Compiling Vapor SessionCache.swift
[2412/2483] Compiling Vapor SessionData.swift
[2413/2483] Compiling Vapor SessionDriver.swift
[2414/2483] Compiling Vapor SessionsConfiguration.swift
[2415/2483] Compiling Vapor SessionsMiddleware.swift
[2416/2483] Compiling Vapor URLEncodedFormData.swift
[2417/2483] Compiling Vapor URLEncodedFormDecoder.swift
[2418/2483] Compiling Vapor URLEncodedFormEncoder.swift
[2419/2483] Compiling Vapor URLEncodedFormError.swift
[2420/2483] Compiling Vapor URLEncodedFormParser.swift
[2421/2483] Compiling Vapor URLEncodedFormSerializer.swift
[2422/2483] Compiling Vapor URLQueryFragmentConvertible.swift
[2423/2483] Compiling Vapor AnyResponse.swift
[2424/2483] Compiling Vapor Array+Random.swift
[2425/2483] Compiling Vapor Base32.swift
[2426/2483] Compiling Vapor Base64.swift
[2427/2483] Compiling Vapor BaseN.swift
[2428/2483] Compiling Vapor BasicCodingKey.swift
[2429/2483] Compiling Vapor ByteCount.swift
[2430/2483] Compiling Vapor Bytes+Hex.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2431/2483] Compiling Vapor HTTPCookies.swift
[2432/2483] Compiling Vapor HTTPHeaderCacheControl.swift
[2433/2483] Compiling Vapor HTTPHeaderExpires.swift
[2434/2483] Compiling Vapor HTTPHeaderLastModified.swift
[2435/2483] Compiling Vapor HTTPHeaders+Cache.swift
[2436/2483] Compiling Vapor HTTPHeaders+Connection.swift
[2437/2483] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[2438/2483] Compiling Vapor HTTPHeaders+ContentRange.swift
[2439/2483] Compiling Vapor HTTPHeaders+Directive.swift
[2440/2483] Compiling Vapor HTTPHeaders+Forwarded.swift
[2441/2483] Compiling Vapor HTTPHeaders+Link.swift
[2442/2483] Compiling Vapor HTTPHeaders+Name.swift
[2443/2483] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[2444/2483] Compiling Vapor HTTPHeaders.swift
[2445/2483] Compiling Vapor HTTPMediaType.swift
[2446/2483] Compiling Vapor HTTPMediaTypePreference.swift
[2447/2483] Compiling Vapor Responder.swift
[2448/2483] Compiling Vapor Application+HTTP+Server.swift
[2449/2483] Compiling Vapor HTTPServer.swift
[2450/2483] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[2451/2483] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[2452/2483] Compiling Vapor HTTPServerHandler.swift
[2453/2483] Compiling Vapor HTTPServerRequestDecoder.swift
[2454/2483] Compiling Vapor HTTPServerResponseEncoder.swift
[2455/2483] Emitting module Vapor
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift:23:36: error: cannot find type 'ConsoleKitCommands' in scope
21 |
22 | // See `AsyncCommand`.
23 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
24 | context.console.success("Done.")
25 | }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift:28:36: error: cannot find type 'ConsoleKitCommands' in scope
26 | init() { }
27 |
28 | public func run(using context: ConsoleKitCommands.CommandContext, signature: Signature) async throws {
| `- error: cannot find type 'ConsoleKitCommands' in scope
29 | let routes = context.application.routes
30 | let includeDescription = !routes.all.filter { $0.userInfo["description"] != nil }.isEmpty
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:14:13: error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
12 | public struct Signature: CommandSignature, Sendable {
13 | @Option(name: "hostname", short: "H", help: "Set the hostname the server will run on.")
14 | var hostname: String?
| `- error: stored property '_hostname' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:17:13: error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
15 |
16 | @Option(name: "port", short: "p", help: "Set the port the server will run on.")
17 | var port: Int?
| `- error: stored property '_port' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<Int>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:20:13: error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
18 |
19 | @Option(name: "bind", short: "b", help: "Convenience for setting hostname and port together.")
20 | var bind: String?
| `- error: stored property '_bind' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift:23:13: error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
21 |
22 | @Option(name: "unix-socket", short: nil, help: "Set the path for the unix domain socket file the server will bind to.")
23 | var socketPath: String?
| `- error: stored property '_socketPath' of 'Sendable'-conforming struct 'Signature' has non-Sendable type 'Option<String>'
24 |
25 | public init() { }
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Option.swift:6:20: note: generic class 'Option' does not conform to the 'Sendable' protocol
4 | ///
5 | @propertyWrapper
6 | public final class Option<Value>: AnyOption
| `- note: generic class 'Option' does not conform to the 'Sendable' protocol
7 | where Value: LosslessStringConvertible
8 | {
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:57:24: error: cannot find type 'AnySendableHashable' in scope
55 | var requestType: Any.Type
56 | var responseType: Any.Type
57 | var userInfo: [AnySendableHashable: Sendable]
| `- error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Routing/Route.swift:60:27: error: cannot find type 'AnySendableHashable' in scope
58 | }
59 |
60 | public var userInfo: [AnySendableHashable: Sendable] {
| `- error: cannot find type 'AnySendableHashable' in scope
61 | get {
62 | self.sendableBox.withLockedValue { $0.userInfo }
[2456/2483] Compiling Vapor AsyncMiddleware.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2457/2483] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2458/2483] Compiling Vapor AsyncSessionDriver.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2459/2483] Compiling Vapor Authentication+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2460/2483] Compiling Vapor Cache+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2461/2483] Compiling Vapor Client+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2462/2483] Compiling Vapor RequestBody+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2463/2483] Compiling Vapor Responder+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2464/2483] Compiling Vapor ResponseCodable+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2465/2483] Compiling Vapor RoutesBuilder+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2466/2483] Compiling Vapor ViewRenderer+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2467/2483] Compiling Vapor WebSocket+Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2468/2483] Compiling Vapor ContainerGetPathExecutor.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2469/2483] Compiling Vapor Content.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2470/2483] Compiling Vapor ContentCoders.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2471/2483] Compiling Vapor ContentConfiguration.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2472/2483] Compiling Vapor ContentContainer.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2473/2483] Compiling Vapor JSONCoder+Custom.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2474/2483] Compiling Vapor JSONCoders+Content.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2475/2483] Compiling Vapor PlaintextDecoder.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2476/2483] Compiling Vapor PlaintextEncoder.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2477/2483] Compiling Vapor URLQueryCoders.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2478/2483] Compiling Vapor URLQueryContainer.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
[2479/2483] Compiling Vapor Core.swift
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:81:17: error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
79 | public struct Core: Sendable {
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
| `- error: stored property 'console' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'any Console'
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Console.swift:37:17: note: protocol 'Console' does not conform to the 'Sendable' protocol
35 | /// Get the `Console`'s current size using the `size` property.
36 | ///
37 | public protocol Console: AnyObject {
| `- note: protocol 'Console' does not conform to the 'Sendable' protocol
38 | /// The size of the `Console` window. Used for calculating lines printed and centering text.
39 | var size: (width: Int, height: Int) { get }
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:82:17: error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
80 | final class Storage: Sendable {
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
| `- error: stored property 'commands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'Commands'
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Commands.swift:2:15: note: struct 'Commands' does not conform to the 'Sendable' protocol
1 | /// Represents a top-level group of configured commands. This is usually created by calling `resolve(for:)` on `Commands`.
2 | public struct Commands {
| `- note: struct 'Commands' does not conform to the 'Sendable' protocol
3 | /// Top-level available commands, stored by unique name.
4 | public var commands: [String: AnyCommand]
/host/spi-builder-workspace/.build/checkouts/vapor/Sources/Vapor/Core/Core.swift:83:17: error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
81 | let console: NIOLockedValueBox<Console>
82 | let commands: NIOLockedValueBox<Commands>
83 | let asyncCommands: NIOLockedValueBox<AsyncCommands>
| `- error: stored property 'asyncCommands' of 'Sendable'-conforming class 'Storage' contains non-Sendable type 'AsyncCommands'
84 | let threadPool: NIOLockedValueBox<NIOThreadPool>
85 | let allocator: ByteBufferAllocator
/host/spi-builder-workspace/.build/checkouts/console-kit/Sources/ConsoleKit/Command/Async/AsyncCommands.swift:4:15: note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
2 | #if swift(>=5.5) && canImport(_Concurrency)
3 | @available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
4 | public struct AsyncCommands {
| `- note: struct 'AsyncCommands' does not conform to the 'Sendable' protocol
5 | /// Top-level available commands, stored by unique name.
6 | public var commands: [String: AnyAsyncCommand]
BUILD FAILURE 6.3 linux