The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Pioneer, reference main (210d7d), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 17:46:13 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

179 |
180 |             @Sendable
181 |             func onTermination(_: Termination) {
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
182 |                 task.cancel()
183 |             }
[1965/2004] Compiling Pioneer EventStream+Static.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:51:39: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 |         Task.init {
50 |             do {
51 |                 for try await elem in self {
   |                                       `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:51:39: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 |         Task.init {
50 |             do {
51 |                 for try await elem in self {
   |                                       `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:43:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 |     ///   - next: A callback ran on each element of this sequence.
42 |     /// - Returns: The Task used to consume this AsyncSequence
43 |     func pipe<ActorType: Actor>(
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 |         to sink: ActorType,
45 |         complete: @Sendable @escaping (ActorType) async -> Void,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 28 |             let task = Task.init {
 29 |                 do {
 30 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 31 |                         let element: Element = each
 32 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 28 |             let task = Task.init {
 29 |                 do {
 30 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 31 |                         let element: Element = each
 32 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:24:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 22 |     /// - Parameters:
 23 |     ///   - onTermination: onTermination callback
 24 |     func toEventStream(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 25 |         onTermination callback: @Sendable @escaping (Termination) -> Void
 26 |     ) -> EventStream<Element> {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:25:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 23 |     ///   - onTermination: onTermination callback
 24 |     func toEventStream(
 25 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 26 |     ) -> EventStream<Element> {
 27 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |             let task = Task.init {
 62 |                 do {
 63 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |                         let element: Element = each
 65 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |             let task = Task.init {
 62 |                 do {
 63 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |                         let element: Element = each
 65 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:56:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |     ///   - endValue: Ending value
 55 |     ///   - onTermination: onTermination callback
 56 |     func toEventStream(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 57 |         endValue: @escaping () -> Element,
 58 |         onTermination callback: @Sendable @escaping (Termination) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:58:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 56 |     func toEventStream(
 57 |         endValue: @escaping () -> Element,
 58 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 59 |     ) -> EventStream<Element> {
 60 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:94:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |         onTermination callback: @Sendable @escaping (Termination) -> Void
 93 |     ) -> EventStream<Element> {
 94 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
    |                                                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |             let task = Task.init {
 96 |                 do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |                 do {
 97 |                     continuation.yield(initialValue)
 98 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 99 |                         let element: Element = each
100 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |                 do {
 97 |                     continuation.yield(initialValue)
 98 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 99 |                         let element: Element = each
100 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:92:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 90 |     func toEventStream(
 91 |         initialValue: Element,
 92 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 93 |     ) -> EventStream<Element> {
 94 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:130:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |         onTermination callback: @Sendable @escaping (Termination) -> Void
129 |     ) -> EventStream<Element> {
130 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
    |                                                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
131 |             let task = Task.init {
132 |                 do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 |                 do {
133 |                     continuation.yield(initialValue)
134 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 |                         let element: Element = each
136 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 |                 do {
133 |                     continuation.yield(initialValue)
134 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 |                         let element: Element = each
136 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:128:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
126 |         initialValue: Element,
127 |         endValue: @escaping () -> Element,
128 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
129 |     ) -> EventStream<Element> {
130 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:165:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |         endValue: @escaping () -> Element
164 |     ) -> EventStream<Element> {
165 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
    |                                                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 |             let task = Task.init {
167 |                 do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 |                 do {
168 |                     continuation.yield(initialValue)
169 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 |                         let element: Element = each
171 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 |                 do {
168 |                     continuation.yield(initialValue)
169 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 |                         let element: Element = each
171 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:181:18: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
179 |
180 |             @Sendable
181 |             func onTermination(_: Termination) {
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
182 |                 task.cancel()
183 |             }
[1966/2004] Compiling Pioneer PubSub.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:51:39: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 |         Task.init {
50 |             do {
51 |                 for try await elem in self {
   |                                       `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:51:39: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 |         Task.init {
50 |             do {
51 |                 for try await elem in self {
   |                                       `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:43:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 |     ///   - next: A callback ran on each element of this sequence.
42 |     /// - Returns: The Task used to consume this AsyncSequence
43 |     func pipe<ActorType: Actor>(
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 |         to sink: ActorType,
45 |         complete: @Sendable @escaping (ActorType) async -> Void,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 28 |             let task = Task.init {
 29 |                 do {
 30 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 31 |                         let element: Element = each
 32 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 28 |             let task = Task.init {
 29 |                 do {
 30 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 31 |                         let element: Element = each
 32 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:24:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 22 |     /// - Parameters:
 23 |     ///   - onTermination: onTermination callback
 24 |     func toEventStream(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 25 |         onTermination callback: @Sendable @escaping (Termination) -> Void
 26 |     ) -> EventStream<Element> {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:25:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 23 |     ///   - onTermination: onTermination callback
 24 |     func toEventStream(
 25 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 26 |     ) -> EventStream<Element> {
 27 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |             let task = Task.init {
 62 |                 do {
 63 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |                         let element: Element = each
 65 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |             let task = Task.init {
 62 |                 do {
 63 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |                         let element: Element = each
 65 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:56:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |     ///   - endValue: Ending value
 55 |     ///   - onTermination: onTermination callback
 56 |     func toEventStream(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 57 |         endValue: @escaping () -> Element,
 58 |         onTermination callback: @Sendable @escaping (Termination) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:58:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 56 |     func toEventStream(
 57 |         endValue: @escaping () -> Element,
 58 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 59 |     ) -> EventStream<Element> {
 60 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:94:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |         onTermination callback: @Sendable @escaping (Termination) -> Void
 93 |     ) -> EventStream<Element> {
 94 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
    |                                                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |             let task = Task.init {
 96 |                 do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |                 do {
 97 |                     continuation.yield(initialValue)
 98 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 99 |                         let element: Element = each
100 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |                 do {
 97 |                     continuation.yield(initialValue)
 98 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 99 |                         let element: Element = each
100 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:92:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 90 |     func toEventStream(
 91 |         initialValue: Element,
 92 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 93 |     ) -> EventStream<Element> {
 94 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:130:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |         onTermination callback: @Sendable @escaping (Termination) -> Void
129 |     ) -> EventStream<Element> {
130 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
    |                                                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
131 |             let task = Task.init {
132 |                 do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 |                 do {
133 |                     continuation.yield(initialValue)
134 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 |                         let element: Element = each
136 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 |                 do {
133 |                     continuation.yield(initialValue)
134 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 |                         let element: Element = each
136 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:128:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
126 |         initialValue: Element,
127 |         endValue: @escaping () -> Element,
128 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
129 |     ) -> EventStream<Element> {
130 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:165:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |         endValue: @escaping () -> Element
164 |     ) -> EventStream<Element> {
165 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
    |                                                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 |             let task = Task.init {
167 |                 do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 |                 do {
168 |                     continuation.yield(initialValue)
169 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 |                         let element: Element = each
171 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 |                 do {
168 |                     continuation.yield(initialValue)
169 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 |                         let element: Element = each
171 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:181:18: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
179 |
180 |             @Sendable
181 |             func onTermination(_: Termination) {
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
182 |                 task.cancel()
183 |             }
[1967/2004] Compiling Pioneer Interval.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:51:39: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 |         Task.init {
50 |             do {
51 |                 for try await elem in self {
   |                                       `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:51:39: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 |         Task.init {
50 |             do {
51 |                 for try await elem in self {
   |                                       `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
52 |                     guard !Task.isCancelled else { return }
53 |                     let fut: Future<GraphQL.GraphQLResult> = elem
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncEventStream+Future+GraphQLResult.swift:43:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
41 |     ///   - next: A callback ran on each element of this sequence.
42 |     /// - Returns: The Task used to consume this AsyncSequence
43 |     func pipe<ActorType: Actor>(
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 |         to sink: ActorType,
45 |         complete: @Sendable @escaping (ActorType) async -> Void,
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 28 |             let task = Task.init {
 29 |                 do {
 30 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 31 |                         let element: Element = each
 32 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:30:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 28 |             let task = Task.init {
 29 |                 do {
 30 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 31 |                         let element: Element = each
 32 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:24:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 22 |     /// - Parameters:
 23 |     ///   - onTermination: onTermination callback
 24 |     func toEventStream(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 25 |         onTermination callback: @Sendable @escaping (Termination) -> Void
 26 |     ) -> EventStream<Element> {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:25:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 23 |     ///   - onTermination: onTermination callback
 24 |     func toEventStream(
 25 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 26 |     ) -> EventStream<Element> {
 27 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |             let task = Task.init {
 62 |                 do {
 63 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |                         let element: Element = each
 65 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:63:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |             let task = Task.init {
 62 |                 do {
 63 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |                         let element: Element = each
 65 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:56:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |     ///   - endValue: Ending value
 55 |     ///   - onTermination: onTermination callback
 56 |     func toEventStream(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 57 |         endValue: @escaping () -> Element,
 58 |         onTermination callback: @Sendable @escaping (Termination) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:58:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 56 |     func toEventStream(
 57 |         endValue: @escaping () -> Element,
 58 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 59 |     ) -> EventStream<Element> {
 60 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:94:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |         onTermination callback: @Sendable @escaping (Termination) -> Void
 93 |     ) -> EventStream<Element> {
 94 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
    |                                                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |             let task = Task.init {
 96 |                 do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |                 do {
 97 |                     continuation.yield(initialValue)
 98 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 99 |                         let element: Element = each
100 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:98:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |                 do {
 97 |                     continuation.yield(initialValue)
 98 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 99 |                         let element: Element = each
100 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:92:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 90 |     func toEventStream(
 91 |         initialValue: Element,
 92 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
 93 |     ) -> EventStream<Element> {
 94 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:130:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |         onTermination callback: @Sendable @escaping (Termination) -> Void
129 |     ) -> EventStream<Element> {
130 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
    |                                                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
131 |             let task = Task.init {
132 |                 do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 |                 do {
133 |                     continuation.yield(initialValue)
134 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 |                         let element: Element = each
136 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:134:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 |                 do {
133 |                     continuation.yield(initialValue)
134 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
135 |                         let element: Element = each
136 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:128:23: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
126 |         initialValue: Element,
127 |         endValue: @escaping () -> Element,
128 |         onTermination callback: @Sendable @escaping (Termination) -> Void
    |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
129 |     ) -> EventStream<Element> {
130 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:165:60: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |         endValue: @escaping () -> Element
164 |     ) -> EventStream<Element> {
165 |         let stream = AsyncThrowingStream<Element, Error> { continuation in
    |                                                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 |             let task = Task.init {
167 |                 do {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 |                 do {
168 |                     continuation.yield(initialValue)
169 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 |                         let element: Element = each
171 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:169:43: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
167 |                 do {
168 |                     continuation.yield(initialValue)
169 |                     for try await each in self {
    |                                           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
170 |                         let element: Element = each
171 |                         continuation.yield(element)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Extension/AsyncSequence+EventStream.swift:181:18: warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
179 |
180 |             @Sendable
181 |             func onTermination(_: Termination) {
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated local function; this is an error in the Swift 6 language mode
182 |                 task.cancel()
183 |             }
[1968/2004] Compiling Pioneer Request+GraphQLRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
   | `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
  4 |     public var data: Map?
    |                `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  5 |     public var errors: [GraphQLError]
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
 12 | // MARK: Map
 13 |
 14 | public enum Map {
    |             `- note: consider making enum 'Map' conform to the 'Sendable' protocol
 15 |     case undefined
 16 |     case null
[1969/2004] Compiling Pioneer Request+PathComponent.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
   | `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
  4 |     public var data: Map?
    |                `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  5 |     public var errors: [GraphQLError]
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
 12 | // MARK: Map
 13 |
 14 | public enum Map {
    |             `- note: consider making enum 'Map' conform to the 'Sendable' protocol
 15 |     case undefined
 16 |     case null
[1970/2004] Compiling Pioneer Request+WebSocket.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
   | `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
  4 |     public var data: Map?
    |                `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  5 |     public var errors: [GraphQLError]
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
 12 | // MARK: Map
 13 |
 14 | public enum Map {
    |             `- note: consider making enum 'Map' conform to the 'Sendable' protocol
 15 |     case undefined
 16 |     case null
[1971/2004] Compiling Pioneer Request+WebsocketContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
   | `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
  4 |     public var data: Map?
    |                `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  5 |     public var errors: [GraphQLError]
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
 12 | // MARK: Map
 13 |
 14 | public enum Map {
    |             `- note: consider making enum 'Map' conform to the 'Sendable' protocol
 15 |     case undefined
 16 |     case null
[1972/2004] Compiling Pioneer GraphQLResult+Content.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
   | `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
  4 |     public var data: Map?
    |                `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  5 |     public var errors: [GraphQLError]
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
 12 | // MARK: Map
 13 |
 14 | public enum Map {
    |             `- note: consider making enum 'Map' conform to the 'Sendable' protocol
 15 |     case undefined
 16 |     case null
[1973/2004] Compiling Pioneer Response+GraphQLError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Extensions/Response/GraphQLResult+Content.swift:11:1: warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
 9 | import protocol Vapor.Content
10 |
11 | extension GraphQLResult: Vapor.Content {}
   | `- warning: conformance to 'Sendable' must occur in the same source file as struct 'GraphQLResult'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/GraphQL.swift:4:16: warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  2 |
  3 | public struct GraphQLResult: Equatable, Codable, CustomStringConvertible {
  4 |     public var data: Map?
    |                `- warning: stored property 'data' of 'Sendable'-conforming struct 'GraphQLResult' has non-sendable type 'Map?'; this is an error in the Swift 6 language mode
  5 |     public var errors: [GraphQLError]
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/GraphQL/Sources/GraphQL/Map/Map.swift:14:13: note: consider making enum 'Map' conform to the 'Sendable' protocol
 12 | // MARK: Map
 13 |
 14 | public enum Map {
    |             `- note: consider making enum 'Map' conform to the 'Sendable' protocol
 15 |     case undefined
 16 |     case null
[1974/2004] Compiling Pioneer WebSocket+WebSocketable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 29 |         cors: CORSMiddleware.Configuration? = nil
 30 |     ) throws {
 31 |         let app = try Application(
    |                       `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 32 |             .specified(port: port, host: host, env: env)
 33 |         )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1975/2004] Compiling Pioneer Pioneer+Http.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 29 |         cors: CORSMiddleware.Configuration? = nil
 30 |     ) throws {
 31 |         let app = try Application(
    |                       `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 32 |             .specified(port: port, host: host, env: env)
 33 |         )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1976/2004] Compiling Pioneer Pioneer+IDE.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 29 |         cors: CORSMiddleware.Configuration? = nil
 30 |     ) throws {
 31 |         let app = try Application(
    |                       `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 32 |             .specified(port: port, host: host, env: env)
 33 |         )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1977/2004] Compiling Pioneer Pioneer+Standalone.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 29 |         cors: CORSMiddleware.Configuration? = nil
 30 |     ) throws {
 31 |         let app = try Application(
    |                       `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 32 |             .specified(port: port, host: host, env: env)
 33 |         )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1978/2004] Compiling Pioneer Pioneer+Vapor+Void.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 29 |         cors: CORSMiddleware.Configuration? = nil
 30 |     ) throws {
 31 |         let app = try Application(
    |                       `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 32 |             .specified(port: port, host: host, env: env)
 33 |         )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1979/2004] Compiling Pioneer Pioneer+Vapor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Vapor/Pioneer+Standalone.swift:31:23: warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 29 |         cors: CORSMiddleware.Configuration? = nil
 30 |     ) throws {
 31 |         let app = try Application(
    |                       `- warning: 'init(_:_:)' is deprecated: Migrate to using the async APIs. Use use Application.make(_:_:) instead [#DeprecatedDeclaration]
 32 |             .specified(port: port, host: host, env: env)
 33 |         )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1980/2004] Compiling Pioneer GraphQLMessage.swift
[1981/2004] Compiling Pioneer GraphQLMiddleware.swift
[1982/2004] Compiling Pioneer GraphQLRequest.swift
[1983/2004] Compiling Pioneer GraphQLViolation.swift
[1984/2004] Compiling Pioneer CSRFProtections.swift
[1985/2004] Compiling Pioneer HTTPGraphQL.swift
[1986/2004] Compiling Pioneer HttpStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 |     /// - Parameter closure: Transformation closure.
22 |     /// - Returns: A new EventStream with the new type.
23 |     override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
   |                          `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 |         /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 16 |     /// - Parameter stream: The AsyncSequence used to push messages
 17 |     /// - Returns: The Task used to consumed it
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
    |                                                 `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
[1987/2004] Compiling Pioneer IDE.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 |     /// - Parameter closure: Transformation closure.
22 |     /// - Returns: A new EventStream with the new type.
23 |     override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
   |                          `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 |         /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 16 |     /// - Parameter stream: The AsyncSequence used to push messages
 17 |     /// - Returns: The Task used to consumed it
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
    |                                                 `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
[1988/2004] Compiling Pioneer Pioneer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 |     /// - Parameter closure: Transformation closure.
22 |     /// - Returns: A new EventStream with the new type.
23 |     override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
   |                          `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 |         /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 16 |     /// - Parameter stream: The AsyncSequence used to push messages
 17 |     /// - Returns: The Task used to consumed it
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
    |                                                 `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
[1989/2004] Compiling Pioneer AsyncEventStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 |     /// - Parameter closure: Transformation closure.
22 |     /// - Returns: A new EventStream with the new type.
23 |     override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
   |                          `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 |         /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 16 |     /// - Parameter stream: The AsyncSequence used to push messages
 17 |     /// - Returns: The Task used to consumed it
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
    |                                                 `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
[1990/2004] Compiling Pioneer AsyncPubSub.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 |     /// - Parameter closure: Transformation closure.
22 |     /// - Returns: A new EventStream with the new type.
23 |     override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
   |                          `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 |         /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 16 |     /// - Parameter stream: The AsyncSequence used to push messages
 17 |     /// - Returns: The Task used to consumed it
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
    |                                                 `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
[1991/2004] Compiling Pioneer Broadcast.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:30:48: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |             let task = Task {
29 |                 do {
30 |                     for try await each in self.sequence {
   |                                                `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
31 |                         let res = try closure(each)
32 |                         continuation.yield(res)
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/AsyncEventStream.swift:23:26: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 |     /// - Parameter closure: Transformation closure.
22 |     /// - Returns: A new EventStream with the new type.
23 |     override public func map<To>(_ closure: @escaping (Element) throws -> To) -> EventStream<To> {
   |                          `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |         /// Use AsyncStream as bridging instead of the built-in map function to allow for type casting
25 |         /// as using `map` will make the type too complicated to be casted to any meaningful value
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:20:35: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
    |                                   `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |                 await self.publish(each)
 22 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/Streaming/Broadcast.swift:18:49: warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 16 |     /// - Parameter stream: The AsyncSequence used to push messages
 17 |     /// - Returns: The Task used to consumed it
 18 |     public func pipe<Sequence: AsyncSequence>(_ stream: Sequence) -> Task<Void, Error> where Sequence.Element == MessageType {
    |                                                 `- warning: capture of non-sendable type 'Sequence.Type' in an isolated closure; this is an error in the Swift 6 language mode
 19 |         Task { [unowned self] in
 20 |             for try await each in stream {
[1992/2004] Compiling Pioneer Pioneer+Graphiti.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |             { context, arguments, eventLoopGroup in
 42 |                 eventLoopGroup.makeFutureWithTask {
 43 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |                 }
 45 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     convenience init(
 37 |         _ name: String,
 38 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) where Arguments == NoArguments {
 40 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |             { context, arguments, eventLoopGroup in
 73 |                 eventLoopGroup.makeFutureWithTask {
 74 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 75 |                 }
 76 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     convenience init(
 68 |         _ name: String,
 69 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     ) where Arguments == NoArguments {
 71 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |             { context, arguments, eventLoopGroup in
 93 |                 eventLoopGroup.makeFutureWithTask {
 94 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |     convenience init<ResolveType>(
 86 |         _ name: String,
 87 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         as: FieldType.Type,
 89 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 |             { context, arguments, eventLoopGroup in
126 |                 eventLoopGroup.makeFutureWithTask {
127 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |                 }
129 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     convenience init<ResolveType>(
119 |         _ name: String,
120 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |         as: FieldType.Type,
122 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/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/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
[1993/2004] Compiling Pioneer Data+Json.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |             { context, arguments, eventLoopGroup in
 42 |                 eventLoopGroup.makeFutureWithTask {
 43 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |                 }
 45 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     convenience init(
 37 |         _ name: String,
 38 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) where Arguments == NoArguments {
 40 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |             { context, arguments, eventLoopGroup in
 73 |                 eventLoopGroup.makeFutureWithTask {
 74 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 75 |                 }
 76 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     convenience init(
 68 |         _ name: String,
 69 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     ) where Arguments == NoArguments {
 71 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |             { context, arguments, eventLoopGroup in
 93 |                 eventLoopGroup.makeFutureWithTask {
 94 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |     convenience init<ResolveType>(
 86 |         _ name: String,
 87 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         as: FieldType.Type,
 89 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 |             { context, arguments, eventLoopGroup in
126 |                 eventLoopGroup.makeFutureWithTask {
127 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |                 }
129 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     convenience init<ResolveType>(
119 |         _ name: String,
120 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |         as: FieldType.Type,
122 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/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/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
[1994/2004] Compiling Pioneer BuiltinTypes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |             { context, arguments, eventLoopGroup in
 42 |                 eventLoopGroup.makeFutureWithTask {
 43 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |                 }
 45 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     convenience init(
 37 |         _ name: String,
 38 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) where Arguments == NoArguments {
 40 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |             { context, arguments, eventLoopGroup in
 73 |                 eventLoopGroup.makeFutureWithTask {
 74 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 75 |                 }
 76 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     convenience init(
 68 |         _ name: String,
 69 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     ) where Arguments == NoArguments {
 71 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |             { context, arguments, eventLoopGroup in
 93 |                 eventLoopGroup.makeFutureWithTask {
 94 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |     convenience init<ResolveType>(
 86 |         _ name: String,
 87 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         as: FieldType.Type,
 89 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 |             { context, arguments, eventLoopGroup in
126 |                 eventLoopGroup.makeFutureWithTask {
127 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |                 }
129 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     convenience init<ResolveType>(
119 |         _ name: String,
120 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |         as: FieldType.Type,
122 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/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/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
[1995/2004] Compiling Pioneer Field+AsyncAwait.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |             { context, arguments, eventLoopGroup in
 42 |                 eventLoopGroup.makeFutureWithTask {
 43 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |                 }
 45 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     convenience init(
 37 |         _ name: String,
 38 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) where Arguments == NoArguments {
 40 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |             { context, arguments, eventLoopGroup in
 73 |                 eventLoopGroup.makeFutureWithTask {
 74 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 75 |                 }
 76 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     convenience init(
 68 |         _ name: String,
 69 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     ) where Arguments == NoArguments {
 71 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |             { context, arguments, eventLoopGroup in
 93 |                 eventLoopGroup.makeFutureWithTask {
 94 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |     convenience init<ResolveType>(
 86 |         _ name: String,
 87 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         as: FieldType.Type,
 89 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 |             { context, arguments, eventLoopGroup in
126 |                 eventLoopGroup.makeFutureWithTask {
127 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |                 }
129 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     convenience init<ResolveType>(
119 |         _ name: String,
120 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |         as: FieldType.Type,
122 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/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/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
[1996/2004] Compiling Pioneer Field+Middleware.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |             { context, arguments, eventLoopGroup in
 42 |                 eventLoopGroup.makeFutureWithTask {
 43 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |                 }
 45 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     convenience init(
 37 |         _ name: String,
 38 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) where Arguments == NoArguments {
 40 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |             { context, arguments, eventLoopGroup in
 73 |                 eventLoopGroup.makeFutureWithTask {
 74 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 75 |                 }
 76 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     convenience init(
 68 |         _ name: String,
 69 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     ) where Arguments == NoArguments {
 71 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |             { context, arguments, eventLoopGroup in
 93 |                 eventLoopGroup.makeFutureWithTask {
 94 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |     convenience init<ResolveType>(
 86 |         _ name: String,
 87 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         as: FieldType.Type,
 89 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 |             { context, arguments, eventLoopGroup in
126 |                 eventLoopGroup.makeFutureWithTask {
127 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |                 }
129 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     convenience init<ResolveType>(
119 |         _ name: String,
120 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |         as: FieldType.Type,
122 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/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/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
[1997/2004] Compiling Pioneer GraphQL+Execution.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |             { context, arguments, eventLoopGroup in
 42 |                 eventLoopGroup.makeFutureWithTask {
 43 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |                 }
 45 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     convenience init(
 37 |         _ name: String,
 38 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) where Arguments == NoArguments {
 40 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |             { context, arguments, eventLoopGroup in
 73 |                 eventLoopGroup.makeFutureWithTask {
 74 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 75 |                 }
 76 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     convenience init(
 68 |         _ name: String,
 69 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     ) where Arguments == NoArguments {
 71 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |             { context, arguments, eventLoopGroup in
 93 |                 eventLoopGroup.makeFutureWithTask {
 94 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |     convenience init<ResolveType>(
 86 |         _ name: String,
 87 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         as: FieldType.Type,
 89 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 |             { context, arguments, eventLoopGroup in
126 |                 eventLoopGroup.makeFutureWithTask {
127 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |                 }
129 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     convenience init<ResolveType>(
119 |         _ name: String,
120 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |         as: FieldType.Type,
122 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/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/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
[1998/2004] Compiling Pioneer GraphQLError+Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:29:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 27 |             { context, arguments, eventLoopGroup in
 28 |                 eventLoopGroup.makeFutureWithTask {
 29 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 30 |                 }
 31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:23:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     convenience init(
 22 |         _ name: String,
 23 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 25 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:43:21: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |             { context, arguments, eventLoopGroup in
 42 |                 eventLoopGroup.makeFutureWithTask {
 43 |                     await function(type)(context, arguments, eventLoopGroup)
    |                     `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |                 }
 45 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:38:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     convenience init(
 37 |         _ name: String,
 38 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) where Arguments == NoArguments {
 40 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:60:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |             { context, arguments, eventLoopGroup in
 59 |                 eventLoopGroup.makeFutureWithTask {
 60 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 61 |                 }
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:54:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     convenience init(
 53 |         _ name: String,
 54 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>,
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
 56 |     ) {
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:74:25: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |             { context, arguments, eventLoopGroup in
 73 |                 eventLoopGroup.makeFutureWithTask {
 74 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                         `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 75 |                 }
 76 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:69:12: warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     convenience init(
 68 |         _ name: String,
 69 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, FieldType>
    |            `- warning: capture of non-sendable type 'FieldType.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     ) where Arguments == NoArguments {
 71 |         let resolve: AsyncResolve<ObjectType, Context, Arguments, FieldType> = { type in
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:94:27: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 92 |             { context, arguments, eventLoopGroup in
 93 |                 eventLoopGroup.makeFutureWithTask {
 94 |                     await function(type)(context, arguments, eventLoopGroup)
    |                           `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 95 |                 }
 96 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:87:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |     convenience init<ResolveType>(
 86 |         _ name: String,
 87 |         at function: @escaping AsyncAwaitResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         as: FieldType.Type,
 89 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:127:31: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 |             { context, arguments, eventLoopGroup in
126 |                 eventLoopGroup.makeFutureWithTask {
127 |                     try await function(type)(context, arguments, eventLoopGroup)
    |                               `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
128 |                 }
129 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/Field+AsyncAwait.swift:120:12: warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     convenience init<ResolveType>(
119 |         _ name: String,
120 |         at function: @escaping AsyncAwaitThrowingResolveWithEventLoop<ObjectType, Context, Arguments, ResolveType>,
    |            `- warning: capture of non-sendable type 'Arguments.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |         as: FieldType.Type,
122 |         @ArgumentComponentBuilder<Arguments> _ argument: () -> [ArgumentComponent<Arguments>]
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/GraphQL/Extensions/GraphQL+Execution.swift:72:7: warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
70 |         variableValues: variables ?? [:],
71 |         operationName: operationName
72 |     ).get()
   |       `- warning: type 'SubscriptionResult' does not conform to the 'Sendable' protocol
73 | }
74 |
/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/GraphQL/Extensions/GraphQL+Execution.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 6 | //
 7 |
 8 | import GraphQL
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'GraphQL'
 9 | import protocol NIO.EventLoopGroup
10 |
[1999/2004] Compiling Pioneer Drone.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 77 |                         with: oid,
 78 |                         to: client,
 79 |                         given: .from(type: self.proto.next, id: oid, value)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 80 |                     )
 81 |                 case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 84 |                         with: oid,
 85 |                         to: client,
 86 |                         given: .from(type: self.proto.next, id: oid, result)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 87 |                     )
 88 |                 }
[2000/2004] Compiling Pioneer Probe.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 77 |                         with: oid,
 78 |                         to: client,
 79 |                         given: .from(type: self.proto.next, id: oid, value)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 80 |                     )
 81 |                 case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 84 |                         with: oid,
 85 |                         to: client,
 86 |                         given: .from(type: self.proto.next, id: oid, result)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 87 |                     )
 88 |                 }
[2001/2004] Compiling Pioneer GraphQLWs.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 77 |                         with: oid,
 78 |                         to: client,
 79 |                         given: .from(type: self.proto.next, id: oid, value)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 80 |                     )
 81 |                 case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 84 |                         with: oid,
 85 |                         to: client,
 86 |                         given: .from(type: self.proto.next, id: oid, result)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 87 |                     )
 88 |                 }
[2002/2004] Compiling Pioneer SubProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 77 |                         with: oid,
 78 |                         to: client,
 79 |                         given: .from(type: self.proto.next, id: oid, value)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 80 |                     )
 81 |                 case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 84 |                         with: oid,
 85 |                         to: client,
 86 |                         given: .from(type: self.proto.next, id: oid, result)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 87 |                     )
 88 |                 }
[2003/2004] Compiling Pioneer SubscriptionsTransportWs.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 77 |                         with: oid,
 78 |                         to: client,
 79 |                         given: .from(type: self.proto.next, id: oid, value)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 80 |                     )
 81 |                 case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 84 |                         with: oid,
 85 |                         to: client,
 86 |                         given: .from(type: self.proto.next, id: oid, result)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 87 |                     )
 88 |                 }
[2004/2004] Compiling Pioneer WebsocketProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:79:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 77 |                         with: oid,
 78 |                         to: client,
 79 |                         given: .from(type: self.proto.next, id: oid, value)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 80 |                     )
 81 |                 case let .failure(error):
/Users/admin/builder/spi-builder-workspace/Sources/Pioneer/WebSocket/Probe/Probe.swift:86:49: warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 84 |                         with: oid,
 85 |                         to: client,
 86 |                         given: .from(type: self.proto.next, id: oid, result)
    |                                                 `- warning: non-sendable type 'any SubProtocol.Type' of property 'proto' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 87 |                     )
 88 |                 }
Build complete! (87.26s)
Fetching https://github.com/GraphQLSwift/Graphiti.git
Fetching https://github.com/GraphQLSwift/GraphQL.git
Fetching https://github.com/vapor/vapor.git
[1/3500] Fetching graphiti
[176/8526] Fetching graphiti, graphql
[8527/83072] Fetching graphiti, graphql, vapor
Fetched https://github.com/GraphQLSwift/GraphQL.git from cache (2.43s)
Fetched https://github.com/vapor/vapor.git from cache (2.43s)
Fetched https://github.com/GraphQLSwift/Graphiti.git from cache (2.43s)
Computing version for https://github.com/GraphQLSwift/GraphQL.git
Computed https://github.com/GraphQLSwift/GraphQL.git at 2.10.3 (2.84s)
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-collections
[1/16640] Fetching swift-collections
[2664/92979] Fetching swift-collections, swift-nio
Fetched https://github.com/apple/swift-collections from cache (3.64s)
Fetched https://github.com/apple/swift-nio.git from cache (3.64s)
Computing version for https://github.com/GraphQLSwift/Graphiti.git
Computed https://github.com/GraphQLSwift/Graphiti.git at 1.15.2 (4.05s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.2.0 (0.47s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.115.0 (3.00s)
Fetching https://github.com/vapor/multipart-kit.git
Fetching https://github.com/apple/swift-distributed-tracing.git
Fetching https://github.com/vapor/websocket-kit.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-metrics.git
Fetching https://github.com/apple/swift-service-context.git
[1/4993] Fetching swift-distributed-tracing
[51/7199] Fetching swift-distributed-tracing, swift-metrics
[278/9808] Fetching swift-distributed-tracing, swift-metrics, websocket-kit
[459/13276] Fetching swift-distributed-tracing, swift-metrics, websocket-kit, multipart-kit
[876/14357] Fetching swift-distributed-tracing, swift-metrics, websocket-kit, multipart-kit, swift-service-context
[1110/16154] Fetching swift-distributed-tracing, swift-metrics, websocket-kit, multipart-kit, swift-service-context, swift-atomics
[1454/22113] Fetching swift-distributed-tracing, swift-metrics, websocket-kit, multipart-kit, swift-service-context, swift-atomics, swift-algorithms
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (1.17s)
Fetched https://github.com/apple/swift-metrics.git from cache (1.17s)
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-log.git
Fetched https://github.com/vapor/websocket-kit.git from cache (1.22s)
Fetched https://github.com/apple/swift-atomics.git from cache (1.22s)
Fetched https://github.com/apple/swift-service-context.git from cache (1.22s)
Fetched https://github.com/apple/swift-algorithms.git from cache (1.22s)
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/vapor/routing-kit.git
Fetching https://github.com/apple/swift-nio-http2.git
[1120/3468] Fetching multipart-kit
[1121/9410] Fetching multipart-kit, swift-nio-extras
[2652/30262] Fetching multipart-kit, swift-nio-extras, routing-kit
[3797/34098] Fetching multipart-kit, swift-nio-extras, routing-kit, swift-log
Fetched https://github.com/vapor/multipart-kit.git from cache (1.96s)
[797/30630] Fetching swift-nio-extras, routing-kit, swift-log
Fetching https://github.com/vapor/console-kit.git
[3152/46049] Fetching swift-nio-extras, routing-kit, swift-log, swift-crypto
[3570/57581] Fetching swift-nio-extras, routing-kit, swift-log, swift-crypto, swift-nio-http2
[3571/72471] Fetching swift-nio-extras, routing-kit, swift-log, swift-crypto, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-log.git from cache (1.09s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.10s)
[19817/62693] Fetching routing-kit, swift-crypto, swift-nio-http2, swift-nio-ssl
Fetching https://github.com/vapor/async-kit.git
Fetching https://github.com/swift-server/async-http-client.git
[41504/68711] Fetching routing-kit, swift-crypto, swift-nio-http2, swift-nio-ssl, console-kit
[65629/71081] Fetching routing-kit, swift-crypto, swift-nio-http2, swift-nio-ssl, console-kit, async-kit
Fetched https://github.com/vapor/console-kit.git from cache (1.01s)
[60144/65063] Fetching routing-kit, swift-crypto, swift-nio-http2, swift-nio-ssl, async-kit
Fetched https://github.com/vapor/routing-kit.git from cache (1.78s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.78s)
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.78s)
[15988/17789] Fetching swift-crypto, async-kit
[17790/31803] Fetching swift-crypto, async-kit, async-http-client
Fetched https://github.com/apple/swift-crypto.git from cache (1.97s)
[2511/16384] Fetching async-kit, async-http-client
Fetched https://github.com/vapor/async-kit.git from cache (1.53s)
Fetched https://github.com/swift-server/async-http-client.git from cache (1.53s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (4.28s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.2 (0.38s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (0.60s)
Fetching https://github.com/apple/swift-system.git
[1/4436] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (0.94s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (1.44s)
Fetching https://github.com/apple/swift-numerics.git
[1/5757] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.09s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (1.48s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (0.38s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.49s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.16.1 (0.38s)
Fetching https://github.com/apple/swift-nio-transport-services.git
[1/2667] Fetching swift-nio-transport-services
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (0.99s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.0 (1.39s)
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.37s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.38s)
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.42s)
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-asn1.git
[1/1616] Fetching swift-asn1
[115/2520] Fetching swift-asn1, swift-http-types
[206/8704] Fetching swift-asn1, swift-http-types, swift-certificates
[207/9873] Fetching swift-asn1, swift-http-types, swift-certificates, swift-http-structured-headers
[304/12299] Fetching swift-asn1, swift-http-types, swift-certificates, swift-http-structured-headers, swift-service-lifecycle
[1733/17284] Fetching swift-asn1, swift-http-types, swift-certificates, swift-http-structured-headers, swift-service-lifecycle, swift-async-algorithms
Fetched https://github.com/apple/swift-http-types.git from cache (0.96s)
[7537/16380] Fetching swift-asn1, swift-certificates, swift-http-structured-headers, swift-service-lifecycle, swift-async-algorithms
Fetched https://github.com/apple/swift-asn1.git from cache (0.96s)
[5971/14764] Fetching swift-certificates, swift-http-structured-headers, swift-service-lifecycle, swift-async-algorithms
[4826/13595] Fetching swift-certificates, swift-service-lifecycle, swift-async-algorithms
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.96s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.16s)
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (1.16s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.16s)
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 (1.57s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.0.4 (0.46s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.10.0 (0.51s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (0.68s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (0.49s)
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.39s)
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.51s)
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.39s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.2 (0.39s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.20.0 (0.47s)
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.45s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (0.40s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (0.38s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.1 (0.38s)
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.2
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.8.0
Creating working copy for https://github.com/apple/swift-metrics.git
Working copy of https://github.com/apple/swift-metrics.git resolved at 2.7.0
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.28.0
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.26.1
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/GraphQLSwift/GraphQL.git
Working copy of https://github.com/GraphQLSwift/GraphQL.git resolved at 2.10.3
Creating working copy for https://github.com/vapor/multipart-kit.git
Working copy of https://github.com/vapor/multipart-kit.git resolved at 4.7.1
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.12.3
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.24.0
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.32.0
Creating working copy for https://github.com/vapor/async-kit.git
Working copy of https://github.com/vapor/async-kit.git resolved at 1.20.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 4.115.0
Creating working copy for https://github.com/apple/swift-collections
Working copy of https://github.com/apple/swift-collections resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/vapor/console-kit.git
Working copy of https://github.com/vapor/console-kit.git resolved at 4.15.2
Creating working copy for https://github.com/apple/swift-distributed-tracing.git
Working copy of https://github.com/apple/swift-distributed-tracing.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.0.4
Creating working copy for https://github.com/vapor/routing-kit.git
Working copy of https://github.com/vapor/routing-kit.git resolved at 4.9.2
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/vapor/websocket-kit.git
Working copy of https://github.com/vapor/websocket-kit.git resolved at 2.16.1
Creating working copy for https://github.com/GraphQLSwift/Graphiti.git
Working copy of https://github.com/GraphQLSwift/Graphiti.git resolved at 1.15.2
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.10.0
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "graphql",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.10.3",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/GraphQLSwift/GraphQL.git"
    },
    {
      "identity" : "graphiti",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.15.1",
            "upper_bound" : "2.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"
}
Done.