Build Information
Successful build of Pioneer, reference 1.5.0 (6f3fff
), with Swift 6.1 for macOS (SPM) on 24 Jul 2025 15:48:53 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
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Http/HTTPGraphQL.swift:74:23: 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
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 |
[2010/2022] Compiling Pioneer HTTPGraphQL.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Http/HTTPGraphQL.swift:74:23: 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
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! (48.95s)
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/1.5.0
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'. (29.18s)
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 '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 '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 '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.33s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/d-exclaimation/pioneer/1.5.0
Updating https://github.com/GraphQLSwift/GraphQL.git
Updating https://github.com/vapor/console-kit.git
Updating https://github.com/apple/swift-distributed-tracing.git
Updating https://github.com/apple/swift-nio-extras.git
Updating https://github.com/apple/swift-collections
Updating https://github.com/apple/swift-algorithms.git
Updating https://github.com/vapor/multipart-kit.git
Updated https://github.com/apple/swift-nio-extras.git (0.50s)
Updated https://github.com/apple/swift-distributed-tracing.git (0.50s)
Updated https://github.com/GraphQLSwift/GraphQL.git (0.52s)
Updated https://github.com/vapor/console-kit.git (0.52s)
Updating https://github.com/apple/swift-certificates.git
Updating https://github.com/vapor/routing-kit.git
Updating https://github.com/apple/swift-crypto.git
Updating https://github.com/swift-server/async-http-client.git
Updated https://github.com/apple/swift-collections (0.63s)
Updated https://github.com/apple/swift-algorithms.git (0.63s)
Updated https://github.com/vapor/multipart-kit.git (0.63s)
Updating https://github.com/vapor/async-kit.git
Updating https://github.com/swift-server/swift-service-lifecycle.git
Updating https://github.com/apple/swift-atomics.git
Updated https://github.com/vapor/routing-kit.git (0.48s)
Updated https://github.com/apple/swift-certificates.git (0.48s)
Updating https://github.com/apple/swift-http-types.git
Updating https://github.com/apple/swift-nio-http2.git
Updated https://github.com/apple/swift-atomics.git (0.46s)
Updated https://github.com/swift-server/swift-service-lifecycle.git (0.46s)
Updated https://github.com/vapor/async-kit.git (0.49s)
Updating https://github.com/apple/swift-metrics.git
Updating https://github.com/apple/swift-nio.git
Updating https://github.com/GraphQLSwift/Graphiti.git
Updated https://github.com/apple/swift-nio-http2.git (0.56s)
Updated https://github.com/apple/swift-http-types.git (0.56s)
Updated https://github.com/apple/swift-metrics.git (0.47s)
Updating https://github.com/apple/swift-asn1.git
Updating https://github.com/apple/swift-nio-ssl.git
Updating https://github.com/apple/swift-log.git
Updated https://github.com/GraphQLSwift/Graphiti.git (0.48s)
Updating https://github.com/vapor/websocket-kit.git
Updated https://github.com/swift-server/async-http-client.git (1.30s)
Updated https://github.com/apple/swift-crypto.git (1.30s)
Updating https://github.com/apple/swift-http-structured-headers.git
Updating https://github.com/vapor/vapor.git
Updated https://github.com/apple/swift-nio.git (0.88s)
Updating https://github.com/apple/swift-service-context.git
Updated https://github.com/vapor/websocket-kit.git (0.47s)
Updated https://github.com/apple/swift-nio-ssl.git (0.55s)
Updated https://github.com/apple/swift-asn1.git (0.55s)
Updating https://github.com/apple/swift-system.git
Updating https://github.com/apple/swift-async-algorithms.git
Updating https://github.com/apple/swift-numerics.git
Updated https://github.com/apple/swift-log.git (0.71s)
Updating https://github.com/apple/swift-nio-transport-services.git
Updated https://github.com/apple/swift-service-context.git (0.43s)
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updated https://github.com/vapor/vapor.git (0.68s)
Updated https://github.com/apple/swift-http-structured-headers.git (0.68s)
Updated https://github.com/apple/swift-system.git (0.45s)
Updated https://github.com/apple/swift-async-algorithms.git (0.54s)
Updated https://github.com/apple/swift-numerics.git (0.59s)
Updated https://github.com/apple/swift-nio-transport-services.git (0.47s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.73s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.115.1 (3.92s)
Computing version for https://github.com/GraphQLSwift/Graphiti.git
Computed https://github.com/GraphQLSwift/Graphiti.git at 2.1.0 (0.49s)
Computing version for https://github.com/GraphQLSwift/GraphQL.git
Computed https://github.com/GraphQLSwift/GraphQL.git at 3.0.2 (0.48s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.46s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.1 (0.46s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.16.1 (0.47s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.57s)
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.49s)
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.52s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.0 (0.55s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.52s)
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.57s)
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.58s)
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.67s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.84.0 (0.73s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.2 (0.51s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (1.15s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.2 (0.54s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.20.0 (0.63s)
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.49s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.2.0 (0.55s)
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.49s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.61s)
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.54s)
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.51s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.4.0 (0.63s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.11.0 (0.65s)
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.50s)
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.49s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (0.49s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (0.61s)
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.65s)
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
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
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 GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit DeclarationFragments.swift
[11/57] Compiling SymbolKit Fragment.swift
[12/57] Compiling SymbolKit FragmentKind.swift
[13/57] Compiling SymbolKit FunctionParameter.swift
[14/57] Compiling SymbolKit FunctionSignature.swift
[15/57] Emitting module SymbolKit
[16/57] Compiling SymbolKit Identifier.swift
[17/57] Compiling SymbolKit KindIdentifier.swift
[18/57] Compiling SymbolKit Location.swift
[19/57] Compiling SymbolKit Mutability.swift
[20/57] Compiling SymbolKit Names.swift
[21/57] Compiling SymbolKit SPI.swift
[22/57] Compiling SymbolKit Snippet.swift
[23/57] Compiling SymbolKit Extension.swift
[24/57] Compiling SymbolKit SourceRange.swift
[25/57] Compiling SymbolKit Metadata.swift
[26/57] Compiling SymbolKit Module.swift
[27/57] Compiling SymbolKit OperatingSystem.swift
[28/57] Compiling SymbolKit Platform.swift
[29/57] Compiling SymbolKit SemanticVersion.swift
[30/57] Compiling SymbolKit AccessControl.swift
[31/57] Compiling SymbolKit Availability.swift
[32/57] Compiling SymbolKit AvailabilityItem.swift
[33/57] Compiling SymbolKit Domain.swift
[34/57] Compiling SymbolKit Relationship.swift
[35/57] Compiling SymbolKit RelationshipKind.swift
[36/57] Compiling SymbolKit SourceOrigin.swift
[37/57] Compiling SymbolKit GenericConstraints.swift
[38/57] Compiling SymbolKit Swift.swift
[39/57] Compiling SymbolKit Mixin+Equals.swift
[40/57] Compiling SymbolKit Mixin+Hash.swift
[41/57] Compiling SymbolKit Mixin.swift
[42/57] Compiling SymbolKit LineList.swift
[43/57] Compiling SymbolKit Position.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 SnippetParser.swift
[53/57] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (7.69s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/149] Compiling ServiceContextModule ServiceContextKey.swift
[3/149] Emitting module ServiceContextModule
[4/149] Compiling ServiceContextModule ServiceContext.swift
[5/149] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[6/150] Compiling InternalCollectionsUtilities Descriptions.swift
[7/150] Compiling InternalCollectionsUtilities Debugging.swift
[8/150] Compiling RealModule Real.swift
[9/150] Compiling RealModule Float80+Real.swift
[10/151] Compiling Logging MetadataProvider.swift
[11/151] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[12/151] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[13/151] Compiling RealModule AlgebraicField.swift
[14/151] Compiling RealModule RealFunctions.swift
[15/151] Compiling NIOConcurrencyHelpers NIOLock.swift
[16/151] Compiling RealModule ElementaryFunctions.swift
[17/151] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[18/170] Compiling RealModule Float16+Real.swift
[19/170] Compiling RealModule Float+Real.swift
[20/170] Emitting module Logging
[21/170] Compiling RealModule AugmentedArithmetic.swift
[22/170] Compiling RealModule ApproximateEquality.swift
[23/170] Compiling RealModule Double+Real.swift
[24/170] Compiling Atomics UnsafeAtomicLazyReference.swift
[25/170] Compiling Atomics IntegerOperations.swift
[26/170] Compiling SystemPackage Constants.swift
[27/170] Compiling Crypto PEMDocument.swift
[28/170] Compiling Crypto PKCS8PrivateKey.swift
[29/170] Compiling SystemPackage RawBuffer.swift
[30/170] Compiling SystemPackage Syscalls.swift
[31/170] Compiling Crypto CryptoKitErrors.swift
[32/178] Compiling Atomics AtomicInteger.swift
[33/178] Compiling Atomics AtomicOptionalWrappable.swift
[34/178] Compiling Atomics ManagedAtomicLazyReference.swift
[35/178] Compiling Atomics UnsafeAtomic.swift
[36/178] Compiling Atomics AtomicValue.swift
[37/178] Compiling Atomics AtomicMemoryOrderings.swift
[38/178] Compiling Atomics OptionalRawRepresentable.swift
[39/178] Compiling Atomics RawRepresentable.swift
[40/178] Compiling Atomics AtomicReference.swift
[41/178] Compiling Atomics AtomicStorage.swift
[42/178] Compiling Atomics AtomicBool.swift
[43/178] Compiling Atomics IntegerConformances.swift
[44/178] Compiling Atomics DoubleWord.swift
[45/178] Compiling Atomics ManagedAtomic.swift
[46/178] Compiling Atomics PointerConformances.swift
[47/178] Compiling Atomics Primitives.native.swift
[48/178] Emitting module _NIOBase64
[49/178] Compiling _NIOBase64 Base64.swift
[52/178] Emitting module RealModule
[53/178] Compiling _NIODataStructures Heap.swift
[54/178] Compiling Crypto Digest_boring.swift
[55/178] Compiling Crypto Digest.swift
[56/178] Compiling Crypto Digests.swift
[57/178] Compiling Crypto HashFunctions.swift
[58/178] Compiling Crypto HashFunctions_SHA2.swift
[59/178] Compiling Crypto HPKE-AEAD.swift
[60/178] Compiling Crypto HPKE-Ciphersuite.swift
[61/178] Compiling Crypto HPKE-KDF.swift
[62/178] Compiling Crypto HPKE-KexKeyDerivation.swift
[63/178] Compiling Crypto HPKE-LabeledExtract.swift
[64/178] Compiling Crypto HPKE-Utils.swift
[65/178] Compiling Crypto DHKEM.swift
[66/178] Compiling Crypto HPKE-KEM-Curve25519.swift
[67/178] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[68/178] Compiling Crypto HPKE-KEM.swift
[69/178] Compiling Crypto HPKE-Errors.swift
[70/178] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[71/178] Compiling Crypto HPKE.swift
[72/178] Compiling Crypto HPKE-Context.swift
[73/178] Compiling Crypto HPKE-KeySchedule.swift
[74/178] Compiling Crypto HPKE-Modes.swift
[75/178] Compiling Crypto Insecure.swift
[76/178] Compiling Crypto Insecure_HashFunctions.swift
[77/178] Compiling Crypto KEM.swift
[78/178] Compiling Crypto ECDH_boring.swift
[79/178] Compiling Crypto DH.swift
[80/178] Compiling Crypto ECDH.swift
[81/178] Compiling Crypto HKDF.swift
[82/178] Compiling Crypto AESWrap.swift
[83/178] Compiling Crypto AESWrap_boring.swift
[84/178] Compiling Crypto Ed25519_boring.swift
[85/178] Compiling Crypto NISTCurvesKeys_boring.swift
[86/178] Compiling Crypto X25519Keys_boring.swift
[87/178] Compiling Crypto AES.swift
[88/178] Compiling Crypto ECDSASignature_boring.swift
[89/178] Compiling Crypto ECDSA_boring.swift
[90/178] Compiling Crypto EdDSA_boring.swift
[91/178] Compiling Crypto ECDSA.swift
[92/178] Compiling Crypto Ed25519.swift
[93/178] Compiling Crypto Signature.swift
[94/178] Compiling Crypto CryptoKitErrors_boring.swift
[95/178] Compiling Crypto Curve25519.swift
[96/178] Compiling Crypto Ed25519Keys.swift
[97/178] Compiling Crypto NISTCurvesKeys.swift
[98/178] Compiling Crypto X25519Keys.swift
[99/178] Compiling Crypto SymmetricKeys.swift
[100/178] Compiling Crypto HMAC.swift
[101/178] Compiling Crypto MACFunctions.swift
[102/178] Compiling Crypto MessageAuthenticationCode.swift
[103/178] Compiling NIOConcurrencyHelpers lock.swift
[104/178] Emitting module CoreMetrics
[105/178] Compiling _NIODataStructures _TinyArray.swift
[106/178] Compiling _NIODataStructures PriorityQueue.swift
[107/178] Emitting module NIOConcurrencyHelpers
[108/178] Emitting module _NIODataStructures
[109/178] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[110/178] Compiling NIOConcurrencyHelpers atomics.swift
[111/178] Emitting module Crypto
[122/187] Emitting module InternalCollectionsUtilities
[125/213] Compiling Algorithms Reductions.swift
[126/213] Compiling Algorithms Rotate.swift
[127/213] Compiling Algorithms Trim.swift
[128/213] Compiling Algorithms Split.swift
[129/213] Compiling Algorithms Stride.swift
[130/213] Compiling Algorithms Grouped.swift
[131/213] Compiling Algorithms AdjacentPairs.swift
[132/213] Compiling Algorithms Chain.swift
[133/221] Compiling CoreMetrics Locks.swift
[134/221] Compiling CoreMetrics Metrics.swift
[135/221] Compiling Instrumentation NoOpInstrument.swift
[136/221] Compiling Instrumentation InstrumentationSystem.swift
[137/221] Compiling Instrumentation MultiplexInstrument.swift
[138/221] Emitting module Instrumentation
[139/221] Compiling Instrumentation Instrument.swift
[140/221] Compiling Instrumentation Locks.swift
[141/221] Compiling Atomics Unmanaged extensions.swift
[144/221] Compiling Algorithms Indexed.swift
[145/221] Compiling Algorithms Suffix.swift
[148/279] Compiling HeapModule _HeapNode.swift
[149/349] Emitting module SystemPackage
[150/349] Compiling HeapModule Heap+UnsafeHandle.swift
[151/349] Compiling HeapModule Heap.swift
[152/349] Compiling _RopeModule RopeElement.swift
[153/349] Compiling _RopeModule RopeMetric.swift
[154/349] Compiling _RopeModule BigString+Builder.swift
[155/349] Compiling _RopeModule BigString+Contents.swift
[156/349] Compiling _RopeModule BigString+Debugging.swift
[157/349] Compiling _RopeModule BigString+Index.swift
[158/427] Compiling HeapModule Heap+Invariants.swift
[159/427] Emitting module HeapModule
[160/427] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[161/427] Compiling HeapModule Heap+Descriptions.swift
[162/427] Compiling Logging LogHandler.swift
[163/427] Compiling Logging Locks.swift
[164/427] Compiling Logging Logging.swift
[165/427] Compiling HashTreeCollections _HashNode+Structural union.swift
[166/427] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[167/427] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[168/427] Compiling HashTreeCollections _RawHashNode.swift
[169/427] Compiling HashTreeCollections _UnmanagedHashNode.swift
[170/427] Compiling HashTreeCollections _UnsafePath.swift
[171/433] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[172/433] Compiling HashTreeCollections _HashNode.swift
[173/433] Compiling HashTreeCollections _HashNodeHeader.swift
[174/433] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[175/433] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[176/433] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[177/433] Compiling HashTreeCollections _HashNode+Structural merge.swift
[178/433] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[179/433] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[180/433] Compiling HashTreeCollections TreeSet+Filter.swift
[181/433] Compiling HashTreeCollections TreeSet+Hashable.swift
[182/433] Compiling HashTreeCollections TreeSet+Sendable.swift
[183/433] Compiling HashTreeCollections TreeSet+Sequence.swift
[184/433] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[185/433] Compiling Crypto SecureBytes.swift
[186/433] Compiling Crypto Zeroization.swift
[187/433] Compiling Crypto resource_bundle_accessor.swift
[188/433] Emitting module Metrics
[189/433] Compiling Metrics Metrics.swift
[190/457] Compiling DequeModule Deque+Codable.swift
[191/457] Compiling DequeModule Deque+Collection.swift
[192/457] Compiling DequeModule Deque+Testing.swift
[193/465] Compiling DequeModule Deque._Storage.swift
[194/465] Compiling DequeModule Deque+Extras.swift
[195/465] Compiling DequeModule Deque+Hashable.swift
[199/465] Compiling DequeModule Deque._UnsafeHandle.swift
[200/465] Compiling DequeModule Deque.swift
[201/465] Compiling DequeModule Deque+CustomReflectable.swift
[202/492] Compiling ConsoleKitTerminal ConsoleColor.swift
[203/492] Compiling Algorithms Windows.swift
[207/492] Compiling HashTreeCollections _HashSlot.swift
[208/492] Compiling HashTreeCollections _HashStack.swift
[209/492] Compiling HashTreeCollections _HashTreeIterator.swift
[210/492] Compiling HashTreeCollections _HashTreeStatistics.swift
[211/492] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[212/492] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[213/492] Compiling HashTreeCollections TreeDictionary+Filter.swift
[214/492] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[215/492] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[216/492] Compiling HashTreeCollections TreeDictionary+Keys.swift
[217/492] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[218/492] Compiling HashTreeCollections TreeDictionary+Merge.swift
[219/492] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[220/492] Compiling ConsoleKitTerminal Terminal.swift
[221/492] Compiling ConsoleKitTerminal ConsoleClear.swift
[222/492] Compiling ConsoleKitTerminal Console+Ask.swift
[223/492] Compiling ConsoleKitTerminal Console+Choose.swift
[224/492] Compiling ConsoleKitTerminal Console+Output.swift
[225/492] Compiling ConsoleKitTerminal Console+Wait.swift
[226/492] Compiling ConsoleKitTerminal AnySendableHashable.swift
[227/492] Compiling ConsoleKitTerminal ProgressBar.swift
[228/492] Compiling ConsoleKitTerminal Console+Clear.swift
[229/492] Compiling ConsoleKitTerminal Console+Ephemeral.swift
[230/492] Compiling ConsoleKitTerminal ANSI.swift
[231/492] Compiling ConsoleKitTerminal Console.swift
[232/492] Compiling ConsoleKitTerminal ConsoleText.swift
[233/492] Compiling ConsoleKitTerminal ConsoleTextFragment.swift
[234/492] Compiling DequeModule _DequeSlot.swift
[235/492] Compiling DequeModule _DequeBufferHeader.swift
[236/492] Compiling ConsoleKitTerminal LoadingBar.swift
[237/492] Compiling ConsoleKitTerminal ConsoleStyle.swift
[238/492] Compiling DequeModule _DequeBuffer.swift
[239/493] Compiling ConsoleKitTerminal Console+Confirm.swift
[240/493] Compiling ConsoleKitTerminal Console+Input.swift
[243/493] Compiling ConsoleKitTerminal ActivityIndicatorState.swift
[244/493] Compiling ConsoleKitTerminal CustomActivity.swift
[245/493] Compiling Tracing TracerProtocol+Legacy.swift
[246/493] Compiling Tracing TracingTime.swift
[247/493] Compiling Tracing Tracer.swift
[248/493] Compiling Tracing TracerProtocol.swift
[255/548] Compiling BitCollections BitArray+ExpressibleByStringLiteral.swift
[256/548] Compiling BitCollections BitArray+Extras.swift
[257/548] Compiling BitCollections BitArray+Fill.swift
[258/548] Compiling BitCollections BitArray+ChunkedBitsIterators.swift
[259/548] Compiling BitCollections BitArray+Codable.swift
[260/548] Compiling DequeModule _UnsafeWrappedBuffer.swift
[261/548] Compiling BitCollections BitSet._UnsafeHandle.swift
[262/548] Compiling BitCollections BitArray+BitwiseOperations.swift
[264/550] Compiling RoutingKit Router.swift
[265/550] Compiling RoutingKit PathComponent.swift
[266/550] Compiling RoutingKit AnyRouter.swift
[267/550] Compiling RoutingKit Parameters.swift
[268/550] Emitting module RoutingKit
[269/550] Compiling RoutingKit TrieRouter.swift
[270/550] Compiling BitCollections BitArray+Descriptions.swift
[271/550] Compiling BitCollections BitArray+Equatable.swift
[272/550] Compiling BitCollections BitArray+ExpressibleByArrayLiteral.swift
[276/550] Compiling BitCollections BitSet+CustomDebugStringConvertible.swift
[277/550] Compiling BitCollections BitSet+CustomReflectable.swift
[278/557] Compiling BitCollections BitArray+Initializers.swift
[279/557] Compiling BitCollections BitArray+Invariants.swift
[280/557] Compiling BitCollections BitArray+LosslessStringConvertible.swift
[281/557] Compiling BitCollections BitArray+RandomBits.swift
[282/557] Compiling BitCollections BitArray+RangeReplaceableCollection.swift
[283/557] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[284/557] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[285/557] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[288/557] Compiling BitCollections BitSet+CustomStringConvertible.swift
[289/557] Compiling BitCollections BitSet+Equatable.swift
[290/557] Compiling BitCollections BitSet+ExpressibleByArrayLiteral.swift
[291/557] Compiling BitCollections BitSet+Extras.swift
[292/557] Compiling BitCollections BitArray+Shifts.swift
[293/557] Compiling OrderedCollections OrderedSet+SubSequence.swift
[294/557] Compiling OrderedCollections OrderedSet+Testing.swift
[295/557] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[296/557] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[297/557] Compiling OrderedCollections OrderedSet.swift
[298/557] Compiling OrderedCollections _UnsafeBitset.swift
[299/557] Compiling Tracing InstrumentationSystem+Tracing.swift
[300/557] Emitting module Tracing
[301/557] Compiling Tracing SpanProtocol.swift
[302/557] Compiling Tracing NoOpTracer.swift
[315/557] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[316/557] Compiling HashTreeCollections TreeDictionary+Values.swift
[317/557] Compiling HashTreeCollections TreeDictionary.swift
[318/557] Compiling HashTreeCollections TreeSet+Codable.swift
[319/557] Compiling HashTreeCollections TreeSet+Collection.swift
[320/557] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[321/557] Compiling HashTreeCollections TreeSet+Debugging.swift
[322/557] Compiling HashTreeCollections TreeSet+Descriptions.swift
[326/557] Emitting module ConsoleKitTerminal
[336/565] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[337/565] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[338/565] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[339/565] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[340/565] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[341/565] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[349/570] Compiling BitCollections BitSet+BidirectionalCollection.swift
[350/570] Compiling BitCollections BitSet+Codable.swift
[351/570] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[352/570] Compiling BitCollections BitArray+Testing.swift
[353/570] Compiling BitCollections BitArray._UnsafeHandle.swift
[354/570] Compiling BitCollections BitArray.swift
[355/570] Compiling BitCollections BitSet+Hashable.swift
[356/570] Compiling BitCollections BitSet+Initializers.swift
[357/570] Compiling BitCollections BitSet+Invariants.swift
[358/570] Compiling BitCollections BitSet+Random.swift
[359/570] Compiling BitCollections BitSet+SetAlgebra basics.swift
[360/570] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[364/570] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[365/570] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[366/570] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[377/570] Compiling BitCollections BitSet.swift
[378/570] Compiling BitCollections Range+Utilities.swift
[379/570] Compiling BitCollections Slice+Utilities.swift
[380/570] Compiling BitCollections UInt+Tricks.swift
[381/570] Compiling BitCollections _Word.swift
[384/570] Compiling _RopeModule Rope+Remove.swift
[385/570] Compiling _RopeModule Rope+RemoveSubrange.swift
[386/570] Compiling _RopeModule Rope+Split.swift
[387/570] Compiling _RopeModule Optional Utilities.swift
[388/570] Compiling _RopeModule String Utilities.swift
[389/570] Compiling _RopeModule String.Index+ABI.swift
[390/570] Compiling _RopeModule _CharacterRecognizer.swift
[392/570] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[393/570] Compiling BitCollections BitSet.Counted.swift
[394/570] Compiling BitCollections BitSet.Index.swift
[411/570] Compiling BitCollections BitSet+SetAlgebra union.swift
[414/570] Emitting module DequeModule
[419/570] Emitting module Atomics
[432/570] Emitting module BitCollections
[468/570] Compiling ConsoleKitTerminal ConsoleLogger.swift
[469/570] Compiling ConsoleKitTerminal LoggerFragment.swift
[470/570] Compiling BitCollections BitArray+Copy.swift
[471/570] Compiling BitCollections BitArray+CustomReflectable.swift
[472/570] Compiling BitCollections BitArray+Hashable.swift
[473/570] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[474/570] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[475/570] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[476/570] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[477/570] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[478/570] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[479/570] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[480/570] Compiling HashTreeCollections TreeSet.swift
[542/570] Emitting module OrderedCollections
[552/655] Compiling NIOCore IntegerTypes.swift
[553/655] Compiling NIOCore Interfaces.swift
[554/655] Compiling NIOCore ByteBuffer-core.swift
[555/655] Compiling NIOCore ByteBuffer-hex.swift
[556/655] Compiling NIOCore ByteBuffer-int.swift
[557/655] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[558/655] Compiling NIOCore ByteBuffer-multi-int.swift
[559/655] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[560/655] Compiling NIOCore ByteBuffer-views.swift
[561/655] Compiling NIOCore Codec.swift
[562/655] Compiling NIOCore ConvenienceOptionSupport.swift
[563/655] Compiling NIOCore DeadChannel.swift
[564/655] Compiling NIOCore DispatchQueue+WithFuture.swift
[565/655] Compiling NIOCore EventLoop+Deprecated.swift
[566/655] Compiling NIOCore EventLoop+SerialExecutor.swift
[567/655] Compiling NIOCore EventLoop.swift
[568/655] Emitting module Algorithms
[569/655] Emitting module _RopeModule
[570/655] Emitting module ConsoleKitCommands
[571/657] Compiling ConsoleKitCommands Flag.swift
[572/657] Compiling ConsoleKitCommands Option.swift
[573/657] Compiling ConsoleKitCommands AsyncCommands.swift
[574/657] Compiling ConsoleKitCommands GenerateAsyncAutocompleteCommand.swift
[575/657] Compiling ConsoleKitCommands AnyCommand.swift
[576/657] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[577/657] Compiling ConsoleKitCommands Utilities.swift
[578/657] Compiling ConsoleKitCommands GenerateAutocompleteCommand.swift
[579/657] Compiling ConsoleKitCommands MergedAsyncCommandGroup.swift
[580/657] Compiling ConsoleKitCommands AnyAsyncCommand.swift
[581/657] Compiling ConsoleKitCommands AsyncCommand.swift
[582/657] Compiling ConsoleKitCommands AsyncCommandGroup.swift
[583/657] Compiling ConsoleKitCommands Argument.swift
[584/657] Compiling ConsoleKitCommands CommandSignature.swift
[585/663] Compiling ConsoleKitCommands ConsoleError.swift
[586/663] Compiling ConsoleKitCommands Completion.swift
[587/663] Compiling ConsoleKitCommands CommandGroup.swift
[588/663] Compiling ConsoleKitCommands CommandInput.swift
[589/663] Compiling ConsoleKitCommands Command.swift
[590/663] Compiling ConsoleKitCommands CommandContext.swift
[593/663] Compiling ConsoleKitCommands CommandError.swift
[594/663] Compiling ConsoleKitCommands Commands.swift
[595/663] Compiling ConsoleKitCommands Console+Run.swift
[607/663] Emitting module HashTreeCollections
[608/667] Compiling NIOCore SocketOptionProvider.swift
[609/667] Compiling NIOCore SystemCallHelpers.swift
[610/667] Compiling NIOCore TimeAmount+Duration.swift
[611/667] Compiling NIOCore TypeAssistedChannelHandler.swift
[612/667] Compiling NIOCore UniversalBootstrapSupport.swift
[613/667] Compiling NIOCore Utilities.swift
[614/667] Emitting module Collections
[615/667] Compiling Collections Collections.swift
[616/667] Emitting module ConsoleKit
[617/667] Compiling ConsoleKit Exports.swift
[625/667] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[626/667] Compiling NIOCore EventLoopFuture+Deprecated.swift
[627/667] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[628/667] Compiling NIOCore EventLoopFuture.swift
[629/667] Compiling NIOCore FileDescriptor.swift
[630/667] Compiling NIOCore FileHandle.swift
[631/667] Compiling NIOCore FileRegion.swift
[632/667] Compiling NIOCore GlobalSingletons.swift
[633/667] Compiling NIOCore IO.swift
[634/667] Compiling NIOCore IOData.swift
[635/667] Compiling NIOCore IPProtocol.swift
[636/667] Compiling NIOCore IntegerBitPacking.swift
[639/667] Compiling NIOCore Linux.swift
[640/667] Compiling NIOCore MarkedCircularBuffer.swift
[641/667] Compiling NIOCore MulticastChannel.swift
[642/667] Compiling NIOCore NIOAny.swift
[643/667] Compiling NIOCore NIOCloseOnErrorHandler.swift
[644/667] Compiling NIOCore NIOCoreSendableMetatype.swift
[645/667] Compiling NIOCore NIOLoopBound.swift
[649/667] Compiling NIOCore ChannelInvoker.swift
[650/667] Compiling NIOCore ChannelOption.swift
[651/667] Compiling NIOCore ChannelPipeline.swift
[652/667] Compiling NIOCore CircularBuffer.swift
[667/667] Emitting module NIOCore
[668/720] Compiling NIOEmbedded AsyncTestingChannel.swift
[669/720] Compiling NIOEmbedded Embedded.swift
[670/720] Emitting module NIOEmbedded
[671/720] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[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 BSDSocketAPICommon.swift
[678/725] Compiling NIOPosix BSDSocketAPIPosix.swift
[679/725] Compiling NIOPosix BSDSocketAPIWindows.swift
[680/725] Compiling NIOPosix BaseSocket.swift
[681/725] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[682/725] Compiling NIOPosix BaseSocketChannel.swift
[683/725] Compiling NIOPosix UnsafeTransfer.swift
[684/725] Compiling NIOPosix Utilities.swift
[685/725] Compiling NIOPosix VsockAddress.swift
[686/725] Compiling NIOPosix VsockChannelEvents.swift
[687/725] Compiling NIOPosix resource_bundle_accessor.swift
[688/725] Emitting module NIOPosix
[689/725] Compiling NIOPosix GetaddrinfoResolver.swift
[690/725] Compiling NIOPosix HappyEyeballs.swift
[691/725] Compiling NIOPosix IO.swift
[692/725] Compiling NIOPosix IntegerBitPacking.swift
[693/725] Compiling NIOPosix IntegerTypes.swift
[694/725] Compiling NIOPosix Linux.swift
[695/725] Compiling NIOPosix SocketProtocols.swift
[696/725] Compiling NIOPosix System.swift
[697/725] Compiling NIOPosix Thread.swift
[698/725] Compiling NIOPosix ThreadPosix.swift
[699/725] Compiling NIOPosix ThreadWindows.swift
[700/725] Compiling NIOPosix Pool.swift
[701/725] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[702/725] Compiling NIOPosix PosixSingletons.swift
[703/725] Compiling NIOPosix RawSocketBootstrap.swift
[704/725] Compiling NIOPosix Resolver.swift
[705/725] Compiling NIOPosix SelectorKqueue.swift
[706/725] Compiling NIOPosix SelectorUring.swift
[707/725] Compiling NIOPosix ServerSocket.swift
[708/725] Compiling NIOPosix Socket.swift
[709/725] Compiling NIOPosix SocketChannel.swift
[710/725] Compiling NIOPosix BaseStreamSocketChannel.swift
[711/725] Compiling NIOPosix Bootstrap.swift
[712/725] Compiling NIOPosix ControlMessage.swift
[713/725] Compiling NIOPosix DatagramVectorReadManager.swift
[714/725] Compiling NIOPosix Errors+Any.swift
[715/725] Compiling NIOPosix FileDescriptor.swift
[716/725] Compiling NIOPosix Selectable.swift
[717/725] Compiling NIOPosix SelectableChannel.swift
[718/725] Compiling NIOPosix SelectableEventLoop.swift
[719/725] Compiling NIOPosix SelectorEpoll.swift
[720/725] Compiling NIOPosix SelectorGeneric.swift
[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] Emitting module NIO
[727/786] Compiling NIO Exports.swift
[728/786] Compiling _NIOFileSystem Array+FileSystem.swift
[729/786] Compiling _NIOFileSystem ArraySlice+FileSystem.swift
[730/786] Compiling _NIOFileSystem BufferedReader.swift
[731/794] Compiling _NIOFileSystem FileInfo.swift
[732/794] Compiling _NIOFileSystem FileSystem.swift
[733/794] Compiling _NIOFileSystem FileType.swift
[734/794] Compiling _NIOFileSystem IOStrategy.swift
[735/794] Compiling _NIOFileSystem FileHandleProtocol.swift
[736/794] Compiling _NIOFileSystem FileSystemError+Syscall.swift
[737/794] Compiling _NIOFileSystem BufferedOrAnyStream.swift
[738/811] Compiling _NIOFileSystem FileSystemError.swift
[739/811] Compiling _NIOFileSystem FileSystemProtocol.swift
[740/811] Compiling _NIOFileSystem FileChunks.swift
[741/811] Compiling _NIOFileSystem FileHandle.swift
[742/828] Compiling _NIOFileSystem UnsafeTransfer.swift
[743/828] Compiling _NIOFileSystem ParallelDirCopy.swift
[744/828] Compiling _NIOFileSystem ParallelRemoval.swift
[745/828] Compiling _NIOFileSystem String+UnsafeUnititializedCapacity.swift
[746/922] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[747/922] Compiling NIOSOCKS ClientStateMachine.swift
[748/922] Compiling NIOSOCKS SOCKSResponse.swift
[749/923] Compiling GraphQL NoFragmentCyclesRule.swift
[750/923] Compiling GraphQL NoUndefinedVariablesRule.swift
[751/923] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[752/923] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[753/923] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[754/923] Compiling NIOTLS TLSEvents.swift
[755/923] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[756/923] Emitting module NIOTLS
[757/923] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[758/923] Compiling NIOTLS SNIHandler.swift
[759/923] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[760/923] Compiling GraphQL AnyCoder.swift
[761/923] Compiling GraphQL AnySerialization.swift
[762/923] Compiling GraphQL GraphQLJSONEncoder.swift
[763/923] Compiling GraphQL Map.swift
[764/923] Compiling NIOSOCKS Errors.swift
[765/923] Compiling NIOSOCKS Helpers.swift
[766/923] Compiling NIOSOCKS Messages.swift
[767/923] Compiling NIOSOCKS SOCKSRequest.swift
[768/923] Emitting module NIOSOCKS
[769/923] Compiling GraphQL GraphQLError.swift
[770/923] Compiling GraphQL LocatedError.swift
[771/923] Compiling GraphQL SyntaxError.swift
[772/923] Compiling GraphQL Execute.swift
[773/923] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[774/924] Emitting module _NIOFileSystem
[779/924] Compiling NIOSOCKS ServerStateMachine.swift
[780/924] Compiling GraphQL LoneSchemaDefinitionRule.swift
[783/924] Compiling GraphQL NoUnusedFragmentsRule.swift
[784/924] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[785/924] Compiling GraphQL Source.swift
[786/924] Compiling GraphQL Visitor.swift
[787/924] Compiling GraphQL Parser.swift
[788/924] Compiling GraphQL Predicates.swift
[789/924] Compiling GraphQL PrintString.swift
[790/924] Compiling GraphQL Printer.swift
[791/924] Emitting module NIOFoundationCompat
[792/924] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[793/955] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[794/977] Compiling NIOTransportServices NIOTSSingletons.swift
[795/977] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[796/977] Compiling NIOTransportServices NIOTSErrors.swift
[797/977] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[798/977] Compiling NIOTransportServices NIOTSDatagramConnectionChannel.swift
[799/977] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[800/977] Compiling NIOTransportServices NIOTSListenerChannel.swift
[801/977] Compiling NIOTransportServices NIOTSDatagramListenerBootstrap.swift
[802/977] Compiling NIOTransportServices AcceptHandler.swift
[803/977] Compiling NIOTransportServices NIOTSDatagramConnectionBootstrap.swift
[804/977] Compiling NIOTransportServices StateManagedListenerChannel.swift
[805/977] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[806/977] Emitting module NIOHTTP1
[807/1043] Compiling NIOSSL SSLPKCS12Bundle.swift
[808/1043] Compiling NIOSSL SSLPrivateKey.swift
[809/1043] Compiling GraphQL AST.swift
[810/1043] Compiling GraphQL BlockString.swift
[811/1043] Compiling GraphQL CharacterClasses.swift
[812/1043] Compiling GraphQL Kinds.swift
[813/1043] Compiling GraphQL Lexer.swift
[814/1043] Compiling GraphQL Location.swift
[815/1043] Compiling NIOSSL SSLInit.swift
[818/1046] Emitting module AsyncKit
[819/1046] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[820/1046] Compiling NIOWebSocket WebSocketOpcode.swift
[821/1047] Compiling NIOSSL AndroidCABundle.swift
[822/1047] Compiling NIOSSL ByteBufferBIO.swift
[823/1047] Compiling NIOSSL CustomPrivateKey.swift
[824/1047] Compiling NIOSSL IdentityVerification.swift
[825/1047] Compiling NIOTransportServices NIOTSBootstraps.swift
[826/1047] Compiling NIOTransportServices NIOTSChannelOptions.swift
[827/1047] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[828/1047] Compiling MultipartKit FormDataEncoder.swift
[829/1047] Compiling MultipartKit Storage.swift
[830/1049] Compiling MultipartKit MultipartPartConvertible.swift
[834/1049] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[835/1049] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[838/1049] Compiling MultipartKit MultipartPart.swift
[839/1049] Emitting module NIOTransportServices
[840/1049] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[841/1049] Compiling MultipartKit FormDataDecoder.swift
[846/1050] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[847/1050] Compiling NIOHPACK IntegerCoding.swift
[848/1050] Compiling NIOHPACK IndexedHeaderTable.swift
[849/1050] Compiling NIOHPACK HeaderTables.swift
[850/1050] Compiling NIOHPACK HuffmanTables.swift
[851/1050] Compiling NIOHPACK HuffmanCoding.swift
[854/1053] Compiling NIOHTTPCompression HTTPDecompression.swift
[855/1053] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[856/1053] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[857/1053] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[858/1053] Compiling NIOHTTPCompression HTTPCompression.swift
[859/1053] Emitting module NIOHTTPCompression
[860/1053] Emitting module NIOSSL
[861/1053] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[862/1053] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[863/1053] Compiling NIOHPACK HPACKEncoder.swift
[864/1053] Compiling NIOHPACK HPACKHeader.swift
[865/1053] Compiling NIOHPACK HPACKErrors.swift
[866/1053] Emitting module NIOHPACK
[867/1053] Compiling MultipartKit FormDataEncoder.Encoder.swift
[868/1053] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[869/1053] Compiling MultipartKit Exports.swift
[870/1053] Compiling MultipartKit FormDataDecoder.Decoder.swift
[873/1053] Compiling MultipartKit BasicCodingKey.swift
[874/1053] Compiling MultipartKit MultipartError.swift
[875/1053] Compiling MultipartKit MultipartFormData.swift
[876/1053] Compiling MultipartKit MultipartParser.swift
[877/1053] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[878/1053] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[879/1053] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[880/1053] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[881/1053] Compiling NIOWebSocket SHA1.swift
[882/1053] Compiling NIOWebSocket WebSocketErrorCodes.swift
[883/1053] Emitting module NIOWebSocket
[884/1053] Compiling NIOWebSocket NIOWebSocketFrameAggregator.swift
[885/1053] Compiling NIOWebSocket NIOWebSocketServerUpgrader.swift
[886/1053] Compiling NIOWebSocket NIOWebSocketClientUpgrader.swift
[887/1053] Compiling NIOWebSocket WebSocketFrame.swift
[888/1053] Compiling NIOHPACK StaticHeaderTable.swift
[889/1053] Compiling NIOSSL UniversalBootstrapSupport.swift
[890/1053] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[891/1053] Compiling NIOSSL resource_bundle_accessor.swift
[892/1053] Emitting module NIOExtras
[919/1053] Compiling MultipartKit MultipartSerializer.swift
[920/1053] Compiling MultipartKit Utilities.swift
[925/1053] Compiling GraphQL NoSchemaIntrospectionCustomRule.swift
[926/1053] Compiling GraphQL ExecutableDefinitionsRule.swift
[927/1053] Compiling GraphQL FieldsOnCorrectTypeRule.swift
[928/1053] Compiling GraphQL FragmentsOnCompositeTypesRule.swift
[929/1053] Compiling GraphQL KnownArgumentNamesOnDirectivesRule.swift
[930/1053] Compiling GraphQL KnownArgumentNamesRule.swift
[931/1053] Compiling GraphQL KnownDirectivesRule.swift
[932/1053] Compiling GraphQL KnownFragmentNamesRule.swift
[933/1053] Compiling GraphQL KnownTypeNamesRule.swift
[934/1053] Compiling GraphQL LoneAnonymousOperationRule.swift
[935/1053] Compiling GraphQL IsValidValue.swift
[936/1053] Compiling GraphQL Keyable.swift
[937/1053] Compiling GraphQL NIO+Extensions.swift
[938/1053] Compiling GraphQL PrintSchema.swift
[939/1053] Compiling GraphQL TypeComparators.swift
[940/1053] Compiling GraphQL TypeFromAST.swift
[941/1053] Compiling GraphQL TypeInfo.swift
[942/1053] Compiling GraphQL ValueFromAST.swift
[943/1053] Compiling GraphQL ValueFromASTUntyped.swift
[944/1053] Compiling GraphQL NoDeprecatedCustomRule.swift
[973/1062] Emitting module MultipartKit
[976/1127] Compiling NIOExtras WritePCAPHandler.swift
[977/1127] Compiling NIOFileSystem Exports.swift
[978/1127] Emitting module NIOFileSystem
[979/1127] Emitting module _NIOFileSystemFoundationCompat
[980/1127] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[981/1127] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[982/1135] Compiling GraphQL UniqueOperationTypesRule.swift
[983/1135] Compiling GraphQL UniqueTypeNamesRule.swift
[984/1135] Compiling GraphQL UniqueVariableNamesRule.swift
[985/1135] Compiling GraphQL ValuesOfCorrectTypeRule.swift
[986/1135] Compiling GraphQL VariablesAreInputTypesRule.swift
[987/1135] Compiling GraphQL VariablesInAllowedPositionRule.swift
[988/1135] Compiling GraphQL SpecifiedRules.swift
[989/1135] Compiling GraphQL Validate.swift
[990/1135] Compiling GraphQL ValidationContext.swift
[991/1135] Compiling NIOHTTP2 InboundEventBuffer.swift
[992/1135] Compiling NIOHTTP2 InboundWindowManager.swift
[993/1135] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[994/1135] Compiling NIOHTTP2 ConnectionStateMachine.swift
[995/1135] Compiling NIOHTTP2 ConnectionStreamsState.swift
[996/1135] Compiling NIOHTTP2 MayReceiveFrames.swift
[997/1135] Compiling NIOHTTP2 ReceivingDataState.swift
[998/1135] Compiling WebSocketKit WebSocketHandler.swift
[999/1135] Compiling WebSocketKit WebSocket.swift
[1000/1135] Compiling WebSocketKit Exports.swift
[1001/1135] Compiling WebSocketKit WebSocket+Connect.swift
[1002/1135] Compiling WebSocketKit WebSocket+Concurrency.swift
[1003/1135] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[1004/1135] Emitting module WebSocketKit
[1005/1135] Compiling WebSocketKit WebSocketClient.swift
[1006/1135] Compiling GraphQL UniqueArgumentDefinitionNamesRule.swift
[1007/1135] Compiling GraphQL UniqueArgumentNamesRule.swift
[1008/1135] Compiling GraphQL UniqueDirectiveNamesRule.swift
[1009/1135] Compiling GraphQL UniqueDirectivesPerLocationRule.swift
[1010/1135] Compiling GraphQL UniqueEnumValueNamesRule.swift
[1011/1135] Compiling GraphQL UniqueFieldDefinitionNamesRule.swift
[1012/1135] Compiling GraphQL UniqueFragmentNamesRule.swift
[1013/1135] Compiling GraphQL UniqueInputFieldNamesRule.swift
[1014/1135] Compiling GraphQL UniqueOperationNamesRule.swift
[1015/1135] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1016/1135] Compiling NIOHTTP2 MaySendFrames.swift
[1017/1135] Compiling NIOHTTP2 SendingDataState.swift
[1018/1135] Compiling NIOHTTP2 SendingGoawayState.swift
[1019/1135] Compiling NIOHTTP2 SendingHeadersState.swift
[1020/1135] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1021/1135] Compiling NIOHTTP2 SendingRstStreamState.swift
[1022/1135] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1023/1135] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1024/1135] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1025/1135] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1026/1135] Compiling NIOHTTP2 HasLocalSettings.swift
[1027/1135] Compiling NIOHTTP2 HasRemoteSettings.swift
[1028/1135] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[1029/1135] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[1030/1135] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[1031/1135] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[1032/1135] Compiling NIOHTTP2 HTTP2Error.swift
[1033/1135] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1034/1135] Compiling GraphQL ExtendSchema.swift
[1035/1135] Compiling NIOHTTP2 HTTP2Settings.swift
[1036/1135] Compiling NIOHTTP2 HTTP2Stream.swift
[1037/1135] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1038/1135] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1039/1135] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1040/1135] Compiling NIOHTTP2 HTTP2StreamID.swift
[1041/1135] Compiling NIOHTTP2 Error+Any.swift
[1042/1135] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1043/1135] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1044/1135] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1045/1135] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1046/1135] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[1047/1135] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[1048/1141] Emitting module NIOHTTP2
[1049/1141] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1050/1141] Compiling NIOHTTP2 QuiescingState.swift
[1051/1141] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1052/1141] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1053/1141] Compiling NIOHTTP2 StateMachineResult.swift
[1054/1141] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1055/1141] Compiling NIOHTTP2 DOSHeuristics.swift
[1060/1141] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1061/1141] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1062/1141] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1063/1141] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1064/1141] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1065/1141] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1069/1141] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[1070/1141] Compiling NIOHTTP2 HTTP2Frame.swift
[1071/1141] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[1072/1141] Compiling NIOHTTP2 HTTP2FrameParser.swift
[1073/1141] Compiling NIOHTTP2 HTTP2PingData.swift
[1074/1141] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[1075/1141] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1095/1141] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1096/1141] Compiling NIOHTTP2 StreamChannelList.swift
[1097/1141] Compiling NIOHTTP2 StreamMap.swift
[1098/1141] Compiling NIOHTTP2 StreamStateMachine.swift
[1099/1141] Compiling NIOHTTP2 UnsafeTransfer.swift
[1100/1141] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1121/1141] Emitting module GraphQL
[1122/1203] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[1123/1203] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[1124/1203] Compiling AsyncHTTPClient AsyncLazySequence.swift
[1125/1203] Compiling AsyncHTTPClient HTTPClient+execute.swift
[1126/1203] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[1127/1203] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[1128/1203] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[1129/1209] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1130/1209] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1131/1209] Compiling AsyncHTTPClient ConnectionPool.swift
[1132/1209] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1133/1209] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1134/1209] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1135/1209] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1136/1209] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1137/1209] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1138/1209] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1139/1209] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1140/1209] Compiling AsyncHTTPClient Transaction.swift
[1141/1209] Compiling AsyncHTTPClient Base64.swift
[1142/1209] Compiling AsyncHTTPClient BasicAuth.swift
[1143/1209] Compiling AsyncHTTPClient SSLContextCache.swift
[1144/1209] Compiling AsyncHTTPClient Scheme.swift
[1145/1209] Compiling AsyncHTTPClient Singleton.swift
[1146/1209] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1147/1209] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[1148/1209] Compiling AsyncHTTPClient Utils.swift
[1149/1209] Emitting module AsyncHTTPClient
[1150/1209] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1151/1209] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1152/1209] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1153/1209] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1154/1209] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1155/1209] Compiling AsyncHTTPClient RequestBodyLength.swift
[1156/1209] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1157/1209] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1158/1209] Compiling AsyncHTTPClient ConnectionTarget.swift
[1159/1209] Compiling AsyncHTTPClient DeconstructedURL.swift
[1160/1209] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1161/1209] Compiling AsyncHTTPClient FoundationExtensions.swift
[1162/1209] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1163/1209] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1164/1209] Compiling AsyncHTTPClient HTTP1Connection.swift
[1165/1209] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1166/1209] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1167/1209] Compiling AsyncHTTPClient HTTP2Connection.swift
[1168/1209] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1169/1209] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1170/1209] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1171/1209] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[1172/1209] Compiling AsyncHTTPClient HTTPClient.swift
[1173/1209] Compiling AsyncHTTPClient HTTPHandler.swift
[1174/1209] Compiling AsyncHTTPClient LRUCache.swift
[1175/1209] Compiling AsyncHTTPClient NIOLoopBound+Execute.swift
[1176/1209] Compiling AsyncHTTPClient NWErrorHandler.swift
[1177/1209] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1178/1209] Compiling AsyncHTTPClient TLSConfiguration.swift
[1179/1209] Compiling AsyncHTTPClient RedirectState.swift
[1180/1209] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1181/1209] Compiling AsyncHTTPClient RequestBag.swift
[1182/1209] Compiling AsyncHTTPClient RequestValidation.swift
[1183/1209] Compiling AsyncHTTPClient RequestOptions.swift
[1184/1209] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1185/1209] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1186/1209] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1187/1209] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1188/1209] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1189/1209] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1210/1458] Compiling Graphiti SyncResolve.swift
[1211/1458] Compiling Graphiti Input.swift
[1212/1458] Compiling Graphiti InputField.swift
[1213/1458] Compiling Graphiti InputFieldComponent.swift
[1214/1458] Compiling Graphiti InputFieldComponentBuilder.swift
[1215/1458] Compiling Graphiti Interface.swift
[1216/1463] Compiling Graphiti Field.swift
[1217/1463] Compiling Graphiti FieldComponent.swift
[1218/1463] Compiling Graphiti FieldComponentBuilder.swift
[1219/1463] Compiling Graphiti AsyncResolve.swift
[1220/1463] Compiling Graphiti ConcurrentResolve.swift
[1221/1463] Compiling Graphiti SimpleAsyncResolve.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 Mutation.swift
[1229/1463] Compiling Graphiti Query.swift
[1230/1463] Compiling Graphiti Scalar.swift
[1231/1463] Compiling Graphiti Schema.swift
[1232/1463] Compiling Graphiti SchemaTypeProvider.swift
[1233/1463] Compiling Graphiti Entity.swift
[1234/1463] Compiling Graphiti Key.swift
[1235/1463] Compiling Graphiti KeyComponent.swift
[1236/1463] Compiling Graphiti Type+Key.swift
[1237/1463] Compiling Graphiti Queries.swift
[1238/1463] Compiling Graphiti Service.swift
[1239/1463] Compiling Graphiti Edge.swift
[1240/1463] Compiling Graphiti PageInfo.swift
[1241/1463] Compiling Graphiti BackwardPaginationArguments.swift
[1242/1463] Compiling Graphiti ForwardPaginationArguments.swift
[1243/1463] Compiling Graphiti PaginationArguments.swift
[1244/1463] Compiling Graphiti NoContext.swift
[1245/1463] Emitting module Graphiti
[1246/1463] Compiling Graphiti API.swift
[1247/1463] Compiling Graphiti Argument.swift
[1248/1463] Compiling Graphiti ArgumentComponent.swift
[1249/1463] Compiling Graphiti ArgumentComponentBuilder.swift
[1250/1463] Compiling Graphiti NoArguments.swift
[1251/1463] Compiling Graphiti Coders.swift
[1252/1463] Compiling Graphiti Component.swift
[1253/1463] Compiling Graphiti ComponentBuilder.swift
[1254/1463] Compiling Graphiti TypeComponent.swift
[1255/1463] Compiling Graphiti TypeComponentBuilder.swift
[1256/1463] Compiling Graphiti Connection.swift
[1257/1463] Compiling Graphiti ConnectionType.swift
[1258/1463] Compiling Graphiti PartialSchema.swift
[1259/1463] Compiling Graphiti SchemaBuilder.swift
[1260/1463] Compiling Graphiti SubscribeField.swift
[1261/1463] Compiling Graphiti SubscribeResolve.swift
[1262/1463] Compiling Graphiti Subscription.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
[1289/1484] Compiling Vapor ServeCommand.swift
[1290/1484] Compiling Vapor AnyResponse+Concurrency.swift
[1291/1484] Compiling Vapor AsyncBasicResponder.swift
[1292/1484] Compiling Vapor AsyncMiddleware.swift
[1293/1484] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[1294/1484] Compiling Vapor AsyncSessionDriver.swift
[1295/1484] Compiling Vapor Authentication+Concurrency.swift
[1296/1484] Compiling Vapor Cache+Concurrency.swift
[1297/1484] Compiling Vapor Client+Concurrency.swift
[1298/1484] Compiling Vapor RequestBody+Concurrency.swift
[1299/1484] Compiling Vapor Responder+Concurrency.swift
[1300/1484] Compiling Vapor ResponseCodable+Concurrency.swift
[1301/1484] Compiling Vapor RoutesBuilder+Concurrency.swift
[1302/1484] Compiling Vapor ViewRenderer+Concurrency.swift
[1303/1484] Compiling Vapor WebSocket+Concurrency.swift
[1304/1484] Compiling Vapor ContainerGetPathExecutor.swift
[1305/1484] Compiling Vapor Content.swift
[1306/1484] Compiling Vapor ContentCoders.swift
[1307/1484] Compiling Vapor ContentConfiguration.swift
[1308/1484] Compiling Vapor ContentContainer.swift
[1309/1484] Compiling Vapor JSONCoder+Custom.swift
[1310/1484] Compiling Vapor JSONCoders+Content.swift
[1311/1484] Compiling Vapor Application.swift
[1312/1484] Compiling Vapor AuthenticationCache.swift
[1313/1484] Compiling Vapor Authenticator.swift
[1314/1484] Compiling Vapor BasicAuthorization.swift
[1315/1484] Compiling Vapor BearerAuthorization.swift
[1316/1484] Compiling Vapor GuardMiddleware.swift
[1317/1484] Compiling Vapor RedirectMiddleware.swift
[1318/1484] Compiling Vapor SessionAuthenticatable.swift
[1319/1484] Compiling Vapor Bcrypt.swift
[1320/1484] Compiling Vapor Application+Cache.swift
[1321/1484] Compiling Vapor Cache.swift
[1322/1484] Compiling Vapor CacheExpirationTime.swift
[1323/1484] Compiling Vapor MemoryCache.swift
[1324/1484] Compiling Vapor Request+Cache.swift
[1325/1484] Compiling Vapor Application+Clients.swift
[1326/1484] Compiling Vapor Client.swift
[1327/1484] Compiling Vapor ClientRequest.swift
[1328/1484] Compiling Vapor ClientResponse.swift
[1329/1484] Compiling Vapor Request+Client.swift
[1330/1484] Compiling Vapor BootCommand.swift
[1331/1484] Compiling Vapor CommandContext+Application.swift
[1332/1484] Compiling Vapor RoutesCommand.swift
[1347/1484] Compiling Vapor Validation.swift
[1348/1484] Compiling Vapor ValidationKey.swift
[1349/1484] Compiling Vapor Validations.swift
[1350/1484] Compiling Vapor ValidationsError.swift
[1351/1484] Compiling Vapor Validator.swift
[1352/1484] Compiling Vapor ValidatorResult.swift
[1353/1484] Compiling Vapor And.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] Compiling Vapor HTTPMediaTypePreference.swift
[1376/1484] Compiling Vapor Responder.swift
[1377/1484] Compiling Vapor Application+HTTP+Server.swift
[1378/1484] Compiling Vapor HTTPServer.swift
[1379/1484] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[1380/1484] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[1381/1484] Compiling Vapor HTTPServerHandler.swift
[1382/1484] Compiling Vapor HTTPServerRequestDecoder.swift
[1383/1484] Compiling Vapor HTTPServerResponseEncoder.swift
[1384/1484] Compiling Vapor HTTPServerUpgradeHandler.swift
[1385/1484] Compiling Vapor Logger+Report.swift
[1386/1484] Compiling Vapor LoggingSystem+Environment.swift
[1387/1484] Compiling Vapor Application+Middleware.swift
[1388/1484] Compiling Vapor CORSMiddleware.swift
[1389/1484] Compiling Vapor ErrorMiddleware.swift
[1390/1484] Compiling Vapor FileMiddleware.swift
[1391/1484] Compiling Vapor Middleware.swift
[1392/1484] Compiling Vapor MiddlewareConfiguration.swift
[1393/1484] Compiling Vapor ResponseCompressionMiddleware.swift
[1394/1484] Compiling Vapor RouteLoggingMiddleware.swift
[1395/1484] Compiling Vapor TracingMiddleware.swift
[1396/1484] Compiling Vapor File+Multipart.swift
[1397/1484] Compiling Vapor PlaintextDecoder.swift
[1398/1484] Compiling Vapor PlaintextEncoder.swift
[1399/1484] Compiling Vapor URLQueryCoders.swift
[1400/1484] Compiling Vapor URLQueryContainer.swift
[1401/1484] Compiling Vapor Core.swift
[1402/1484] Compiling Vapor Running.swift
[1403/1484] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[1404/1484] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[1405/1484] Compiling Vapor DotEnvFile+load.swift
[1406/1484] Compiling Vapor Routes+caseInsenstive.swift
[1407/1484] Compiling Vapor Validatable+validate.swift
[1408/1484] Compiling Vapor Environment+Process.swift
[1409/1484] Compiling Vapor Environment+Secret.swift
[1410/1484] Compiling Vapor Environment.swift
[1411/1484] Compiling Vapor Abort.swift
[1412/1484] Compiling Vapor AbortError.swift
[1413/1484] Compiling Vapor DebuggableError.swift
[1414/1484] Compiling Vapor Demangler.swift
[1415/1484] Compiling Vapor ErrorSource.swift
[1416/1484] Compiling Vapor StackTrace.swift
[1417/1484] Compiling Vapor Exports.swift
[1418/1484] Compiling Vapor Application+HTTP.swift
[1419/1484] Compiling Vapor FormDataDecoder+Content.swift
[1420/1484] Compiling Vapor FormDataEncoder+Content.swift
[1421/1484] Compiling Vapor Application+Password.swift
[1422/1484] Compiling Vapor Application+Passwords.swift
[1423/1484] Compiling Vapor AsyncPasswordHasher.swift
[1424/1484] Compiling Vapor BcryptHasher.swift
[1425/1484] Compiling Vapor PasswordHasher.swift
[1426/1484] Compiling Vapor PlaintextHasher.swift
[1427/1484] Compiling Vapor Request+Password.swift
[1428/1484] Compiling Vapor Redirect.swift
[1429/1484] Compiling Vapor Request+Body.swift
[1430/1484] Compiling Vapor Request+BodyStream.swift
[1431/1484] Compiling Vapor Request.swift
[1432/1484] Compiling Vapor Application+Responder.swift
[1433/1484] Compiling Vapor DefaultResponder.swift
[1434/1484] Compiling Vapor Response+Body.swift
[1435/1484] Compiling Vapor Response.swift
[1436/1484] Compiling Vapor ResponseCodable.swift
[1437/1484] Compiling Vapor Application+Routes.swift
[1438/1484] Compiling Vapor Parameters+Require.swift
[1439/1484] Compiling Vapor Request+WebSocket.swift
[1440/1484] Compiling Vapor Route.swift
[1441/1484] Compiling Vapor SessionsMiddleware.swift
[1442/1484] Compiling Vapor URLEncodedFormData.swift
[1443/1484] Compiling Vapor URLEncodedFormDecoder.swift
[1444/1484] Compiling Vapor URLEncodedFormEncoder.swift
[1445/1484] Compiling Vapor URLEncodedFormError.swift
[1446/1484] Compiling Vapor URLEncodedFormParser.swift
[1447/1484] Compiling Vapor URLEncodedFormSerializer.swift
[1448/1484] Compiling Vapor URLQueryFragmentConvertible.swift
[1449/1484] Compiling Vapor AnyResponse.swift
[1450/1484] Compiling Vapor Array+Random.swift
[1451/1484] Compiling Vapor Base32.swift
[1452/1484] Compiling Vapor Base64.swift
[1453/1484] Compiling Vapor BaseN.swift
[1454/1484] Compiling Vapor BasicCodingKey.swift
[1455/1484] Compiling Vapor ByteCount.swift
[1456/1484] Compiling Vapor Bytes+Hex.swift
[1457/1484] Compiling Vapor Bytes+SecureCompare.swift
[1458/1484] Compiling Vapor Collection+Safe.swift
[1459/1484] Compiling Vapor DataProtocol+Copy.swift
[1460/1484] Compiling Vapor DecoderUnwrapper.swift
[1461/1484] Compiling Vapor DirectoryConfiguration.swift
[1462/1484] Emitting module Vapor
[1485/1541] 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`.
[1486/1541] 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`.
[1487/1541] 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`.
[1488/1541] 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`.
[1489/1541] 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`.
[1490/1541] 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`.
[1491/1547] Compiling Pioneer Dictionary+SafeOperation.swift
[1492/1547] Compiling Pioneer OrderedDictionary+Dictionary.swift
[1493/1547] Compiling Pioneer Expression.swift
[1494/1547] Compiling Pioneer Actor+Task.swift
[1495/1547] Compiling Pioneer Task+Starvation.swift
[1496/1547] Compiling Pioneer UInt64+Nanoseconds.swift
[1497/1547] Compiling Pioneer Map+Decoder.swift
[1498/1547] Compiling Pioneer AsyncEventStream+Future+GraphQLResult.swift
[1499/1547] Compiling Pioneer AsyncSequence+EventStream.swift
[1500/1547] Compiling Pioneer AsyncStream+Statics.swift
[1501/1547] Compiling Pioneer EventStream+Static.swift
[1502/1547] Compiling Pioneer PubSub.swift
[1503/1547] Compiling Pioneer Interval.swift
[1504/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`.
[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 Pioneer+WebSocket.swift
[1513/1547] Compiling Pioneer Intent.swift
[1514/1547] Compiling Pioneer Payload.swift
[1515/1547] Compiling Pioneer Pioneer+WebSocketable.swift
[1516/1547] Compiling Pioneer WebSocketClient.swift
[1517/1547] Compiling Pioneer WebSocketable.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 Request+GraphQLRequest.swift
[1525/1547] Compiling Pioneer Request+PathComponent.swift
[1526/1547] Compiling Pioneer Request+WebSocket.swift
[1527/1547] Compiling Pioneer Request+WebsocketContext.swift
[1528/1547] Compiling Pioneer GraphQLResult+Content.swift
[1529/1547] Compiling Pioneer Response+GraphQLError.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! (26.57s)
858
6 /Users/admin/builder/spi-builder-workspace/.docs/d-exclaimation/pioneer/1.5.0
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/d-exclaimation/pioneer/1.5.0
File count: 858
Doc size: 6.0MB
Preparing doc bundle ...
Uploading prod-d-exclaimation-pioneer-1.5.0-3dc29739.zip to s3://spi-docs-inbox/prod-d-exclaimation-pioneer-1.5.0-3dc29739.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [61%]
Copying... [71%]
Copying... [81%]
Copying... [91%]
Copying... [100%]
Done.