Build Information
Successful build of Pioneer, reference main (6f3fff
), with Swift 6.1 for macOS (SPM) on 16 Jul 2025 03:12:33 UTC.
Swift 6 data race errors: 6
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
72 |
73 | /// GraphQL over HTTP spec's accept media type
74 | public static var mediaType = "application/graphql-response+json"
| |- warning: static property 'mediaType' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'mediaType' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'mediaType' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 |
76 | /// GraphQL over HTTP spec's content type
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Http/HTTPGraphQL.swift:77:23: warning: static property 'contentType' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
75 |
76 | /// GraphQL over HTTP spec's content type
77 | public static var contentType = "\(mediaType); charset=utf-8, \(mediaType)"
| |- warning: static property 'contentType' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'contentType' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | }
79 |
[2011/2022] Compiling Pioneer HttpStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncPubSub.swift:32:44: warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
30 | internal func asyncStream(for key: String) async -> AsyncThrowingStream<Sendable, Error> {
31 | let emitter = await subscribe(for: key)
32 | let downstream = await emitter.downstream()
| `- warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
33 | return downstream.stream
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:83:15: note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
81 |
82 | /// An async stream with an id
83 | public struct Downstream<Element: Sendable>: AsyncSequence {
| `- note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
84 | /// The id of the stream
85 | public let id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:72:23: warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
70 | self.keepAlive = keepAlive
71 | self.timeout = timeout
72 | self.probe = .init(
| |- warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'schema' to actor-isolated callee risks causing data races between actor-isolated and task-isolated uses
73 | schema: schema,
74 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:274:21: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
272 | ) async -> WebSocketClient {
273 | let client = WebSocketClient(id: cid, io: io, payload: payload, ev: ev, context: context)
274 | await probe.connect(with: client)
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'client' to actor-isolated instance method 'connect(with:)' risks causing data races between actor-isolated and task-isolated uses
275 | websocketProtocol.initialize(io)
276 | timeout?.cancel()
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:28:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
26 | /// Performance and efficiency has been tested to mostly not affected but do keep in mind to try to find a better solution.
27 | let stream = AsyncThrowingStream(To.self) { continuation in
28 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
29 | do {
30 | for try await each in self.sequence {
31 | let res = try closure(each)
| `- note: closure captures 'closure' which is accessible to code in the current task
32 | continuation.yield(res)
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:32:38: warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
30 | for try await each in self.sequence {
31 | let res = try closure(each)
32 | continuation.yield(res)
| |- warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'res' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 | }
34 | continuation.finish()
[2012/2022] Compiling Pioneer IDE.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncPubSub.swift:32:44: warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
30 | internal func asyncStream(for key: String) async -> AsyncThrowingStream<Sendable, Error> {
31 | let emitter = await subscribe(for: key)
32 | let downstream = await emitter.downstream()
| `- warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
33 | return downstream.stream
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:83:15: note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
81 |
82 | /// An async stream with an id
83 | public struct Downstream<Element: Sendable>: AsyncSequence {
| `- note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
84 | /// The id of the stream
85 | public let id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:72:23: warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
70 | self.keepAlive = keepAlive
71 | self.timeout = timeout
72 | self.probe = .init(
| |- warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'schema' to actor-isolated callee risks causing data races between actor-isolated and task-isolated uses
73 | schema: schema,
74 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:274:21: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
272 | ) async -> WebSocketClient {
273 | let client = WebSocketClient(id: cid, io: io, payload: payload, ev: ev, context: context)
274 | await probe.connect(with: client)
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'client' to actor-isolated instance method 'connect(with:)' risks causing data races between actor-isolated and task-isolated uses
275 | websocketProtocol.initialize(io)
276 | timeout?.cancel()
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:28:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
26 | /// Performance and efficiency has been tested to mostly not affected but do keep in mind to try to find a better solution.
27 | let stream = AsyncThrowingStream(To.self) { continuation in
28 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
29 | do {
30 | for try await each in self.sequence {
31 | let res = try closure(each)
| `- note: closure captures 'closure' which is accessible to code in the current task
32 | continuation.yield(res)
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:32:38: warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
30 | for try await each in self.sequence {
31 | let res = try closure(each)
32 | continuation.yield(res)
| |- warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'res' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 | }
34 | continuation.finish()
[2013/2022] Compiling Pioneer Pioneer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncPubSub.swift:32:44: warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
30 | internal func asyncStream(for key: String) async -> AsyncThrowingStream<Sendable, Error> {
31 | let emitter = await subscribe(for: key)
32 | let downstream = await emitter.downstream()
| `- warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
33 | return downstream.stream
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:83:15: note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
81 |
82 | /// An async stream with an id
83 | public struct Downstream<Element: Sendable>: AsyncSequence {
| `- note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
84 | /// The id of the stream
85 | public let id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:72:23: warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
70 | self.keepAlive = keepAlive
71 | self.timeout = timeout
72 | self.probe = .init(
| |- warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'schema' to actor-isolated callee risks causing data races between actor-isolated and task-isolated uses
73 | schema: schema,
74 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:274:21: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
272 | ) async -> WebSocketClient {
273 | let client = WebSocketClient(id: cid, io: io, payload: payload, ev: ev, context: context)
274 | await probe.connect(with: client)
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'client' to actor-isolated instance method 'connect(with:)' risks causing data races between actor-isolated and task-isolated uses
275 | websocketProtocol.initialize(io)
276 | timeout?.cancel()
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:28:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
26 | /// Performance and efficiency has been tested to mostly not affected but do keep in mind to try to find a better solution.
27 | let stream = AsyncThrowingStream(To.self) { continuation in
28 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
29 | do {
30 | for try await each in self.sequence {
31 | let res = try closure(each)
| `- note: closure captures 'closure' which is accessible to code in the current task
32 | continuation.yield(res)
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:32:38: warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
30 | for try await each in self.sequence {
31 | let res = try closure(each)
32 | continuation.yield(res)
| |- warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'res' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 | }
34 | continuation.finish()
[2014/2022] Compiling Pioneer AsyncEventStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncPubSub.swift:32:44: warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
30 | internal func asyncStream(for key: String) async -> AsyncThrowingStream<Sendable, Error> {
31 | let emitter = await subscribe(for: key)
32 | let downstream = await emitter.downstream()
| `- warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
33 | return downstream.stream
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:83:15: note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
81 |
82 | /// An async stream with an id
83 | public struct Downstream<Element: Sendable>: AsyncSequence {
| `- note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
84 | /// The id of the stream
85 | public let id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:72:23: warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
70 | self.keepAlive = keepAlive
71 | self.timeout = timeout
72 | self.probe = .init(
| |- warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'schema' to actor-isolated callee risks causing data races between actor-isolated and task-isolated uses
73 | schema: schema,
74 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:274:21: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
272 | ) async -> WebSocketClient {
273 | let client = WebSocketClient(id: cid, io: io, payload: payload, ev: ev, context: context)
274 | await probe.connect(with: client)
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'client' to actor-isolated instance method 'connect(with:)' risks causing data races between actor-isolated and task-isolated uses
275 | websocketProtocol.initialize(io)
276 | timeout?.cancel()
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:28:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
26 | /// Performance and efficiency has been tested to mostly not affected but do keep in mind to try to find a better solution.
27 | let stream = AsyncThrowingStream(To.self) { continuation in
28 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
29 | do {
30 | for try await each in self.sequence {
31 | let res = try closure(each)
| `- note: closure captures 'closure' which is accessible to code in the current task
32 | continuation.yield(res)
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:32:38: warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
30 | for try await each in self.sequence {
31 | let res = try closure(each)
32 | continuation.yield(res)
| |- warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'res' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 | }
34 | continuation.finish()
[2015/2022] Compiling Pioneer AsyncPubSub.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncPubSub.swift:32:44: warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
30 | internal func asyncStream(for key: String) async -> AsyncThrowingStream<Sendable, Error> {
31 | let emitter = await subscribe(for: key)
32 | let downstream = await emitter.downstream()
| `- warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
33 | return downstream.stream
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:83:15: note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
81 |
82 | /// An async stream with an id
83 | public struct Downstream<Element: Sendable>: AsyncSequence {
| `- note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
84 | /// The id of the stream
85 | public let id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:72:23: warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
70 | self.keepAlive = keepAlive
71 | self.timeout = timeout
72 | self.probe = .init(
| |- warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'schema' to actor-isolated callee risks causing data races between actor-isolated and task-isolated uses
73 | schema: schema,
74 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:274:21: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
272 | ) async -> WebSocketClient {
273 | let client = WebSocketClient(id: cid, io: io, payload: payload, ev: ev, context: context)
274 | await probe.connect(with: client)
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'client' to actor-isolated instance method 'connect(with:)' risks causing data races between actor-isolated and task-isolated uses
275 | websocketProtocol.initialize(io)
276 | timeout?.cancel()
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:28:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
26 | /// Performance and efficiency has been tested to mostly not affected but do keep in mind to try to find a better solution.
27 | let stream = AsyncThrowingStream(To.self) { continuation in
28 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
29 | do {
30 | for try await each in self.sequence {
31 | let res = try closure(each)
| `- note: closure captures 'closure' which is accessible to code in the current task
32 | continuation.yield(res)
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:32:38: warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
30 | for try await each in self.sequence {
31 | let res = try closure(each)
32 | continuation.yield(res)
| |- warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'res' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 | }
34 | continuation.finish()
[2016/2022] Compiling Pioneer Broadcast.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncPubSub.swift:32:44: warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
30 | internal func asyncStream(for key: String) async -> AsyncThrowingStream<Sendable, Error> {
31 | let emitter = await subscribe(for: key)
32 | let downstream = await emitter.downstream()
| `- warning: non-sendable result type 'Downstream<any Sendable>' cannot be sent from actor-isolated context in call to instance method 'downstream()'; this is an error in the Swift 6 language mode
33 | return downstream.stream
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:83:15: note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
81 |
82 | /// An async stream with an id
83 | public struct Downstream<Element: Sendable>: AsyncSequence {
| `- note: consider making generic struct 'Downstream' conform to the 'Sendable' protocol
84 | /// The id of the stream
85 | public let id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:72:23: warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
70 | self.keepAlive = keepAlive
71 | self.timeout = timeout
72 | self.probe = .init(
| |- warning: sending 'schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'schema' to actor-isolated callee risks causing data races between actor-isolated and task-isolated uses
73 | schema: schema,
74 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:274:21: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
272 | ) async -> WebSocketClient {
273 | let client = WebSocketClient(id: cid, io: io, payload: payload, ev: ev, context: context)
274 | await probe.connect(with: client)
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'client' to actor-isolated instance method 'connect(with:)' risks causing data races between actor-isolated and task-isolated uses
275 | websocketProtocol.initialize(io)
276 | timeout?.cancel()
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:28:29: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
26 | /// Performance and efficiency has been tested to mostly not affected but do keep in mind to try to find a better solution.
27 | let stream = AsyncThrowingStream(To.self) { continuation in
28 | let task = Task {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
29 | do {
30 | for try await each in self.sequence {
31 | let res = try closure(each)
| `- note: closure captures 'closure' which is accessible to code in the current task
32 | continuation.yield(res)
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:32:38: warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
30 | for try await each in self.sequence {
31 | let res = try closure(each)
32 | continuation.yield(res)
| |- warning: sending 'res' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'res' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
33 | }
34 | continuation.finish()
[2017/2022] Compiling Pioneer Drone.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| `- warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
45 |
46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
47 | public struct SubscriptionResult {
| `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
48 | public let stream: SubscriptionEventStream?
49 | public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import class Graphiti.Schema
9 | import GraphQL
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import protocol NIO.EventLoopGroup
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
76 | await sink.outgoing(
77 | with: oid,
78 | to: client,
| `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
79 | given: .from(type: self.proto.next, id: oid, value)
80 | )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 | /// Full GraphQL over WebSocket Client
21 | struct WebSocketClient: Identifiable {
| `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 | /// The unique key for this client
23 | public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 | private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 | do {
127 | let ctx = try await client.context(gql)
| |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 | return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 | } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
105 | Task { [unowned self] in
106 | let ctx = try await client.context(gql)
107 | return try await executeGraphQL(
| |- warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending actor-isolated value of non-Sendable type 'GraphQLSchema' to nonisolated callee risks causing races in between actor-isolated and nonisolated uses
108 | schema: self.schema,
109 | request: gql.query,
[2018/2022] Compiling Pioneer Probe.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| `- warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
45 |
46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
47 | public struct SubscriptionResult {
| `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
48 | public let stream: SubscriptionEventStream?
49 | public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import class Graphiti.Schema
9 | import GraphQL
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import protocol NIO.EventLoopGroup
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
76 | await sink.outgoing(
77 | with: oid,
78 | to: client,
| `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
79 | given: .from(type: self.proto.next, id: oid, value)
80 | )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 | /// Full GraphQL over WebSocket Client
21 | struct WebSocketClient: Identifiable {
| `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 | /// The unique key for this client
23 | public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 | private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 | do {
127 | let ctx = try await client.context(gql)
| |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 | return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 | } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
105 | Task { [unowned self] in
106 | let ctx = try await client.context(gql)
107 | return try await executeGraphQL(
| |- warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending actor-isolated value of non-Sendable type 'GraphQLSchema' to nonisolated callee risks causing races in between actor-isolated and nonisolated uses
108 | schema: self.schema,
109 | request: gql.query,
[2019/2022] Compiling Pioneer GraphQLWs.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| `- warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
45 |
46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
47 | public struct SubscriptionResult {
| `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
48 | public let stream: SubscriptionEventStream?
49 | public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import class Graphiti.Schema
9 | import GraphQL
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import protocol NIO.EventLoopGroup
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
76 | await sink.outgoing(
77 | with: oid,
78 | to: client,
| `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
79 | given: .from(type: self.proto.next, id: oid, value)
80 | )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 | /// Full GraphQL over WebSocket Client
21 | struct WebSocketClient: Identifiable {
| `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 | /// The unique key for this client
23 | public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 | private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 | do {
127 | let ctx = try await client.context(gql)
| |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 | return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 | } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
105 | Task { [unowned self] in
106 | let ctx = try await client.context(gql)
107 | return try await executeGraphQL(
| |- warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending actor-isolated value of non-Sendable type 'GraphQLSchema' to nonisolated callee risks causing races in between actor-isolated and nonisolated uses
108 | schema: self.schema,
109 | request: gql.query,
[2020/2022] Compiling Pioneer SubProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| `- warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
45 |
46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
47 | public struct SubscriptionResult {
| `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
48 | public let stream: SubscriptionEventStream?
49 | public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import class Graphiti.Schema
9 | import GraphQL
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import protocol NIO.EventLoopGroup
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
76 | await sink.outgoing(
77 | with: oid,
78 | to: client,
| `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
79 | given: .from(type: self.proto.next, id: oid, value)
80 | )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 | /// Full GraphQL over WebSocket Client
21 | struct WebSocketClient: Identifiable {
| `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 | /// The unique key for this client
23 | public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 | private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 | do {
127 | let ctx = try await client.context(gql)
| |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 | return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 | } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
105 | Task { [unowned self] in
106 | let ctx = try await client.context(gql)
107 | return try await executeGraphQL(
| |- warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending actor-isolated value of non-Sendable type 'GraphQLSchema' to nonisolated callee risks causing races in between actor-isolated and nonisolated uses
108 | schema: self.schema,
109 | request: gql.query,
[2021/2022] Compiling Pioneer SubscriptionsTransportWs.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| `- warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
45 |
46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
47 | public struct SubscriptionResult {
| `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
48 | public let stream: SubscriptionEventStream?
49 | public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import class Graphiti.Schema
9 | import GraphQL
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import protocol NIO.EventLoopGroup
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
76 | await sink.outgoing(
77 | with: oid,
78 | to: client,
| `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
79 | given: .from(type: self.proto.next, id: oid, value)
80 | )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 | /// Full GraphQL over WebSocket Client
21 | struct WebSocketClient: Identifiable {
| `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 | /// The unique key for this client
23 | public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 | private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 | do {
127 | let ctx = try await client.context(gql)
| |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 | return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 | } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
105 | Task { [unowned self] in
106 | let ctx = try await client.context(gql)
107 | return try await executeGraphQL(
| |- warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending actor-isolated value of non-Sendable type 'GraphQLSchema' to nonisolated callee risks causing races in between actor-isolated and nonisolated uses
108 | schema: self.schema,
109 | request: gql.query,
[2022/2022] Compiling Pioneer WebsocketProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| `- warning: non-sendable result type 'SubscriptionResult' cannot be sent from nonisolated context in call to global function 'subscribeGraphQL(schema:request:resolver:context:eventLoopGroup:variables:operationName:)'; this is an error in the Swift 6 language mode
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:47:15: note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
45 |
46 | /// SubscriptionResult wraps the observable and error data returned by the subscribe request.
47 | public struct SubscriptionResult {
| `- note: struct 'SubscriptionResult' does not conform to the 'Sendable' protocol
48 | public let stream: SubscriptionEventStream?
49 | public let errors: [GraphQLError]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import class Graphiti.Schema
9 | import GraphQL
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import protocol NIO.EventLoopGroup
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:78:29: warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
76 | await sink.outgoing(
77 | with: oid,
78 | to: client,
| `- warning: capture of 'client' with non-sendable type 'Pioneer<Resolver, Context>.WebSocketClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
79 | given: .from(type: self.proto.next, id: oid, value)
80 | )
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Common/WebSocketClient.swift:21:12: note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
19 |
20 | /// Full GraphQL over WebSocket Client
21 | struct WebSocketClient: Identifiable {
| `- note: consider making struct 'WebSocketClient' conform to the 'Sendable' protocol
22 | /// The unique key for this client
23 | public var id: UUID
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:139:23: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
137 | /// Execute long lived GraphQL Operation as a subscription
138 | private func subscribeOperation(for gql: GraphQLRequest, with ctx: Context, using eventLoop: EventLoopGroup) async throws -> SubscriptionResult {
139 | try await subscribeGraphQL(
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
140 | schema: schema,
141 | request: gql.query,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Drone/Drone.swift:127:44: warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
125 | private func subscription(gql: GraphQLRequest) async -> SubscriptionResult {
126 | do {
127 | let ctx = try await client.context(gql)
| |- warning: sending 'self.client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.client' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
128 | return try await subscribeOperation(for: gql, with: ctx, using: client.ev)
129 | } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'client' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'client' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:56:18: warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
54 |
55 | let drone = drones.getOrElse(cid) {
56 | .init(client,
| |- warning: sending 'self.schema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending 'self'-isolated 'self.schema' to actor-isolated callee risks causing data races between actor-isolated and 'self'-isolated uses
57 | schema: schema,
58 | resolver: resolver,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:107:34: warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
105 | Task { [unowned self] in
106 | let ctx = try await client.context(gql)
107 | return try await executeGraphQL(
| |- warning: sending value of non-Sendable type 'GraphQLSchema' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending actor-isolated value of non-Sendable type 'GraphQLSchema' to nonisolated callee risks causing races in between actor-isolated and nonisolated uses
108 | schema: self.schema,
109 | request: gql.query,
Build complete! (49.10s)
Build complete.
{
"dependencies" : [
{
"identity" : "graphql",
"requirement" : {
"range" : [
{
"lower_bound" : "2.10.3",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/GraphQLSwift/GraphQL.git"
},
{
"identity" : "graphiti",
"requirement" : {
"range" : [
{
"lower_bound" : "1.15.1",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/GraphQLSwift/Graphiti.git"
},
{
"identity" : "vapor",
"requirement" : {
"range" : [
{
"lower_bound" : "4.106.3",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/vapor/vapor.git"
}
],
"manifest_display_name" : "Pioneer",
"name" : "Pioneer",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "Pioneer",
"targets" : [
"Pioneer"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "PioneerTests",
"module_type" : "SwiftTarget",
"name" : "PioneerTests",
"path" : "Tests/PioneerTests",
"product_dependencies" : [
"XCTVapor"
],
"sources" : [
"ActorTests/DroneTests.swift",
"ActorTests/ProbeTests.swift",
"DataStructureTests/AsyncPubSubTests.swift",
"DataStructureTests/BuiltInTypesTests.swift",
"DataStructureTests/WebSocketProtocolTests.swift",
"GraphQLTests/GraphQLHTTPSpecTests.swift",
"GraphQLTests/GraphQLRequestTests.swift",
"GraphQLTests/GraphitiAsyncEventStreamTests.swift",
"GraphQLTests/PioneerStatelessTests.swift",
"OtherTests/ExtensionsTests.swift",
"OtherTests/SecurityTest.swift",
"Utils/TestConsumer.swift",
"VaporTests/ContextTests.swift",
"VaporTests/HTTPQueryTests.swift",
"VaporTests/HTTPStrategyTests.swift",
"VaporTests/MiddlewareTests.swift"
],
"target_dependencies" : [
"Pioneer"
],
"type" : "test"
},
{
"c99name" : "Pioneer",
"module_type" : "SwiftTarget",
"name" : "Pioneer",
"path" : "Sources/Pioneer",
"product_dependencies" : [
"GraphQL",
"Graphiti",
"Vapor"
],
"product_memberships" : [
"Pioneer"
],
"sources" : [
"Extensions/Collections/Dictionary+SafeOperation.swift",
"Extensions/Collections/OrderedDictionary+Dictionary.swift",
"Extensions/Expression.swift",
"Extensions/Futures/Actor+Task.swift",
"Extensions/Futures/Task+Starvation.swift",
"Extensions/Int/UInt64+Nanoseconds.swift",
"Extensions/Map/Map+Decoder.swift",
"Extensions/Pioneer+Graphiti.swift",
"Extensions/Results/Data+Json.swift",
"GraphQL/BuiltinTypes.swift",
"GraphQL/Extensions/Field+AsyncAwait.swift",
"GraphQL/Extensions/Field+Middleware.swift",
"GraphQL/Extensions/GraphQL+Execution.swift",
"GraphQL/Extensions/GraphQLError+Error.swift",
"GraphQL/GraphQLMessage.swift",
"GraphQL/GraphQLMiddleware.swift",
"GraphQL/GraphQLRequest.swift",
"GraphQL/GraphQLViolation.swift",
"Http/CSRFProtections.swift",
"Http/HTTPGraphQL.swift",
"Http/HttpStrategy.swift",
"Http/IDE.swift",
"Pioneer.swift",
"Streaming/AsyncEventStream.swift",
"Streaming/AsyncPubSub.swift",
"Streaming/Broadcast.swift",
"Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift",
"Streaming/Extension/AsyncSequence+EventStream.swift",
"Streaming/Extension/AsyncStream+Statics.swift",
"Streaming/Extension/EventStream+Static.swift",
"Streaming/PubSub.swift",
"Utils/Interval.swift",
"Utils/Timeout.swift",
"Utils/Validation.swift",
"Vapor/Extensions/CORS/CORSMIddleware+BananaCakePop.swift",
"Vapor/Extensions/CORS/CORSMiddleware+ApolloSandbox.swift",
"Vapor/Extensions/EnvironmentVariables/EnvironmentVariables.swift",
"Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift",
"Vapor/Extensions/Request/Request+GraphQLRequest.swift",
"Vapor/Extensions/Request/Request+PathComponent.swift",
"Vapor/Extensions/Request/Request+WebSocket.swift",
"Vapor/Extensions/Request/Request+WebsocketContext.swift",
"Vapor/Extensions/Response/GraphQLResult+Content.swift",
"Vapor/Extensions/Response/Response+GraphQLError.swift",
"Vapor/Extensions/WebSocket/WebSocket+WebSocketable.swift",
"Vapor/Http/Pioneer+Http.swift",
"Vapor/Http/Pioneer+IDE.swift",
"Vapor/Pioneer+Standalone.swift",
"Vapor/Pioneer+Vapor+Void.swift",
"Vapor/Pioneer+Vapor.swift",
"Vapor/WebSocket/Pioneer+WebSocket.swift",
"WebSocket/Common/Intent.swift",
"WebSocket/Common/Payload.swift",
"WebSocket/Common/Pioneer+WebSocketable.swift",
"WebSocket/Common/WebSocketClient.swift",
"WebSocket/Common/WebSocketable.swift",
"WebSocket/Probe/Drone/Drone.swift",
"WebSocket/Probe/Probe.swift",
"WebSocket/Protocol/GraphQLWs.swift",
"WebSocket/Protocol/SubProtocol.swift",
"WebSocket/Protocol/SubscriptionsTransportWs.swift",
"WebSocket/Protocol/WebsocketProtocol.swift"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/d-exclaimation/pioneer/main
Repository: d-exclaimation/pioneer
Swift version used: 6.1
Target: Pioneer
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'Pioneer'...
Finished extracting symbol information for 'Pioneer'. (25.83s)
Building documentation for 'Pioneer'...
warning: External name 'to' used to document parameter
--> Sources/Pioneer/Extensions/Futures/Actor+Task.swift:13:13-13:15
11 | /// - Parameters:
12 | /// - future: EventLoopFuture value being awaited
13 + /// - to: Transforming callback to for the result from the Future.
| ╰─suggestion: Replace 'to' with 'callback'
14 | func pipeToSelf<U>(future: Task<U, Error>, to callback: @Sendable @escaping (Self, Result<U, Error>) async -> Void) {
15 | Task {
warning: External name 'to' used to document parameter
--> Sources/Pioneer/Extensions/Futures/Actor+Task.swift:13:13-13:15
11 | /// - Parameters:
12 | /// - future: EventLoopFuture value being awaited
13 + /// - to: Transforming callback to for the result from the Future.
| ╰─suggestion: Replace 'to' with 'callback'
14 | func pipeToSelf<U>(future: Task<U, Error>, to callback: @Sendable @escaping (Self, Result<U, Error>) async -> Void) {
15 | Task {
warning: External name 'to' used to document parameter
--> Sources/Pioneer/Extensions/Futures/Actor+Task.swift:13:13-13:15
11 | /// - Parameters:
12 | /// - future: EventLoopFuture value being awaited
13 + /// - to: Transforming callback to for the result from the Future.
| ╰─suggestion: Replace 'to' with 'callback'
14 | func pipeToSelf<U>(future: Task<U, Error>, to callback: @Sendable @escaping (Self, Result<U, Error>) async -> Void) {
15 | Task {
warning: 'yield()' doesn't exist at '/Pioneer/_Concurrency/Task'
--> Sources/Pioneer/Extensions/Futures/Task+Starvation.swift:13:43-13:50
11 | /// A task can voluntarily suspend itself in the middle of a long-running operation that doesn’t contain any suspension points, to let other tasks run for a while before execution returns to this task.
12 | ///
13 + /// This is a sister method to ``Task/yield()``, which is a suspension point that allows other tasks to run that forces the suspension of the current task and ignores the current task’s priority.
14 | static func postpone() async throws {
15 | try await Task.sleep(nanoseconds: 0)
warning: Parameter 'contextBuilder' not found in initializer declaration
--> Sources/Pioneer/Extensions/Pioneer+Graphiti.swift:14:11-14:57
12 | /// - schema: GraphQL schema used to execute operations
13 | /// - resolver: Resolver used by the GraphQL schema
14 + /// - contextBuilder: Context builder from request
| ╰─suggestion: Remove 'contextBuilder' parameter documentation
15 | /// - httpStrategy: HTTP strategy
16 | /// - websocketProtocol: Websocket sub-protocol
warning: Parameter 'contextBuilder' not found in initializer declaration
--> Sources/Pioneer/Extensions/Pioneer+Graphiti.swift:49:11-49:57
47 | /// - schema: GraphQL schema used to execute operations
48 | /// - resolver: Resolver used by the GraphQL schema
49 + /// - contextBuilder: Context builder from request
| ╰─suggestion: Remove 'contextBuilder' parameter documentation
50 | /// - httpStrategy: HTTP strategy
51 | /// - websocketContextBuilder: Context builder for the websocket
warning: Parameter 'websocketContextBuilder' not found in initializer declaration
--> Sources/Pioneer/Extensions/Pioneer+Graphiti.swift:51:13-51:36
49 | /// - contextBuilder: Context builder from request
50 | /// - httpStrategy: HTTP strategy
51 + /// - websocketContextBuilder: Context builder for the websocket
| ╰─suggestion: Replace 'websocketContextBuilder' with 'websocketProtocol'
52 | /// - websocketOnInit: Function to intercept websocket connection during the initialization phase
53 | /// - websocketProtocol: Websocket sub-protocol
warning: Parameter 'websocketOnInit' not found in initializer declaration
--> Sources/Pioneer/Extensions/Pioneer+Graphiti.swift:52:13-52:28
50 | /// - httpStrategy: HTTP strategy
51 | /// - websocketContextBuilder: Context builder for the websocket
52 + /// - websocketOnInit: Function to intercept websocket connection during the initialization phase
| ╰─suggestion: Replace 'websocketOnInit' with 'websocketProtocol'
53 | /// - websocketProtocol: Websocket sub-protocol
54 | /// - introspection: Allowing introspection
warning: Parameter 'contextBuilder' not found in initializer declaration
--> Sources/Pioneer/Pioneer.swift:42:11-42:57
40 | /// - schema: GraphQL schema used to execute operations
41 | /// - resolver: Resolver used by the GraphQL schema
42 + /// - contextBuilder: Context builder from request
| ╰─suggestion: Remove 'contextBuilder' parameter documentation
43 | /// - httpStrategy: HTTP strategy
44 | /// - websocketContextBuilder: Context builder for the websocket
warning: Parameter 'websocketContextBuilder' not found in initializer declaration
--> Sources/Pioneer/Pioneer.swift:44:13-44:36
42 | /// - contextBuilder: Context builder from request
43 | /// - httpStrategy: HTTP strategy
44 + /// - websocketContextBuilder: Context builder for the websocket
| ╰─suggestion: Replace 'websocketContextBuilder' with 'websocketProtocol'
45 | /// - websocketOnInit: Function to intercept websocket connection during the initialization phase
46 | /// - websocketProtocol: Websocket sub-protocol
warning: Parameter 'websocketOnInit' not found in initializer declaration
--> Sources/Pioneer/Pioneer.swift:45:13-45:28
43 | /// - httpStrategy: HTTP strategy
44 | /// - websocketContextBuilder: Context builder for the websocket
45 + /// - websocketOnInit: Function to intercept websocket connection during the initialization phase
| ╰─suggestion: Replace 'websocketOnInit' with 'websocketProtocol'
46 | /// - websocketProtocol: Websocket sub-protocol
47 | /// - introspection: Allowing introspection
warning: Parameter 'check' is missing documentation
--> Sources/Pioneer/Pioneer.swift:166:56-166:56
164 | /// - ev: Any event loop
165 | /// - txt: The message received
166 + /// - context: The context builder for the client
| ╰─suggestion: Document 'check' parameter
167 | public func receiveMessage(
168 | cid: UUID,
warning: External name 'to' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:38:13-38:15
36 | ///
37 | /// - Parameters:
38 + /// - to: Any type of Actor.
| ╰─suggestion: Replace 'to' with 'sink'
39 | /// - complete: A callback ran when this sequence completes.
40 | /// - error: A callback ran when an error were thrown when reading elements from this sequence.
warning: External name 'to' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:38:13-38:15
36 | ///
37 | /// - Parameters:
38 + /// - to: Any type of Actor.
| ╰─suggestion: Replace 'to' with 'sink'
39 | /// - complete: A callback ran when this sequence completes.
40 | /// - error: A callback ran when an error were thrown when reading elements from this sequence.
warning: Parameter 'error' not found in instance method declaration
--> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:40:11-40:102
38 | /// - to: Any type of Actor.
39 | /// - complete: A callback ran when this sequence completes.
40 + /// - error: A callback ran when an error were thrown when reading elements from this sequence.
| ╰─suggestion: Remove 'error' parameter documentation
41 | /// - next: A callback ran on each element of this sequence.
42 | /// - Returns: The Task used to consume this AsyncSequence
warning: Parameter 'error' not found in instance method declaration
--> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:40:11-40:102
38 | /// - to: Any type of Actor.
39 | /// - complete: A callback ran when this sequence completes.
40 + /// - error: A callback ran when an error were thrown when reading elements from this sequence.
| ╰─suggestion: Remove 'error' parameter documentation
41 | /// - next: A callback ran on each element of this sequence.
42 | /// - Returns: The Task used to consume this AsyncSequence
warning: Parameter 'failure' is missing documentation
--> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:41:67-41:67
39 | /// - complete: A callback ran when this sequence completes.
40 | /// - error: A callback ran when an error were thrown when reading elements from this sequence.
41 + /// - next: A callback ran on each element of this sequence.
| ╰─suggestion: Document 'failure' parameter
42 | /// - Returns: The Task used to consume this AsyncSequence
43 | func pipe<ActorType: Actor>(
warning: Parameter 'failure' is missing documentation
--> Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:41:67-41:67
39 | /// - complete: A callback ran when this sequence completes.
40 | /// - error: A callback ran when an error were thrown when reading elements from this sequence.
41 + /// - next: A callback ran on each element of this sequence.
| ╰─suggestion: Document 'failure' parameter
42 | /// - Returns: The Task used to consume this AsyncSequence
43 | func pipe<ActorType: Actor>(
warning: External name 'onTermination' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:23:13-23:26
21 | ///
22 | /// - Parameters:
23 + /// - onTermination: onTermination callback
| ╰─suggestion: Replace 'onTermination' with 'callback'
24 | func toEventStream(
25 | onTermination callback: @Sendable @escaping (Termination) -> Void
warning: External name 'onTermination' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:23:13-23:26
21 | ///
22 | /// - Parameters:
23 + /// - onTermination: onTermination callback
| ╰─suggestion: Replace 'onTermination' with 'callback'
24 | func toEventStream(
25 | onTermination callback: @Sendable @escaping (Termination) -> Void
warning: External name 'onTermination' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:55:13-55:26
53 | /// - Parameters:
54 | /// - endValue: Ending value
55 + /// - onTermination: onTermination callback
| ╰─suggestion: Replace 'onTermination' with 'callback'
56 | func toEventStream(
57 | endValue: @escaping () -> Element,
warning: External name 'onTermination' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:55:13-55:26
53 | /// - Parameters:
54 | /// - endValue: Ending value
55 + /// - onTermination: onTermination callback
| ╰─suggestion: Replace 'onTermination' with 'callback'
56 | func toEventStream(
57 | endValue: @escaping () -> Element,
warning: External name 'onTermination' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:89:13-89:26
87 | /// - Parameters:
88 | /// - initialValue: Initial value from subscriptions
89 + /// - onTermination: onTermination callback
| ╰─suggestion: Replace 'onTermination' with 'callback'
90 | func toEventStream(
91 | initialValue: Element,
warning: External name 'onTermination' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:89:13-89:26
87 | /// - Parameters:
88 | /// - initialValue: Initial value from subscriptions
89 + /// - onTermination: onTermination callback
| ╰─suggestion: Replace 'onTermination' with 'callback'
90 | func toEventStream(
91 | initialValue: Element,
warning: External name 'onTermination' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:124:13-124:26
122 | /// - initialValue: Initial value from subscriptions
123 | /// - endValue: Ending value
124 + /// - onTermination: onTermination callback
| ╰─suggestion: Replace 'onTermination' with 'callback'
125 | func toEventStream(
126 | initialValue: Element,
warning: External name 'onTermination' used to document parameter
--> Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:124:13-124:26
122 | /// - initialValue: Initial value from subscriptions
123 | /// - endValue: Ending value
124 + /// - onTermination: onTermination callback
| ╰─suggestion: Replace 'onTermination' with 'callback'
125 | func toEventStream(
126 | initialValue: Element,
warning: Parameter 'context' is missing documentation
--> Sources/Pioneer/Vapor/Http/Pioneer+Http.swift:19:53-19:53
17 |
18 | /// Common Handler for GraphQL through HTTP
19 + /// - Parameter req: The HTTP request being made
| ╰─suggestion: Document 'context' parameter
20 | /// - Returns: A response from the GraphQL operation execution properly formatted
21 | func httpHandler(req: Request, context: @escaping VaporHTTPContext) async throws -> Response {
warning: External name 'using' used to document parameter
--> Sources/Pioneer/Vapor/Http/Pioneer+Http.swift:28:13-28:18
26 | /// - Parameters:
27 | /// - req: The HTTP request being made
28 + /// - using: The custom content encoder
| ╰─suggestion: Replace 'using' with 'encoder'
29 | /// - Returns: A response from the GraphQL operation execution properly formatted
30 | func httpHandler(req: Request, using encoder: ContentEncoder, context: @escaping VaporHTTPContext) async throws -> Response {
warning: Parameter 'context' is missing documentation
--> Sources/Pioneer/Vapor/Http/Pioneer+Http.swift:28:46-28:46
26 | /// - Parameters:
27 | /// - req: The HTTP request being made
28 + /// - using: The custom content encoder
| ╰─suggestion: Document 'context' parameter
29 | /// - Returns: A response from the GraphQL operation execution properly formatted
30 | func httpHandler(req: Request, using encoder: ContentEncoder, context: @escaping VaporHTTPContext) async throws -> Response {
warning: Parameter 'guard' is missing documentation
--> Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:19:62-19:62
17 |
18 | /// Upgrade Handler for all GraphQL through Websocket
19 + /// - Parameter req: Request made to upgrade to Websocket
| ╰─suggestion: Document 'guard' parameter
20 | /// - Returns: Response to upgrade connection to Websocket
21 | func webSocketHandler(req: Request, context: @escaping VaporWebSocketContext, guard: @escaping VaporWebSocketGuard) async throws -> Response {
warning: Parameter 'context' is missing documentation
--> Sources/Pioneer/Vapor/WebSocket/Pioneer+WebSocket.swift:19:62-19:62
17 |
18 | /// Upgrade Handler for all GraphQL through Websocket
19 + /// - Parameter req: Request made to upgrade to Websocket
| ╰─suggestion: Document 'context' parameter
20 | /// - Returns: Response to upgrade connection to Websocket
21 | func webSocketHandler(req: Request, context: @escaping VaporWebSocketContext, guard: @escaping VaporWebSocketGuard) async throws -> Response {
warning: Parameter 'keepAlive' is missing documentation
--> Sources/Pioneer/WebSocket/Common/Pioneer+WebSocketable.swift:20:45-20:45
18 |
19 | /// Create a WebSocket connectiontimeout given the configuration
20 + /// - Parameter io: any WebSocket output
| ╰─suggestion: Document 'keepAlive' parameter
21 | func timeout(using io: WebSocketable, keepAlive: Task<Void, Error>? = nil) -> Task<Void, Error>? {
22 | setTimeout(delay: timeout) {
Finished building documentation for 'Pioneer' (0.31s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/d-exclaimation/pioneer/main
Updating https://github.com/apple/swift-nio-transport-services.git
Updating https://github.com/apple/swift-system.git
Updating https://github.com/apple/swift-collections
Updating https://github.com/apple/swift-nio-extras.git
Updating https://github.com/apple/swift-metrics.git
Updating https://github.com/GraphQLSwift/GraphQL.git
Updating https://github.com/apple/swift-http-structured-headers.git
Updated https://github.com/apple/swift-system.git (0.45s)
Updated https://github.com/apple/swift-nio-transport-services.git (0.45s)
Updating https://github.com/GraphQLSwift/Graphiti.git
Updating https://github.com/apple/swift-nio-http2.git
Updated https://github.com/apple/swift-metrics.git (0.52s)
Updated https://github.com/GraphQLSwift/GraphQL.git (0.52s)
Updated https://github.com/apple/swift-nio-extras.git (0.52s)
Updated https://github.com/apple/swift-http-structured-headers.git (0.52s)
Updated https://github.com/apple/swift-collections (0.52s)
Updating https://github.com/apple/swift-log.git
Updating https://github.com/apple/swift-nio-ssl.git
Updating https://github.com/apple/swift-certificates.git
Updating https://github.com/vapor/websocket-kit.git
Updating https://github.com/apple/swift-numerics.git
Updated https://github.com/apple/swift-nio-http2.git (0.54s)
Updated https://github.com/GraphQLSwift/Graphiti.git (0.54s)
Updating https://github.com/apple/swift-crypto.git
Updating https://github.com/apple/swift-algorithms.git
Updated https://github.com/apple/swift-nio-ssl.git (0.63s)
Updating https://github.com/vapor/console-kit.git
Updated https://github.com/vapor/websocket-kit.git (0.66s)
Updated https://github.com/apple/swift-log.git (0.66s)
Updated https://github.com/apple/swift-certificates.git (0.66s)
Updated https://github.com/apple/swift-numerics.git (0.66s)
Updating https://github.com/apple/swift-asn1.git
Updating https://github.com/apple/swift-async-algorithms.git
Updating https://github.com/vapor/routing-kit.git
Updating https://github.com/apple/swift-nio.git
Updated https://github.com/vapor/console-kit.git (0.43s)
Updating https://github.com/swift-server/async-http-client.git
Updated https://github.com/apple/swift-asn1.git (0.55s)
Updating https://github.com/apple/swift-atomics.git
Updated https://github.com/vapor/routing-kit.git (0.78s)
Updated https://github.com/apple/swift-async-algorithms.git (0.78s)
Updated https://github.com/apple/swift-nio.git (0.78s)
Updating https://github.com/apple/swift-distributed-tracing.git
Updating https://github.com/apple/swift-http-types.git
Updating https://github.com/vapor/async-kit.git
Updated https://github.com/swift-server/async-http-client.git (0.55s)
Updated https://github.com/apple/swift-atomics.git (0.41s)
Updating https://github.com/vapor/vapor.git
Updating https://github.com/swift-server/swift-service-lifecycle.git
Updated https://github.com/apple/swift-algorithms.git (1.26s)
Updated https://github.com/apple/swift-crypto.git (1.26s)
Updating https://github.com/vapor/multipart-kit.git
Updating https://github.com/apple/swift-service-context.git
Updated https://github.com/apple/swift-distributed-tracing.git (0.55s)
Updated https://github.com/vapor/async-kit.git (0.55s)
Updated https://github.com/apple/swift-http-types.git (0.55s)
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updated https://github.com/swift-server/swift-service-lifecycle.git (0.42s)
Updated https://github.com/apple/swift-service-context.git (0.44s)
Updated https://github.com/vapor/multipart-kit.git (0.44s)
Updated https://github.com/vapor/vapor.git (0.66s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.62s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.115.1 (3.79s)
Computing version for https://github.com/GraphQLSwift/Graphiti.git
Computed https://github.com/GraphQLSwift/Graphiti.git at 2.1.0 (0.41s)
Computing version for https://github.com/GraphQLSwift/GraphQL.git
Computed https://github.com/GraphQLSwift/GraphQL.git at 3.0.2 (0.41s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.42s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.1 (0.42s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.16.1 (0.42s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.49s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (0.43s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.2.1 (0.42s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.0 (0.42s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.42s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.28.0 (0.48s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.37.0 (0.45s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.32.0 (0.55s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.84.0 (0.62s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.2 (0.42s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (0.93s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.2 (0.44s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.20.0 (0.50s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.26.1 (0.44s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.2.0 (0.49s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.25.0 (0.42s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.51s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.0.4 (0.46s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.8.0 (0.42s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.4.0 (0.51s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.11.0 (0.53s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.3.0 (0.41s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (0.41s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (0.43s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (0.54s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.94s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.52s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[0/8] Write snippet-extract-tool-entitlement.plist
[0/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit DeclarationFragments.swift
[7/53] Compiling SymbolKit Fragment.swift
[8/53] Compiling SymbolKit FragmentKind.swift
[9/53] Compiling SymbolKit FunctionParameter.swift
[10/53] Compiling SymbolKit FunctionSignature.swift
[11/57] Compiling SymbolKit Identifier.swift
[12/57] Compiling SymbolKit KindIdentifier.swift
[13/57] Compiling SymbolKit Location.swift
[14/57] Compiling SymbolKit Mutability.swift
[15/57] Compiling SymbolKit GenericConstraint.swift
[16/57] Compiling SymbolKit GenericParameter.swift
[17/57] Compiling SymbolKit Generics.swift
[18/57] Compiling SymbolKit Namespace.swift
[19/57] Compiling SymbolKit Mixin+Equals.swift
[20/57] Compiling SymbolKit Mixin+Hash.swift
[21/57] Compiling SymbolKit Mixin.swift
[22/57] Compiling SymbolKit LineList.swift
[23/57] Compiling SymbolKit Position.swift
[24/57] Emitting module SymbolKit
[25/57] Compiling SymbolKit Relationship.swift
[26/57] Compiling SymbolKit RelationshipKind.swift
[27/57] Compiling SymbolKit SourceOrigin.swift
[28/57] Compiling SymbolKit GenericConstraints.swift
[29/57] Compiling SymbolKit Swift.swift
[30/57] Compiling SymbolKit Names.swift
[31/57] Compiling SymbolKit SPI.swift
[32/57] Compiling SymbolKit Snippet.swift
[33/57] Compiling SymbolKit Extension.swift
[34/57] Compiling SymbolKit SemanticVersion.swift
[35/57] Compiling SymbolKit AccessControl.swift
[36/57] Compiling SymbolKit Availability.swift
[37/57] Compiling SymbolKit AvailabilityItem.swift
[38/57] Compiling SymbolKit Domain.swift
[39/57] Compiling SymbolKit SourceRange.swift
[40/57] Compiling SymbolKit Metadata.swift
[41/57] Compiling SymbolKit Module.swift
[42/57] Compiling SymbolKit OperatingSystem.swift
[43/57] Compiling SymbolKit Platform.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets Snippet.swift
[53/57] Compiling Snippets SnippetParser.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (6.82s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/149] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[3/150] Compiling ServiceContextModule ServiceContextKey.swift
[4/150] Emitting module ServiceContextModule
[5/150] Compiling ServiceContextModule ServiceContext.swift
[6/150] Compiling InternalCollectionsUtilities Debugging.swift
[7/150] Compiling InternalCollectionsUtilities Descriptions.swift
[8/150] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[9/150] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[10/150] Compiling RealModule AlgebraicField.swift
[11/150] Compiling RealModule ApproximateEquality.swift
[12/151] Compiling RealModule Float80+Real.swift
[13/151] Compiling RealModule Real.swift
[14/151] Compiling RealModule RealFunctions.swift
[15/151] Compiling Logging MetadataProvider.swift
[16/151] Compiling RealModule Float16+Real.swift
[17/151] Compiling RealModule ElementaryFunctions.swift
[18/151] Compiling RealModule Float+Real.swift
[19/151] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[20/151] Compiling RealModule AugmentedArithmetic.swift
[21/151] Compiling RealModule Double+Real.swift
[22/151] Compiling Logging Locks.swift
[23/151] Compiling SystemPackage FilePermissions.swift
[24/151] Compiling SystemPackage Backcompat.swift
[25/151] Compiling SystemPackage CInterop.swift
[26/151] Compiling Crypto ASN1Integer.swift
[27/151] Compiling Crypto ASN1Null.swift
[28/151] Compiling Crypto ASN1OctetString.swift
[29/151] Compiling Crypto ASN1Strings.swift
[30/151] Compiling Crypto ArraySliceBigint.swift
[31/159] Compiling NIOConcurrencyHelpers NIOLock.swift
[32/159] Compiling Crypto AES.swift
[33/159] Compiling Crypto ECDSASignature_boring.swift
[34/159] Compiling Crypto ECDSA_boring.swift
[35/159] Compiling Crypto EdDSA_boring.swift
[36/159] Compiling Crypto ECDSA.swift
[37/159] Compiling Crypto Ed25519.swift
[38/159] Compiling Crypto Signature.swift
[39/159] Compiling Crypto CryptoKitErrors_boring.swift
[40/159] Compiling Crypto Curve25519.swift
[41/159] Compiling Crypto Ed25519Keys.swift
[42/159] Compiling Crypto NISTCurvesKeys.swift
[43/159] Compiling Crypto X25519Keys.swift
[44/159] Compiling Crypto SymmetricKeys.swift
[45/159] Compiling Crypto HMAC.swift
[46/159] Compiling Crypto MACFunctions.swift
[47/159] Compiling Crypto MessageAuthenticationCode.swift
[48/159] Compiling Crypto DH.swift
[49/159] Compiling Crypto ECDH.swift
[50/159] Compiling Crypto HKDF.swift
[51/159] Compiling Crypto AESWrap.swift
[52/159] Compiling Crypto AESWrap_boring.swift
[53/159] Compiling Crypto Ed25519_boring.swift
[54/159] Compiling Crypto NISTCurvesKeys_boring.swift
[55/159] Compiling Crypto X25519Keys_boring.swift
[56/159] Compiling Crypto Digest_boring.swift
[57/159] Compiling Crypto Digest.swift
[58/159] Compiling Crypto Digests.swift
[59/159] Compiling Crypto HashFunctions.swift
[60/159] Compiling Crypto HashFunctions_SHA2.swift
[61/159] Compiling Crypto HPKE-AEAD.swift
[62/159] Compiling Crypto HPKE-Ciphersuite.swift
[63/159] Compiling Crypto HPKE-KDF.swift
[64/159] Compiling Crypto HPKE.swift
[65/159] Compiling Crypto HPKE-Context.swift
[66/159] Compiling Crypto HPKE-KeySchedule.swift
[67/159] Compiling Crypto HPKE-Modes.swift
[68/159] Compiling Crypto Insecure.swift
[69/159] Compiling Crypto Insecure_HashFunctions.swift
[70/159] Compiling Crypto KEM.swift
[71/159] Compiling Crypto ECDH_boring.swift
[72/159] Emitting module _NIOBase64
[73/159] Compiling _NIOBase64 Base64.swift
[74/178] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[75/178] Emitting module Logging
[76/178] Compiling NIOConcurrencyHelpers lock.swift
[77/178] Compiling Atomics AtomicBool.swift
[78/178] Compiling Atomics IntegerConformances.swift
[79/178] Emitting module RealModule
[80/178] Compiling _NIODataStructures PriorityQueue.swift
[81/178] Compiling _NIODataStructures _TinyArray.swift
[82/178] Compiling _NIODataStructures Heap.swift
[83/178] Compiling Atomics AtomicInteger.swift
[84/178] Compiling Atomics AtomicOptionalWrappable.swift
[85/178] Compiling SystemPackage MachPort.swift
[86/178] Compiling SystemPackage PlatformString.swift
[87/178] Compiling SystemPackage SystemString.swift
[88/178] Compiling SystemPackage FileHelpers.swift
[89/178] Compiling SystemPackage FileOperations.swift
[90/178] Compiling SystemPackage FilePath.swift
[93/178] Compiling Atomics PointerConformances.swift
[94/178] Compiling Atomics Primitives.native.swift
[95/178] Compiling Atomics OptionalRawRepresentable.swift
[96/178] Compiling Atomics RawRepresentable.swift
[97/178] Compiling Atomics AtomicValue.swift
[98/178] Compiling Atomics AtomicMemoryOrderings.swift
[99/178] Emitting module Crypto
[100/178] Compiling Atomics ManagedAtomicLazyReference.swift
[101/178] Compiling Atomics UnsafeAtomic.swift
[102/178] Compiling Atomics UnsafeAtomicLazyReference.swift
[103/178] Compiling Atomics IntegerOperations.swift
[104/178] Compiling Atomics AtomicReference.swift
[105/178] Compiling Atomics AtomicStorage.swift
[106/178] Compiling Atomics DoubleWord.swift
[107/178] Compiling Atomics ManagedAtomic.swift
[108/184] Emitting module _NIODataStructures
[109/184] Compiling NIOConcurrencyHelpers atomics.swift
[110/184] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[111/184] Emitting module NIOConcurrencyHelpers
[112/184] Emitting module InternalCollectionsUtilities
[123/211] Compiling Algorithms Cycle.swift
[126/211] Compiling Algorithms Rotate.swift
[127/211] Compiling Algorithms Combinations.swift
[128/211] Compiling Algorithms Compacted.swift
[129/214] Compiling Instrumentation Instrument.swift
[130/214] Compiling Instrumentation NoOpInstrument.swift
[131/214] Compiling Instrumentation MultiplexInstrument.swift
[132/214] Compiling Instrumentation InstrumentationSystem.swift
[133/214] Compiling Instrumentation Locks.swift
[134/214] Emitting module Instrumentation
[135/214] Compiling Atomics Unmanaged extensions.swift
[136/221] Compiling Algorithms Partition.swift
[137/221] Compiling Algorithms Permutations.swift
[138/221] Compiling Algorithms Product.swift
[139/221] Compiling Algorithms AdjacentPairs.swift
[140/221] Compiling Algorithms Chain.swift
[141/221] Compiling Algorithms Chunked.swift
[142/221] Compiling Algorithms Joined.swift
[143/221] Compiling Algorithms Keyed.swift
[144/221] Compiling Algorithms MinMax.swift
[145/221] Compiling CoreMetrics Locks.swift
[146/221] Compiling CoreMetrics Metrics.swift
[147/221] Emitting module CoreMetrics
[148/277] Compiling OrderedCollections _HashTable.swift
[149/277] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[150/277] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[151/277] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[152/277] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[153/277] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[154/277] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[155/277] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[156/355] Compiling HeapModule Heap.swift
[157/355] Compiling HeapModule _HeapNode.swift
[158/355] Compiling HeapModule Heap+Invariants.swift
[159/355] Compiling HeapModule Heap+Descriptions.swift
[160/355] Compiling HeapModule Heap+UnsafeHandle.swift
[161/355] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[162/433] Emitting module SystemPackage
[163/433] Compiling HashTreeCollections _HashNode+Structural merge.swift
[164/433] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[165/433] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[166/433] Compiling HashTreeCollections _HashNode+Structural union.swift
[167/433] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[168/433] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[169/433] Compiling HashTreeCollections _HashNode+Lookups.swift
[170/433] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[171/433] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[172/433] Emitting module HeapModule
[173/433] Compiling Logging LogHandler.swift
[174/433] Compiling Logging Logging.swift
[175/435] Compiling HashTreeCollections TreeSet+Equatable.swift
[176/435] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[177/435] Compiling HashTreeCollections TreeSet+Extras.swift
[178/435] Compiling HashTreeCollections TreeSet+Filter.swift
[179/435] Compiling HashTreeCollections TreeSet+Hashable.swift
[180/435] Compiling HashTreeCollections TreeSet+Sendable.swift
[181/435] Compiling HashTreeCollections TreeSet+Sequence.swift
[182/435] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[188/443] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[189/443] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[190/443] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[191/443] Compiling Tracing TracingTime.swift
[192/443] Compiling Tracing TracerProtocol.swift
[193/443] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[194/443] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[195/443] Compiling HashTreeCollections _HashNode.swift
[196/443] Compiling HashTreeCollections _HashNode+Initializers.swift
[197/443] Compiling HashTreeCollections _HashNode+Invariants.swift
[198/443] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[199/443] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[200/443] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[202/443] Compiling HashTreeCollections _AncestorHashSlots.swift
[203/443] Compiling HashTreeCollections _Bitmap.swift
[204/443] Compiling HashTreeCollections _Bucket.swift
[207/465] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[210/465] Compiling HashTreeCollections _HashNode+Storage.swift
[211/465] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[212/465] Compiling HashTreeCollections _HashNode+Structural filter.swift
[218/473] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[219/473] Compiling HashTreeCollections TreeDictionary+Merge.swift
[220/473] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[221/473] Compiling HashTreeCollections _RawHashNode.swift
[222/473] Compiling HashTreeCollections _UnmanagedHashNode.swift
[223/473] Compiling HashTreeCollections _UnsafePath.swift
[224/473] Compiling DequeModule _DequeSlot.swift
[225/474] Compiling HashTreeCollections _HashSlot.swift
[226/474] Compiling HashTreeCollections _HashStack.swift
[227/474] Compiling HashTreeCollections _HashTreeIterator.swift
[228/474] Compiling HashTreeCollections _HashTreeStatistics.swift
[229/474] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[230/474] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[231/474] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[232/474] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[233/474] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[234/474] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[235/474] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[236/474] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[249/474] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[250/474] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[251/474] Compiling HashTreeCollections TreeDictionary+Filter.swift
[252/474] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[253/474] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[254/474] Compiling HashTreeCollections TreeDictionary+Keys.swift
[255/474] Compiling Algorithms Unique.swift
[256/474] Compiling Algorithms Windows.swift
[260/474] Compiling HashTreeCollections _HashNodeHeader.swift
[261/474] Compiling DequeModule Deque+Codable.swift
[262/474] Compiling DequeModule Deque+Collection.swift
[263/474] Compiling DequeModule Deque+Extras.swift
[264/474] Compiling DequeModule Deque+Hashable.swift
[268/484] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[269/484] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[270/484] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[271/484] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[272/484] Compiling HashTreeCollections TreeSet.swift
[273/501] Emitting module Metrics
[274/501] Compiling Metrics Metrics.swift
[275/501] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[276/501] Compiling HashTreeCollections TreeDictionary+Values.swift
[277/501] Compiling HashTreeCollections TreeDictionary.swift
[278/501] Compiling HashTreeCollections TreeSet+Codable.swift
[279/501] Compiling HashTreeCollections TreeSet+Collection.swift
[280/501] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[281/501] Compiling HashTreeCollections TreeSet+Debugging.swift
[282/501] Compiling HashTreeCollections TreeSet+Descriptions.swift
[283/501] Compiling Tracing TracerProtocol+Legacy.swift
[284/501] Compiling Tracing Tracer.swift
[285/501] Compiling Tracing NoOpTracer.swift
[286/501] Compiling Tracing InstrumentationSystem+Tracing.swift
[287/501] Compiling Tracing SpanProtocol.swift
[288/501] Emitting module Tracing
[289/501] Compiling DequeModule _DequeBufferHeader.swift
[290/501] Compiling ConsoleKitTerminal Console+Ask.swift
[291/501] Compiling ConsoleKitTerminal Console+Choose.swift
[292/501] Compiling DequeModule _DequeBuffer.swift
[293/501] Compiling ConsoleKitTerminal Console+Confirm.swift
[294/501] Compiling ConsoleKitTerminal Console+Input.swift
[295/501] Compiling ConsoleKitTerminal Console+Center.swift
[296/501] Compiling ConsoleKitTerminal ConsoleClear.swift
[299/501] Compiling DequeModule _UnsafeWrappedBuffer.swift
[300/501] Compiling ConsoleKitTerminal LoadingBar.swift
[302/502] Compiling RoutingKit PathComponent.swift
[303/502] Compiling RoutingKit Router.swift
[304/502] Compiling RoutingKit Parameters.swift
[305/502] Compiling RoutingKit AnyRouter.swift
[306/502] Emitting module RoutingKit
[307/502] Compiling RoutingKit TrieRouter.swift
[308/556] Compiling BitCollections BitArray+Shifts.swift
[309/556] Compiling BitCollections BitArray+Testing.swift
[310/556] Compiling BitCollections BitArray._UnsafeHandle.swift
[311/556] Compiling BitCollections BitArray.swift
[312/556] Compiling BitCollections BitSet+BidirectionalCollection.swift
[313/556] Compiling BitCollections BitSet+Codable.swift
[314/556] Compiling BitCollections BitArray+Hashable.swift
[316/556] Compiling OrderedCollections OrderedSet+SubSequence.swift
[317/556] Compiling OrderedCollections OrderedSet+Testing.swift
[318/556] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[319/556] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[320/556] Compiling OrderedCollections OrderedSet.swift
[321/556] Compiling OrderedCollections _UnsafeBitset.swift
[330/558] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[331/558] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[332/558] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[333/559] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[334/559] Compiling BitCollections BitSet+Hashable.swift
[335/559] Compiling BitCollections BitSet+Initializers.swift
[336/564] Compiling BitCollections BitSet.Counted.swift
[337/564] Compiling BitCollections BitSet.Index.swift
[338/564] Compiling BitCollections BitSet._UnsafeHandle.swift
[339/564] Compiling BitCollections BitArray+Descriptions.swift
[340/564] Compiling BitCollections BitArray+Equatable.swift
[341/564] Compiling BitCollections BitArray+ExpressibleByArrayLiteral.swift
[342/565] Compiling BitCollections BitArray+ExpressibleByStringLiteral.swift
[343/565] Compiling BitCollections BitArray+Extras.swift
[344/565] Compiling BitCollections BitArray+Fill.swift
[345/565] Compiling BitCollections BitArray+BitwiseOperations.swift
[346/565] Compiling BitCollections BitArray+ChunkedBitsIterators.swift
[347/565] Compiling BitCollections BitArray+Codable.swift
[348/565] Compiling BitCollections BitArray+Collection.swift
[349/565] Compiling BitCollections BitArray+Copy.swift
[350/565] Compiling BitCollections BitArray+CustomReflectable.swift
[354/565] Compiling ConsoleKitTerminal ConsoleLogger.swift
[355/565] Compiling ConsoleKitTerminal LoggerFragment.swift
[356/565] Compiling BitCollections BitSet+SetAlgebra basics.swift
[357/565] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[358/565] Compiling BitCollections BitSet+CustomDebugStringConvertible.swift
[359/565] Compiling BitCollections BitSet+CustomReflectable.swift
[360/565] Compiling BitCollections BitSet+CustomStringConvertible.swift
[361/565] Compiling BitCollections BitSet+Equatable.swift
[362/565] Compiling BitCollections BitSet+ExpressibleByArrayLiteral.swift
[363/565] Compiling BitCollections BitSet+Extras.swift
[364/565] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[365/565] Compiling BitCollections BitSet+SetAlgebra union.swift
[366/565] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[372/565] Compiling BitCollections BitArray+Initializers.swift
[373/565] Compiling BitCollections BitArray+Invariants.swift
[374/565] Compiling BitCollections BitArray+LosslessStringConvertible.swift
[375/565] Emitting module ConsoleKitTerminal
[379/565] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[380/565] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[381/565] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[382/565] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[442/570] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[443/570] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[444/570] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[445/570] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[452/570] Compiling BitCollections BitArray+RandomBits.swift
[453/570] Compiling BitCollections BitArray+RangeReplaceableCollection.swift
[463/570] Emitting module DequeModule
[466/570] Emitting module Atomics
[467/570] Emitting module BitCollections
[503/570] Compiling BitCollections BitSet.swift
[504/570] Compiling BitCollections Range+Utilities.swift
[505/570] Compiling BitCollections Slice+Utilities.swift
[506/570] Compiling BitCollections UInt+Tricks.swift
[507/570] Compiling BitCollections _Word.swift
[520/570] Emitting module OrderedCollections
[553/633] Compiling _RopeModule Rope+Remove.swift
[554/633] Compiling _RopeModule Rope+RemoveSubrange.swift
[555/633] Compiling _RopeModule Rope+Split.swift
[556/633] Compiling _RopeModule Optional Utilities.swift
[557/633] Compiling _RopeModule String Utilities.swift
[558/633] Compiling _RopeModule String.Index+ABI.swift
[559/633] Compiling _RopeModule _CharacterRecognizer.swift
[560/655] Emitting module _RopeModule
[561/655] Emitting module Algorithms
[562/655] Compiling ConsoleKitCommands AnyAsyncCommand.swift
[563/655] Compiling ConsoleKitCommands AsyncCommand.swift
[564/655] Compiling ConsoleKitCommands AsyncCommandGroup.swift
[565/655] Compiling ConsoleKitCommands Command.swift
[566/655] Compiling ConsoleKitCommands CommandContext.swift
[567/655] Compiling ConsoleKitCommands CommandError.swift
[568/655] Compiling ConsoleKitCommands AsyncCommands.swift
[569/655] Compiling ConsoleKitCommands GenerateAsyncAutocompleteCommand.swift
[570/655] Emitting module ConsoleKitCommands
[575/657] Compiling ConsoleKitCommands AnyCommand.swift
[576/657] Compiling ConsoleKitCommands Commands.swift
[577/657] Compiling ConsoleKitCommands Console+Run.swift
[578/657] Compiling ConsoleKitCommands CommandGroup.swift
[579/657] Compiling ConsoleKitCommands CommandInput.swift
[580/657] Compiling ConsoleKitCommands Flag.swift
[581/663] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[582/663] Compiling ConsoleKitCommands Utilities.swift
[583/663] Emitting module HashTreeCollections
[585/663] Compiling ConsoleKitCommands Option.swift
[588/663] Compiling ConsoleKitCommands Argument.swift
[589/663] Compiling ConsoleKitCommands CommandSignature.swift
[590/663] Compiling ConsoleKitCommands GenerateAutocompleteCommand.swift
[591/663] Compiling ConsoleKitCommands MergedAsyncCommandGroup.swift
[600/663] Compiling ConsoleKitCommands ConsoleError.swift
[601/663] Compiling ConsoleKitCommands Completion.swift
[602/663] Compiling NIOCore SocketOptionProvider.swift
[603/663] Compiling NIOCore SystemCallHelpers.swift
[604/663] Compiling NIOCore TimeAmount+Duration.swift
[605/663] Compiling NIOCore TypeAssistedChannelHandler.swift
[606/663] Compiling NIOCore UniversalBootstrapSupport.swift
[607/663] Compiling NIOCore Utilities.swift
[615/663] Compiling NIOCore Codec.swift
[616/663] Compiling NIOCore ConvenienceOptionSupport.swift
[617/663] Compiling NIOCore DeadChannel.swift
[618/663] Compiling NIOCore DispatchQueue+WithFuture.swift
[619/663] Compiling NIOCore EventLoop+Deprecated.swift
[620/663] Compiling NIOCore EventLoop+SerialExecutor.swift
[621/663] Compiling NIOCore EventLoop.swift
[622/663] Compiling NIOCore AddressedEnvelope.swift
[623/663] Compiling NIOCore AsyncAwaitSupport.swift
[624/663] Compiling NIOCore AsyncChannel.swift
[625/663] Compiling NIOCore AsyncChannelHandler.swift
[626/663] Compiling NIOCore AsyncChannelInboundStream.swift
[627/663] Compiling NIOCore AsyncChannelOutboundWriter.swift
[628/663] Compiling NIOCore NIOAsyncSequenceProducer.swift
[629/665] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[630/665] Compiling NIOCore NIOAsyncWriter.swift
[631/665] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[632/665] Compiling NIOCore BSDSocketAPI.swift
[633/665] Compiling NIOCore ByteBuffer-aux.swift
[634/665] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[635/665] Compiling NIOCore ByteBuffer-conversions.swift
[636/665] Compiling Collections Collections.swift
[637/665] Emitting module Collections
[645/667] Emitting module ConsoleKit
[646/667] Compiling ConsoleKit Exports.swift
[647/667] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[648/667] Compiling NIOCore NIOScheduledCallback.swift
[649/667] Compiling NIOCore NIOSendable.swift
[650/667] Compiling NIOCore RecvByteBufferAllocator.swift
[651/667] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[652/667] Compiling NIOCore SocketAddresses.swift
[655/667] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[656/667] Compiling NIOCore EventLoopFuture.swift
[657/667] Compiling NIOCore FileDescriptor.swift
[658/667] Compiling NIOCore FileHandle.swift
[659/667] Compiling NIOCore FileRegion.swift
[660/667] Compiling NIOCore ByteBuffer-core.swift
[661/667] Compiling NIOCore ByteBuffer-hex.swift
[662/667] Compiling NIOCore ByteBuffer-int.swift
[663/667] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[664/667] Compiling NIOCore ByteBuffer-multi-int.swift
[665/667] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[666/667] Compiling NIOCore ByteBuffer-views.swift
[667/667] Emitting module NIOCore
[668/720] Compiling NIOEmbedded AsyncTestingChannel.swift
[669/720] Compiling NIOEmbedded Embedded.swift
[670/720] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[671/720] Emitting module NIOEmbedded
[672/720] Compiling NIOPosix LinuxCPUSet.swift
[673/720] Compiling NIOPosix LinuxUring.swift
[674/720] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[675/720] Compiling NIOPosix NIOPosixSendableMetatype.swift
[676/720] Compiling NIOPosix NIOThreadPool.swift
[677/725] Compiling NIOPosix GetaddrinfoResolver.swift
[678/725] Compiling NIOPosix HappyEyeballs.swift
[679/725] Compiling NIOPosix IO.swift
[680/725] Compiling NIOPosix IntegerBitPacking.swift
[681/725] Compiling NIOPosix IntegerTypes.swift
[682/725] Compiling NIOPosix Linux.swift
[683/725] Compiling NIOPosix Selectable.swift
[684/725] Compiling NIOPosix SelectableChannel.swift
[685/725] Compiling NIOPosix SelectableEventLoop.swift
[686/725] Compiling NIOPosix SelectorEpoll.swift
[687/725] Compiling NIOPosix SelectorGeneric.swift
[688/725] Compiling NIOPosix BSDSocketAPICommon.swift
[689/725] Compiling NIOPosix BSDSocketAPIPosix.swift
[690/725] Compiling NIOPosix BSDSocketAPIWindows.swift
[691/725] Compiling NIOPosix BaseSocket.swift
[692/725] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[693/725] Compiling NIOPosix BaseSocketChannel.swift
[694/725] Compiling NIOPosix SelectorKqueue.swift
[695/725] Compiling NIOPosix SelectorUring.swift
[696/725] Compiling NIOPosix ServerSocket.swift
[697/725] Compiling NIOPosix Socket.swift
[698/725] Compiling NIOPosix SocketChannel.swift
[699/725] Compiling NIOPosix UnsafeTransfer.swift
[700/725] Compiling NIOPosix Utilities.swift
[701/725] Compiling NIOPosix VsockAddress.swift
[702/725] Compiling NIOPosix VsockChannelEvents.swift
[703/725] Compiling NIOPosix resource_bundle_accessor.swift
[704/725] Compiling NIOPosix BaseStreamSocketChannel.swift
[705/725] Compiling NIOPosix Bootstrap.swift
[706/725] Compiling NIOPosix ControlMessage.swift
[707/725] Compiling NIOPosix DatagramVectorReadManager.swift
[708/725] Compiling NIOPosix Errors+Any.swift
[709/725] Compiling NIOPosix FileDescriptor.swift
[710/725] Compiling NIOPosix Pool.swift
[711/725] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[712/725] Compiling NIOPosix PosixSingletons.swift
[713/725] Compiling NIOPosix RawSocketBootstrap.swift
[714/725] Compiling NIOPosix Resolver.swift
[715/725] Compiling NIOPosix SocketProtocols.swift
[716/725] Compiling NIOPosix System.swift
[717/725] Compiling NIOPosix Thread.swift
[718/725] Compiling NIOPosix ThreadPosix.swift
[719/725] Compiling NIOPosix ThreadWindows.swift
[720/725] Emitting module NIOPosix
[721/725] Compiling NIOPosix NonBlockingFileIO.swift
[722/725] Compiling NIOPosix PendingDatagramWritesManager.swift
[723/725] Compiling NIOPosix PendingWritesManager.swift
[724/725] Compiling NIOPosix PipeChannel.swift
[725/725] Compiling NIOPosix PipePair.swift
[726/786] Compiling NIO Exports.swift
[727/786] Emitting module NIO
[728/786] Compiling _NIOFileSystem Array+FileSystem.swift
[729/786] Compiling _NIOFileSystem ArraySlice+FileSystem.swift
[730/786] Compiling _NIOFileSystem BufferedReader.swift
[731/799] Compiling _NIOFileSystem FileSystemError+Syscall.swift
[732/799] Compiling _NIOFileSystem FileSystemError.swift
[733/799] Compiling _NIOFileSystem IOStrategy.swift
[734/799] Compiling _NIOFileSystem BufferedOrAnyStream.swift
[735/828] Compiling NIOHTTP1 HTTPDecoder.swift
[736/828] Compiling NIOHTTP1 HTTPEncoder.swift
[737/828] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[738/828] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[739/828] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[740/828] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[741/828] Compiling NIOHTTP1 HTTPTypes.swift
[742/828] Compiling NIOTLS TLSEvents.swift
[743/828] Compiling NIOSOCKS SOCKSResponse.swift
[744/828] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[745/828] Compiling NIOSOCKS ClientStateMachine.swift
[746/919] Compiling GraphQL Introspection.swift
[747/919] Compiling GraphQL Scalars.swift
[748/919] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[749/919] Compiling NIOSOCKS Messages.swift
[750/919] Compiling NIOSOCKS Helpers.swift
[751/919] Compiling GraphQL AnyCoder.swift
[752/919] Compiling GraphQL AnySerialization.swift
[753/919] Compiling NIOSOCKS Errors.swift
[754/919] Compiling NIOSOCKS SOCKSRequest.swift
[755/919] Compiling GraphQL Source.swift
[756/919] Compiling GraphQL Visitor.swift
[757/919] Emitting module NIOSOCKS
[758/919] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[759/919] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[760/919] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[761/919] Emitting module NIOTLS
[762/919] Compiling NIOTLS SNIHandler.swift
[763/919] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[764/920] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[765/920] Emitting module _NIOFileSystem
[766/924] Compiling NIOSOCKS ServerStateMachine.swift
[767/924] Compiling GraphQL Validation.swift
[768/924] Compiling GraphQL ASTFromValue.swift
[769/924] Compiling GraphQL AssertValidName.swift
[770/924] Compiling GraphQL BuildASTSchema.swift
[775/924] Compiling GraphQL GraphQLJSONEncoder.swift
[776/924] Compiling GraphQL Map.swift
[777/924] Compiling GraphQL MapCoder.swift
[778/924] Compiling GraphQL MapSerialization.swift
[779/924] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[780/924] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[781/924] Emitting module NIOFoundationCompat
[782/924] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[783/924] Compiling GraphQL CharacterClasses.swift
[784/924] Compiling GraphQL Kinds.swift
[785/924] Compiling GraphQL Parser.swift
[786/924] Compiling GraphQL Predicates.swift
[787/924] Compiling GraphQL PrintString.swift
[788/924] Compiling GraphQL Printer.swift
[789/924] Compiling GraphQL Directives.swift
[792/924] Compiling GraphQL Schema.swift
[793/977] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[794/977] Compiling _NIOFileSystem NIOFileSystemSendableMetatype.swift
[795/977] Compiling _NIOFileSystem OpenOptions.swift
[796/977] Compiling _NIOFileSystem String+FileSystem.swift
[797/977] Compiling _NIOFileSystem resource_bundle_accessor.swift
[798/977] Compiling GraphQL UniqueArgumentDefinitionNamesRule.swift
[799/977] Compiling GraphQL UniqueArgumentNamesRule.swift
[800/977] Compiling GraphQL UniqueDirectiveNamesRule.swift
[801/977] Compiling GraphQL UniqueDirectivesPerLocationRule.swift
[802/977] Compiling GraphQL UniqueEnumValueNamesRule.swift
[803/977] Compiling GraphQL UniqueFieldDefinitionNamesRule.swift
[804/977] Compiling GraphQL UniqueFragmentNamesRule.swift
[805/977] Compiling GraphQL UniqueInputFieldNamesRule.swift
[806/977] Compiling GraphQL UniqueOperationNamesRule.swift
[807/986] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[808/986] Compiling NIOTransportServices NIOTSBootstraps.swift
[809/986] Compiling NIOTransportServices NIOTSChannelOptions.swift
[810/986] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[811/986] Emitting module NIOHTTP1
[812/986] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[813/986] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[814/986] Compiling NIOTransportServices StateManagedChannel.swift
[815/986] Compiling NIOTransportServices StateManagedListenerChannel.swift
[816/986] Compiling NIOTransportServices AcceptHandler.swift
[817/986] Compiling NIOTransportServices NIOTSDatagramConnectionBootstrap.swift
[818/986] Compiling NIOTransportServices NIOTSDatagramConnectionChannel.swift
[819/986] Compiling NIOTransportServices NIOTSEventLoop.swift
[820/1033] Compiling NIOSSL NIOSSLHandler+Configuration.swift
[821/1033] Compiling NIOSSL NIOSSLHandler.swift
[822/1033] Compiling GraphQL EventStream.swift
[823/1033] Compiling GraphQL Subscribe.swift
[824/1033] Compiling GraphQL DidYouMean.swift
[825/1033] Compiling GraphQL Find.swift
[826/1033] Compiling GraphQL FormatList.swift
[827/1033] Compiling GraphQL IsNullish.swift
[828/1052] Emitting module NIOTransportServices
[829/1054] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[830/1054] Emitting module AsyncKit
[831/1054] Compiling MultipartKit MultipartFormData.swift
[832/1054] Compiling MultipartKit MultipartParser.swift
[833/1054] Compiling MultipartKit MultipartPart.swift
[834/1054] Compiling MultipartKit MultipartPartConvertible.swift
[835/1054] Compiling MultipartKit FormDataEncoder.Encoder.swift
[836/1054] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[837/1054] Compiling MultipartKit Storage.swift
[838/1054] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[839/1054] Compiling MultipartKit FormDataDecoder.swift
[840/1054] Compiling NIOTransportServices NIOTSDatagramListenerBootstrap.swift
[841/1054] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[842/1054] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[843/1054] Compiling NIOSSL LinuxCABundle.swift
[844/1054] Compiling NIOSSL NIOSSLClientHandler.swift
[847/1057] Compiling MultipartKit MultipartError.swift
[848/1057] Compiling MultipartKit FormDataEncoder.swift
[851/1057] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[852/1057] Compiling MultipartKit Exports.swift
[853/1057] Compiling MultipartKit FormDataDecoder.Decoder.swift
[854/1057] Compiling MultipartKit BasicCodingKey.swift
[858/1057] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[859/1057] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[860/1057] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[861/1057] Compiling NIOSSL UniversalBootstrapSupport.swift
[862/1057] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[863/1057] Compiling NIOSSL resource_bundle_accessor.swift
[871/1057] Compiling NIOSSL SafeCompare.swift
[872/1057] Compiling NIOSSL Zeroization.swift
[873/1057] Compiling NIOSSL TLSConfiguration.swift
[874/1057] Emitting module NIOSSL
[875/1057] Compiling NIOWebSocket NIOWebSocketFrameAggregator.swift
[876/1057] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[877/1057] Compiling NIOWebSocket WebSocketOpcode.swift
[878/1057] Compiling NIOWebSocket SHA1.swift
[879/1057] Compiling NIOWebSocket NIOWebSocketServerUpgrader.swift
[880/1057] Compiling NIOWebSocket WebSocketErrorCodes.swift
[881/1057] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[882/1058] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[883/1058] Compiling NIOHTTPCompression HTTPCompression.swift
[884/1058] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[885/1058] Compiling NIOHTTPCompression HTTPDecompression.swift
[886/1058] Emitting module NIOHTTPCompression
[887/1058] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[888/1058] Compiling NIOHPACK IntegerCoding.swift
[889/1058] Compiling NIOHPACK IndexedHeaderTable.swift
[890/1058] Compiling NIOHPACK HuffmanTables.swift
[901/1060] Compiling NIOHPACK HuffmanCoding.swift
[911/1060] Compiling NIOWebSocket NIOWebSocketClientUpgrader.swift
[912/1060] Compiling NIOWebSocket WebSocketFrame.swift
[913/1060] Emitting module NIOWebSocket
[914/1060] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[915/1060] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[916/1060] Compiling NIOHPACK HeaderTables.swift
[917/1060] Compiling NIOHPACK HPACKHeader.swift
[918/1060] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[919/1060] Compiling NIOHPACK HPACKErrors.swift
[922/1060] Emitting module NIOHPACK
[923/1060] Compiling NIOHPACK HPACKEncoder.swift
[928/1060] Compiling NIOHPACK StaticHeaderTable.swift
[929/1060] Compiling GraphQL UniqueOperationTypesRule.swift
[930/1060] Compiling GraphQL UniqueTypeNamesRule.swift
[931/1060] Compiling GraphQL UniqueVariableNamesRule.swift
[932/1060] Compiling GraphQL ValuesOfCorrectTypeRule.swift
[933/1060] Compiling GraphQL VariablesAreInputTypesRule.swift
[934/1060] Compiling GraphQL VariablesInAllowedPositionRule.swift
[935/1060] Compiling GraphQL SpecifiedRules.swift
[936/1060] Compiling GraphQL Validate.swift
[937/1060] Compiling GraphQL ValidationContext.swift
[942/1060] Emitting module NIOExtras
[955/1060] Compiling GraphQL GraphQLError.swift
[956/1060] Compiling GraphQL LocatedError.swift
[957/1060] Compiling GraphQL SyntaxError.swift
[958/1060] Compiling GraphQL Execute.swift
[959/1060] Compiling GraphQL Values.swift
[960/1060] Compiling GraphQL Codable+Extensions.swift
[961/1060] Compiling GraphQL GraphQL.swift
[962/1060] Compiling GraphQL GraphQLRequest.swift
[963/1060] Compiling GraphQL DispatchQueueInstrumentationWrapper.swift
[964/1060] Compiling GraphQL Instrumentation.swift
[965/1060] Compiling GraphQL LoneSchemaDefinitionRule.swift
[966/1060] Compiling GraphQL NoFragmentCyclesRule.swift
[967/1060] Compiling GraphQL NoUndefinedVariablesRule.swift
[968/1060] Compiling GraphQL NoUnusedFragmentsRule.swift
[969/1060] Compiling GraphQL NoUnusedVariablesRule.swift
[970/1060] Compiling GraphQL PossibleFragmentSpreadsRule.swift
[971/1060] Compiling GraphQL PossibleTypeExtensionsRule.swift
[972/1060] Compiling GraphQL ProvidedRequiredArgumentsOnDirectivesRule.swift
[973/1060] Compiling GraphQL ProvidedRequiredArgumentsRule.swift
[974/1060] Compiling GraphQL ScalarLeafsRule.swift
[983/1060] Compiling GraphQL IsValidValue.swift
[984/1060] Compiling GraphQL Keyable.swift
[985/1060] Compiling GraphQL NIO+Extensions.swift
[986/1060] Compiling GraphQL PrintSchema.swift
[987/1060] Compiling GraphQL TypeComparators.swift
[988/1060] Compiling GraphQL TypeFromAST.swift
[989/1060] Compiling GraphQL TypeInfo.swift
[990/1060] Compiling GraphQL ValueFromAST.swift
[991/1060] Compiling GraphQL ValueFromASTUntyped.swift
[992/1060] Compiling GraphQL NoDeprecatedCustomRule.swift
[993/1060] Compiling GraphQL NoSchemaIntrospectionCustomRule.swift
[994/1060] Compiling GraphQL ExecutableDefinitionsRule.swift
[995/1060] Compiling GraphQL FieldsOnCorrectTypeRule.swift
[996/1060] Compiling GraphQL FragmentsOnCompositeTypesRule.swift
[997/1060] Compiling GraphQL KnownArgumentNamesOnDirectivesRule.swift
[998/1060] Compiling GraphQL KnownArgumentNamesRule.swift
[999/1060] Compiling GraphQL KnownDirectivesRule.swift
[1000/1060] Compiling GraphQL KnownFragmentNamesRule.swift
[1001/1060] Compiling GraphQL KnownTypeNamesRule.swift
[1002/1060] Compiling GraphQL LoneAnonymousOperationRule.swift
[1019/1060] Emitting module MultipartKit
[1022/1062] Emitting module GraphQL
[1023/1101] Compiling NIOExtras WritePCAPHandler.swift
[1024/1127] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1025/1127] Compiling NIOHTTP2 HasLocalSettings.swift
[1026/1135] Compiling NIOFileSystem Exports.swift
[1027/1135] Emitting module NIOFileSystem
[1028/1135] Emitting module _NIOFileSystemFoundationCompat
[1029/1135] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[1030/1135] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[1031/1135] Compiling NIOHTTP2 SendingDataState.swift
[1032/1135] Compiling NIOHTTP2 SendingGoawayState.swift
[1033/1135] Compiling NIOHTTP2 SendingHeadersState.swift
[1034/1135] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1035/1135] Compiling NIOHTTP2 SendingRstStreamState.swift
[1036/1135] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1038/1135] Compiling WebSocketKit WebSocketHandler.swift
[1039/1135] Compiling WebSocketKit WebSocket.swift
[1040/1135] Compiling WebSocketKit WebSocket+Connect.swift
[1041/1135] Compiling WebSocketKit Exports.swift
[1042/1135] Compiling WebSocketKit WebSocket+Concurrency.swift
[1043/1135] Emitting module WebSocketKit
[1044/1135] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[1045/1135] Compiling WebSocketKit WebSocketClient.swift
[1046/1135] Compiling NIOHTTP2 HTTP2Settings.swift
[1047/1135] Compiling NIOHTTP2 HTTP2Stream.swift
[1048/1135] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1049/1135] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1050/1135] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1051/1135] Compiling NIOHTTP2 HTTP2StreamID.swift
[1052/1135] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1053/1135] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1054/1135] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1055/1135] Compiling NIOHTTP2 InboundEventBuffer.swift
[1056/1135] Compiling NIOHTTP2 InboundWindowManager.swift
[1057/1135] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1058/1141] Emitting module NIOHTTP2
[1059/1141] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1060/1141] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1061/1141] Compiling NIOHTTP2 MayReceiveFrames.swift
[1062/1141] Compiling NIOHTTP2 ReceivingDataState.swift
[1063/1141] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1064/1141] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1065/1141] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1066/1141] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[1067/1141] Compiling NIOHTTP2 HTTP2Frame.swift
[1068/1141] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[1069/1141] Compiling NIOHTTP2 HTTP2FrameParser.swift
[1070/1141] Compiling NIOHTTP2 HTTP2PingData.swift
[1071/1141] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[1072/1141] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1073/1141] Compiling NIOHTTP2 StreamChannelList.swift
[1074/1141] Compiling NIOHTTP2 StreamMap.swift
[1075/1141] Compiling NIOHTTP2 StreamStateMachine.swift
[1076/1141] Compiling NIOHTTP2 UnsafeTransfer.swift
[1077/1141] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1078/1141] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1079/1141] Compiling NIOHTTP2 QuiescingState.swift
[1080/1141] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1081/1141] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1082/1141] Compiling NIOHTTP2 StateMachineResult.swift
[1083/1141] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1084/1141] Compiling NIOHTTP2 DOSHeuristics.swift
[1086/1141] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1087/1141] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1091/1141] Compiling NIOHTTP2 HasRemoteSettings.swift
[1092/1141] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1093/1141] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1094/1141] Compiling NIOHTTP2 MaySendFrames.swift
[1099/1141] Compiling NIOHTTP2 Error+Any.swift
[1100/1141] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1101/1141] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1102/1141] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1103/1141] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1104/1141] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[1105/1141] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[1106/1141] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[1107/1141] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[1108/1141] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[1109/1141] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[1110/1141] Compiling NIOHTTP2 HTTP2Error.swift
[1111/1141] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1132/1203] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[1133/1203] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[1134/1203] Compiling AsyncHTTPClient AsyncLazySequence.swift
[1135/1203] Compiling AsyncHTTPClient HTTPClient+execute.swift
[1136/1203] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[1137/1203] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[1138/1203] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[1139/1209] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1140/1209] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1141/1209] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1142/1209] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1143/1209] Compiling AsyncHTTPClient Transaction.swift
[1144/1209] Compiling AsyncHTTPClient Base64.swift
[1145/1209] Compiling AsyncHTTPClient BasicAuth.swift
[1146/1209] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1147/1209] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1148/1209] Compiling AsyncHTTPClient ConnectionPool.swift
[1149/1209] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1150/1209] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1151/1209] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1152/1209] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1153/1209] Emitting module AsyncHTTPClient
[1154/1209] Compiling AsyncHTTPClient SSLContextCache.swift
[1155/1209] Compiling AsyncHTTPClient Scheme.swift
[1156/1209] Compiling AsyncHTTPClient Singleton.swift
[1157/1209] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1158/1209] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[1159/1209] Compiling AsyncHTTPClient Utils.swift
[1160/1209] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1161/1209] Compiling AsyncHTTPClient TLSConfiguration.swift
[1162/1209] Compiling AsyncHTTPClient RedirectState.swift
[1163/1209] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1164/1209] Compiling AsyncHTTPClient RequestBag.swift
[1165/1209] Compiling AsyncHTTPClient RequestValidation.swift
[1166/1209] Compiling AsyncHTTPClient HTTP1Connection.swift
[1167/1209] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1168/1209] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1169/1209] Compiling AsyncHTTPClient HTTP2Connection.swift
[1170/1209] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1171/1209] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1172/1209] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1173/1209] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1174/1209] Compiling AsyncHTTPClient ConnectionTarget.swift
[1175/1209] Compiling AsyncHTTPClient DeconstructedURL.swift
[1176/1209] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1177/1209] Compiling AsyncHTTPClient FoundationExtensions.swift
[1178/1209] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1179/1209] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1180/1209] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1181/1209] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1182/1209] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1183/1209] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1184/1209] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1185/1209] Compiling AsyncHTTPClient RequestBodyLength.swift
[1186/1209] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1187/1209] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[1188/1209] Compiling AsyncHTTPClient HTTPClient.swift
[1189/1209] Compiling AsyncHTTPClient HTTPHandler.swift
[1190/1209] Compiling AsyncHTTPClient LRUCache.swift
[1191/1209] Compiling AsyncHTTPClient NIOLoopBound+Execute.swift
[1192/1209] Compiling AsyncHTTPClient NWErrorHandler.swift
[1193/1209] Compiling AsyncHTTPClient RequestOptions.swift
[1194/1209] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1195/1209] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1196/1209] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1197/1209] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1198/1209] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1199/1209] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1210/1458] Compiling Graphiti Field.swift
[1211/1458] Compiling Graphiti FieldComponent.swift
[1212/1458] Compiling Graphiti FieldComponentBuilder.swift
[1213/1458] Compiling Graphiti AsyncResolve.swift
[1214/1458] Compiling Graphiti ConcurrentResolve.swift
[1215/1458] Compiling Graphiti SimpleAsyncResolve.swift
[1216/1463] Compiling Graphiti Edge.swift
[1217/1463] Compiling Graphiti PageInfo.swift
[1218/1463] Compiling Graphiti BackwardPaginationArguments.swift
[1219/1463] Compiling Graphiti ForwardPaginationArguments.swift
[1220/1463] Compiling Graphiti PaginationArguments.swift
[1221/1463] Compiling Graphiti NoContext.swift
[1222/1463] Compiling Graphiti AnyType.swift
[1223/1463] Compiling Graphiti Reflection.swift
[1224/1463] Compiling Graphiti TypeProvider.swift
[1225/1463] Compiling Graphiti Wrappers.swift
[1226/1463] Compiling Graphiti Enum.swift
[1227/1463] Compiling Graphiti Any.swift
[1228/1463] Compiling Graphiti Entity.swift
[1229/1463] Compiling Graphiti Key.swift
[1230/1463] Compiling Graphiti KeyComponent.swift
[1231/1463] Compiling Graphiti Type+Key.swift
[1232/1463] Compiling Graphiti Queries.swift
[1233/1463] Compiling Graphiti Service.swift
[1234/1463] Compiling Graphiti API.swift
[1235/1463] Compiling Graphiti Argument.swift
[1236/1463] Compiling Graphiti ArgumentComponent.swift
[1237/1463] Compiling Graphiti ArgumentComponentBuilder.swift
[1238/1463] Compiling Graphiti NoArguments.swift
[1239/1463] Compiling Graphiti Coders.swift
[1240/1463] Emitting module Graphiti
[1241/1463] Compiling Graphiti Component.swift
[1242/1463] Compiling Graphiti ComponentBuilder.swift
[1243/1463] Compiling Graphiti TypeComponent.swift
[1244/1463] Compiling Graphiti TypeComponentBuilder.swift
[1245/1463] Compiling Graphiti Connection.swift
[1246/1463] Compiling Graphiti ConnectionType.swift
[1247/1463] Compiling Graphiti SyncResolve.swift
[1248/1463] Compiling Graphiti Input.swift
[1249/1463] Compiling Graphiti InputField.swift
[1250/1463] Compiling Graphiti InputFieldComponent.swift
[1251/1463] Compiling Graphiti InputFieldComponentBuilder.swift
[1252/1463] Compiling Graphiti Interface.swift
[1253/1463] Compiling Graphiti PartialSchema.swift
[1254/1463] Compiling Graphiti SchemaBuilder.swift
[1255/1463] Compiling Graphiti SubscribeField.swift
[1256/1463] Compiling Graphiti SubscribeResolve.swift
[1257/1463] Compiling Graphiti Subscription.swift
[1258/1463] Compiling Graphiti Mutation.swift
[1259/1463] Compiling Graphiti Query.swift
[1260/1463] Compiling Graphiti Scalar.swift
[1261/1463] Compiling Graphiti Schema.swift
[1262/1463] Compiling Graphiti SchemaTypeProvider.swift
[1263/1463] Compiling Graphiti Type.swift
[1264/1463] Compiling Graphiti Union.swift
[1265/1463] Compiling Graphiti NoIntrospectionRule.swift
[1266/1463] Compiling Graphiti Value.swift
[1267/1463] Compiling Graphiti ValueBuilder.swift
[1311/1484] Compiling Vapor PlaintextDecoder.swift
[1312/1484] Compiling Vapor PlaintextEncoder.swift
[1313/1484] Compiling Vapor URLQueryCoders.swift
[1314/1484] Compiling Vapor URLQueryContainer.swift
[1315/1484] Compiling Vapor Core.swift
[1316/1484] Compiling Vapor Running.swift
[1317/1484] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[1318/1484] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[1319/1484] Compiling Vapor DotEnvFile+load.swift
[1320/1484] Compiling Vapor Routes+caseInsenstive.swift
[1321/1484] Compiling Vapor Validatable+validate.swift
[1322/1484] Compiling Vapor Environment+Process.swift
[1323/1484] Compiling Vapor Environment+Secret.swift
[1324/1484] Compiling Vapor Environment.swift
[1325/1484] Compiling Vapor Abort.swift
[1326/1484] Compiling Vapor AbortError.swift
[1327/1484] Compiling Vapor DebuggableError.swift
[1328/1484] Compiling Vapor Demangler.swift
[1329/1484] Compiling Vapor ErrorSource.swift
[1330/1484] Compiling Vapor StackTrace.swift
[1331/1484] Compiling Vapor Exports.swift
[1332/1484] Compiling Vapor Application+HTTP.swift
[1333/1484] Compiling Vapor SessionsMiddleware.swift
[1334/1484] Compiling Vapor URLEncodedFormData.swift
[1335/1484] Compiling Vapor URLEncodedFormDecoder.swift
[1336/1484] Compiling Vapor URLEncodedFormEncoder.swift
[1337/1484] Compiling Vapor URLEncodedFormError.swift
[1338/1484] Compiling Vapor URLEncodedFormParser.swift
[1339/1484] Compiling Vapor URLEncodedFormSerializer.swift
[1340/1484] Compiling Vapor URLQueryFragmentConvertible.swift
[1341/1484] Compiling Vapor AnyResponse.swift
[1342/1484] Compiling Vapor Array+Random.swift
[1343/1484] Compiling Vapor Base32.swift
[1344/1484] Compiling Vapor Base64.swift
[1345/1484] Compiling Vapor BaseN.swift
[1346/1484] Compiling Vapor BasicCodingKey.swift
[1347/1484] Compiling Vapor ByteCount.swift
[1348/1484] Compiling Vapor Bytes+Hex.swift
[1349/1484] Compiling Vapor Bytes+SecureCompare.swift
[1350/1484] Compiling Vapor Collection+Safe.swift
[1351/1484] Compiling Vapor DataProtocol+Copy.swift
[1352/1484] Compiling Vapor DecoderUnwrapper.swift
[1353/1484] Compiling Vapor DirectoryConfiguration.swift
[1354/1484] Compiling Vapor Case.swift
[1355/1484] Compiling Vapor CharacterSet.swift
[1356/1484] Compiling Vapor Count.swift
[1357/1484] Compiling Vapor Custom.swift
[1358/1484] Compiling Vapor Email.swift
[1359/1484] Compiling Vapor Empty.swift
[1360/1484] Compiling Vapor In.swift
[1361/1484] Compiling Vapor Nil.swift
[1362/1484] Compiling Vapor NilIgnoring.swift
[1363/1484] Compiling Vapor Not.swift
[1364/1484] Compiling Vapor Or.swift
[1365/1484] Compiling Vapor Pattern.swift
[1366/1484] Compiling Vapor Range.swift
[1367/1484] Compiling Vapor URL.swift
[1368/1484] Compiling Vapor Valid.swift
[1369/1484] Compiling Vapor Application+Views.swift
[1370/1484] Compiling Vapor PlaintextRenderer.swift
[1371/1484] Compiling Vapor Request+View.swift
[1372/1484] Compiling Vapor View.swift
[1373/1484] Compiling Vapor ViewRenderer.swift
[1374/1484] Compiling Vapor _Deprecations.swift
[1375/1484] Emitting module Vapor
[1376/1484] Compiling Vapor DotEnv.swift
[1377/1484] Compiling Vapor Extendable.swift
[1378/1484] Compiling Vapor File.swift
[1379/1484] Compiling Vapor FileIO.swift
[1380/1484] Compiling Vapor LifecycleHandler.swift
[1381/1484] Compiling Vapor OptionalType.swift
[1382/1484] Compiling Vapor RFC1123.swift
[1383/1484] Compiling Vapor SocketAddress+Hostname.swift
[1384/1484] Compiling Vapor Storage.swift
[1385/1484] Compiling Vapor String+IsIPAddress.swift
[1386/1484] Compiling Vapor Thread.swift
[1387/1484] Compiling Vapor URI.swift
[1388/1484] Compiling Vapor RangeResult.swift
[1389/1484] Compiling Vapor Validatable.swift
[1390/1484] Compiling Vapor Validation.swift
[1391/1484] Compiling Vapor ValidationKey.swift
[1392/1484] Compiling Vapor Validations.swift
[1393/1484] Compiling Vapor ValidationsError.swift
[1394/1484] Compiling Vapor Validator.swift
[1395/1484] Compiling Vapor ValidatorResult.swift
[1396/1484] Compiling Vapor And.swift
[1397/1484] Compiling Vapor FormDataDecoder+Content.swift
[1398/1484] Compiling Vapor FormDataEncoder+Content.swift
[1399/1484] Compiling Vapor Application+Password.swift
[1400/1484] Compiling Vapor Application+Passwords.swift
[1401/1484] Compiling Vapor AsyncPasswordHasher.swift
[1402/1484] Compiling Vapor BcryptHasher.swift
[1403/1484] Compiling Vapor PasswordHasher.swift
[1404/1484] Compiling Vapor PlaintextHasher.swift
[1405/1484] Compiling Vapor Request+Password.swift
[1406/1484] Compiling Vapor Redirect.swift
[1407/1484] Compiling Vapor Request+Body.swift
[1408/1484] Compiling Vapor Request+BodyStream.swift
[1409/1484] Compiling Vapor Request.swift
[1410/1484] Compiling Vapor Application+Responder.swift
[1411/1484] Compiling Vapor DefaultResponder.swift
[1412/1484] Compiling Vapor Response+Body.swift
[1413/1484] Compiling Vapor Response.swift
[1414/1484] Compiling Vapor ResponseCodable.swift
[1415/1484] Compiling Vapor Application+Routes.swift
[1416/1484] Compiling Vapor Parameters+Require.swift
[1417/1484] Compiling Vapor Request+WebSocket.swift
[1418/1484] Compiling Vapor Route.swift
[1419/1484] Compiling Vapor ServeCommand.swift
[1420/1484] Compiling Vapor AnyResponse+Concurrency.swift
[1421/1484] Compiling Vapor AsyncBasicResponder.swift
[1422/1484] Compiling Vapor AsyncMiddleware.swift
[1423/1484] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[1424/1484] Compiling Vapor AsyncSessionDriver.swift
[1425/1484] Compiling Vapor Authentication+Concurrency.swift
[1426/1484] Compiling Vapor Cache+Concurrency.swift
[1427/1484] Compiling Vapor Client+Concurrency.swift
[1428/1484] Compiling Vapor RequestBody+Concurrency.swift
[1429/1484] Compiling Vapor Responder+Concurrency.swift
[1430/1484] Compiling Vapor ResponseCodable+Concurrency.swift
[1431/1484] Compiling Vapor RoutesBuilder+Concurrency.swift
[1432/1484] Compiling Vapor ViewRenderer+Concurrency.swift
[1433/1484] Compiling Vapor WebSocket+Concurrency.swift
[1434/1484] Compiling Vapor ContainerGetPathExecutor.swift
[1435/1484] Compiling Vapor Content.swift
[1436/1484] Compiling Vapor ContentCoders.swift
[1437/1484] Compiling Vapor ContentConfiguration.swift
[1438/1484] Compiling Vapor ContentContainer.swift
[1439/1484] Compiling Vapor JSONCoder+Custom.swift
[1440/1484] Compiling Vapor JSONCoders+Content.swift
[1455/1484] Compiling Vapor Application+Clients.swift
[1456/1484] Compiling Vapor Client.swift
[1457/1484] Compiling Vapor ClientRequest.swift
[1458/1484] Compiling Vapor ClientResponse.swift
[1459/1484] Compiling Vapor Request+Client.swift
[1460/1484] Compiling Vapor BootCommand.swift
[1461/1484] Compiling Vapor CommandContext+Application.swift
[1462/1484] Compiling Vapor RoutesCommand.swift
[1463/1484] Compiling Vapor BasicResponder.swift
[1464/1484] Compiling Vapor BodyStream.swift
[1465/1484] Compiling Vapor Application+HTTP+Client.swift
[1466/1484] Compiling Vapor EventLoopHTTPClient.swift
[1467/1484] Compiling Vapor EndpointCache.swift
[1468/1484] Compiling Vapor HTTPMethod+String.swift
[1469/1484] Compiling Vapor HTTPStatus.swift
[1470/1484] Compiling Vapor HTTPCookies.swift
[1471/1484] Compiling Vapor HTTPHeaderCacheControl.swift
[1472/1484] Compiling Vapor HTTPHeaderExpires.swift
[1473/1484] Compiling Vapor HTTPHeaderLastModified.swift
[1474/1484] Compiling Vapor HTTPHeaders+Cache.swift
[1475/1484] Compiling Vapor HTTPHeaders+Connection.swift
[1476/1484] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[1477/1484] Compiling Vapor HTTPHeaders+ContentRange.swift
[1478/1484] Compiling Vapor HTTPHeaders+Directive.swift
[1479/1484] Compiling Vapor HTTPHeaders+Forwarded.swift
[1480/1484] Compiling Vapor HTTPHeaders+Link.swift
[1481/1484] Compiling Vapor HTTPHeaders+Name.swift
[1482/1484] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[1483/1484] Compiling Vapor HTTPHeaders.swift
[1484/1484] Compiling Vapor HTTPMediaType.swift
[1485/1541] Compiling Pioneer Dictionary+SafeOperation.swift
[1486/1541] Compiling Pioneer OrderedDictionary+Dictionary.swift
[1487/1541] Compiling Pioneer Expression.swift
[1488/1541] Compiling Pioneer Actor+Task.swift
[1489/1541] Compiling Pioneer Task+Starvation.swift
[1490/1541] Compiling Pioneer UInt64+Nanoseconds.swift
[1491/1541] Compiling Pioneer Map+Decoder.swift
[1492/1547] Compiling Pioneer Timeout.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
| `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 | public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 | headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
186 |
187 | /// The output format to produce. Defaults to `[]`.
188 | open var outputFormatting: OutputFormatting = []
| `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
189 |
190 | /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1493/1547] Compiling Pioneer Validation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
| `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 | public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 | headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
186 |
187 | /// The output format to produce. Defaults to `[]`.
188 | open var outputFormatting: OutputFormatting = []
| `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
189 |
190 | /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1494/1547] Compiling Pioneer CORSMIddleware+BananaCakePop.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
| `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 | public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 | headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
186 |
187 | /// The output format to produce. Defaults to `[]`.
188 | open var outputFormatting: OutputFormatting = []
| `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
189 |
190 | /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1495/1547] Compiling Pioneer CORSMiddleware+ApolloSandbox.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
| `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 | public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 | headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
186 |
187 | /// The output format to produce. Defaults to `[]`.
188 | open var outputFormatting: OutputFormatting = []
| `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
189 |
190 | /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1496/1547] Compiling Pioneer EnvironmentVariables.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
| `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 | public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 | headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
186 |
187 | /// The output format to produce. Defaults to `[]`.
188 | open var outputFormatting: OutputFormatting = []
| `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
189 |
190 | /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1497/1547] Compiling Pioneer GraphQLJSONEncoder+ContentEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
| `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 | public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 | headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
186 |
187 | /// The output format to produce. Defaults to `[]`.
188 | open var outputFormatting: OutputFormatting = []
| `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
189 |
190 | /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1498/1547] Emitting module Pioneer
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Request/GraphQLJSONEncoder+ContentEncoder.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
9 | import Vapor
10 |
11 | extension GraphQLJSONEncoder: Vapor.ContentEncoder {
| `- warning: conformance to 'Sendable' must occur in the same source file as class 'GraphQLJSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 | public func encode<E>(_ encodable: E, to body: inout NIOCore.ByteBuffer, headers: inout NIOHTTP1.HTTPHeaders) throws where E: Encodable {
13 | headers.contentType = .json
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/GraphQLJSONEncoder.swift:188:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
186 |
187 | /// The output format to produce. Defaults to `[]`.
188 | open var outputFormatting: OutputFormatting = []
| `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'GraphQLJSONEncoder' is mutable; this is an error in the Swift 6 language mode
189 |
190 | /// The strategy to use in encoding dates. Defaults to `.deferredToDate`.
[1499/1547] Compiling Pioneer AsyncEventStream+Future+GraphQLResult.swift
[1500/1547] Compiling Pioneer AsyncSequence+EventStream.swift
[1501/1547] Compiling Pioneer AsyncStream+Statics.swift
[1502/1547] Compiling Pioneer EventStream+Static.swift
[1503/1547] Compiling Pioneer PubSub.swift
[1504/1547] Compiling Pioneer Interval.swift
[1505/1547] Compiling Pioneer Pioneer+Graphiti.swift
[1506/1547] Compiling Pioneer Data+Json.swift
[1507/1547] Compiling Pioneer BuiltinTypes.swift
[1508/1547] Compiling Pioneer Field+AsyncAwait.swift
[1509/1547] Compiling Pioneer Field+Middleware.swift
[1510/1547] Compiling Pioneer GraphQL+Execution.swift
[1511/1547] Compiling Pioneer GraphQLError+Error.swift
[1512/1547] Compiling Pioneer Request+GraphQLRequest.swift
[1513/1547] Compiling Pioneer Request+PathComponent.swift
[1514/1547] Compiling Pioneer Request+WebSocket.swift
[1515/1547] Compiling Pioneer Request+WebsocketContext.swift
[1516/1547] Compiling Pioneer GraphQLResult+Content.swift
[1517/1547] Compiling Pioneer Response+GraphQLError.swift
[1518/1547] Compiling Pioneer HttpStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
[1519/1547] Compiling Pioneer IDE.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
[1520/1547] Compiling Pioneer Pioneer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
[1521/1547] Compiling Pioneer AsyncEventStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
[1522/1547] Compiling Pioneer AsyncPubSub.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
[1523/1547] Compiling Pioneer Broadcast.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:18:29: warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
16 | public struct Pioneer<Resolver: Sendable, Context: Sendable>: Sendable {
17 | /// Graphiti schema used to execute operations
18 | public private(set) var schema: GraphQLSchema
| `- warning: stored property 'schema' of 'Sendable'-conforming generic struct 'Pioneer' has non-sendable type 'GraphQLSchema'; this is an error in the Swift 6 language mode
19 | /// Resolver used by the GraphQL schema
20 | public private(set) var resolver: Resolver
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Type/Schema.swift:30:20: note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
28 | *
29 | */
30 | public final class GraphQLSchema {
| `- note: class 'GraphQLSchema' does not conform to the 'Sendable' protocol
31 | let description: String?
32 | let extensions: [GraphQLSchemaExtensions]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Pioneer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
7 |
8 | import Foundation
9 | import struct GraphQL.GraphQLError
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
10 | import struct GraphQL.GraphQLResult
11 | import class GraphQL.GraphQLSchema
[1524/1547] Compiling Pioneer Pioneer+WebSocket.swift
[1525/1547] Compiling Pioneer Intent.swift
[1526/1547] Compiling Pioneer Payload.swift
[1527/1547] Compiling Pioneer Pioneer+WebSocketable.swift
[1528/1547] Compiling Pioneer WebSocketClient.swift
[1529/1547] Compiling Pioneer WebSocketable.swift
[1530/1547] Compiling Pioneer WebSocket+WebSocketable.swift
[1531/1547] Compiling Pioneer Pioneer+Http.swift
[1532/1547] Compiling Pioneer Pioneer+IDE.swift
[1533/1547] Compiling Pioneer Pioneer+Standalone.swift
[1534/1547] Compiling Pioneer Pioneer+Vapor+Void.swift
[1535/1547] Compiling Pioneer Pioneer+Vapor.swift
[1536/1547] Compiling Pioneer GraphQLMessage.swift
[1537/1547] Compiling Pioneer GraphQLMiddleware.swift
[1538/1547] Compiling Pioneer GraphQLRequest.swift
[1539/1547] Compiling Pioneer GraphQLViolation.swift
[1540/1547] Compiling Pioneer CSRFProtections.swift
[1541/1547] Compiling Pioneer HTTPGraphQL.swift
[1542/1547] Compiling Pioneer Drone.swift
[1543/1547] Compiling Pioneer Probe.swift
[1544/1547] Compiling Pioneer GraphQLWs.swift
[1545/1547] Compiling Pioneer SubProtocol.swift
[1546/1547] Compiling Pioneer SubscriptionsTransportWs.swift
[1547/1547] Compiling Pioneer WebsocketProtocol.swift
Build of target: 'Pioneer' complete! (23.27s)
858
6 /Users/admin/builder/spi-builder-workspace/.docs/d-exclaimation/pioneer/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/d-exclaimation/pioneer/main
File count: 858
Doc size: 6.0MB
Preparing doc bundle ...
Uploading prod-d-exclaimation-pioneer-main-652d5efa.zip to s3://spi-docs-inbox/prod-d-exclaimation-pioneer-main-652d5efa.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [41%]
Copying... [51%]
Copying... [61%]
Copying... [71%]
Copying... [81%]
Copying... [91%]
Copying... [100%]
Done.