The Swift Package Index logo.Swift Package Index

Build Information

Successful build of FlyingFox, reference main (30a96b), with Swift 6.2 for macOS (SPM) on 21 Jun 2025 19:04:56 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

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/EmergeTools/FlyingFox.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/EmergeTools/FlyingFox
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 30a96b4 Add watchos
Cloned https://github.com/EmergeTools/FlyingFox.git
Revision (git rev-parse @):
30a96b49f55762750899a4b8ea68301e32b9c112
SUCCESS checkout https://github.com/EmergeTools/FlyingFox.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/EmergeTools/FlyingFox.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-1EA4D86E10B52AF.txt
[4/22] Compiling FlyingSocks Logging.swift
[5/22] Compiling FlyingSocks Socket+Darwin.swift
[6/22] Compiling FlyingSocks SocketError.swift
[7/22] Compiling FlyingSocks SocketPool+Poll.swift
[8/23] Compiling FlyingSocks Socket.swift
[9/23] Compiling FlyingSocks SocketAddress.swift
[10/23] Compiling FlyingSocks Socket+Glibc.swift
[11/23] Compiling FlyingSocks Socket+WinSock2.swift
[12/23] Compiling FlyingSocks SocketPool.swift
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
104 |     }
105 |
106 |     public func suspendSocket(_ socket: Socket, untilReadyFor events: Socket.Events) async throws {
    |                 `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:112:23: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
110 |         } onCancel: { id in
111 |             Task {
112 |                 await self.resumeContinuation(id: id, with: .failure(CancellationError()), for: socket.file)
    |                       `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
113 |             }
114 |         }
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
104 |     }
105 |
106 |     public func suspendSocket(_ socket: Socket, untilReadyFor events: Socket.Events) async throws {
    |                 `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:119:13: warning: capture of non-sendable type 'Queue.Type' in an isolated closure
117 |     private func getNotifications() async throws -> [EventNotification] {
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
    |             `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure
120 |         return try await withIdentifiableThrowingContinuation(isolation: self) { continuation in
121 |             dispatchQueue.async {
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:128:26: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
126 |             }
127 |         } onCancel: { _ in
128 |             Task { await self.stopQueue() }
    |                          `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
129 |         }
130 |     }
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:182:26: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
180 |             loop = $0
181 |         } onCancel: { id in
182 |             Task { await self.cancelLoopContinuation(with: id) }
    |                          `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
183 |         }
184 |     }
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
[13/23] Compiling FlyingSocks SwiftSupport.swift
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
104 |     }
105 |
106 |     public func suspendSocket(_ socket: Socket, untilReadyFor events: Socket.Events) async throws {
    |                 `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:112:23: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
110 |         } onCancel: { id in
111 |             Task {
112 |                 await self.resumeContinuation(id: id, with: .failure(CancellationError()), for: socket.file)
    |                       `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
113 |             }
114 |         }
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
104 |     }
105 |
106 |     public func suspendSocket(_ socket: Socket, untilReadyFor events: Socket.Events) async throws {
    |                 `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:119:13: warning: capture of non-sendable type 'Queue.Type' in an isolated closure
117 |     private func getNotifications() async throws -> [EventNotification] {
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
    |             `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure
120 |         return try await withIdentifiableThrowingContinuation(isolation: self) { continuation in
121 |             dispatchQueue.async {
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:128:26: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
126 |             }
127 |         } onCancel: { _ in
128 |             Task { await self.stopQueue() }
    |                          `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
129 |         }
130 |     }
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:182:26: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
180 |             loop = $0
181 |         } onCancel: { id in
182 |             Task { await self.cancelLoopContinuation(with: id) }
    |                          `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
183 |         }
184 |     }
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-sendable type 'Queue.Type' in an isolated closure; this is an error in the Swift 6 language mode
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
[14/23] Compiling FlyingSocks SocketPool+ePoll.swift
[15/23] Compiling FlyingSocks SocketPool+kQueue.swift
[16/23] Compiling FlyingSocks AllocatedLock.swift
[17/23] Compiling FlyingSocks AsyncChunkedSequence.swift
[18/23] Emitting module FlyingSocks
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/IdentifiableContinuation.swift:49:13: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 47 | @_unsafeInheritExecutor
 48 | @_spi(Private)
 49 | public func withIdentifiableContinuation<T>(
    |             `- warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 50 |   isolation: isolated some Actor,
 51 |   function: String = #function,
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/IdentifiableContinuation.swift:98:13: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 96 | @_unsafeInheritExecutor
 97 | @_spi(Private)
 98 | public func withIdentifiableThrowingContinuation<T>(
    |             `- warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 99 |   isolation: isolated some Actor,
100 |   function: String = #function,
[19/23] Compiling FlyingSocks AsyncDataSequence.swift
[20/23] Compiling FlyingSocks AsyncSocket.swift
[21/23] Compiling FlyingSocks IdentifiableContinuation.swift
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/IdentifiableContinuation.swift:49:13: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 47 | @_unsafeInheritExecutor
 48 | @_spi(Private)
 49 | public func withIdentifiableContinuation<T>(
    |             `- warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 50 |   isolation: isolated some Actor,
 51 |   function: String = #function,
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/IdentifiableContinuation.swift:98:13: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 96 | @_unsafeInheritExecutor
 97 | @_spi(Private)
 98 | public func withIdentifiableThrowingContinuation<T>(
    |             `- warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 99 |   isolation: isolated some Actor,
100 |   function: String = #function,
[22/23] Compiling FlyingSocks Logging+OSLog.swift
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/IdentifiableContinuation.swift:49:13: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 47 | @_unsafeInheritExecutor
 48 | @_spi(Private)
 49 | public func withIdentifiableContinuation<T>(
    |             `- warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 50 |   isolation: isolated some Actor,
 51 |   function: String = #function,
/Users/admin/builder/spi-builder-workspace/FlyingSocks/Sources/IdentifiableContinuation.swift:98:13: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 96 | @_unsafeInheritExecutor
 97 | @_spi(Private)
 98 | public func withIdentifiableThrowingContinuation<T>(
    |             `- warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
 99 |   isolation: isolated some Actor,
100 |   function: String = #function,
[23/23] Compiling FlyingSocks Task+Timeout.swift
[24/58] Compiling FlyingFox AsyncSequence+Extensions.swift
[25/58] Compiling FlyingFox HTTPBodyPattern.swift
[26/58] Compiling FlyingFox HTTPBodySequence.swift
[27/58] Compiling FlyingFox HTTPClient.swift
[28/61] Compiling FlyingFox ClosureHTTPHandler.swift
[29/61] Compiling FlyingFox DirectoryHTTPHandler.swift
[30/61] Compiling FlyingFox FileHTTPHandler.swift
[31/61] Compiling FlyingFox ProxyHTTPHandler.swift
[32/61] Emitting module FlyingFox
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/HTTPServer.swift:172:6: warning: '17.0' is not a valid version number for macOS
170 | #endif
171 |
172 |     @available(macOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
    |      `- warning: '17.0' is not a valid version number for macOS
173 |     @available(iOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
174 |     @available(tvOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
[33/61] Compiling FlyingFox URLSession+Async.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:39:49: warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
37 |         AsyncThrowingStream<WSFrame, any Error> {
38 |             do {
39 |                 return try await WSFrameEncoder.decodeFrame(from: bytes)
   |                                                 `- warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
40 |             } catch SocketError.disconnected, is SequenceTerminationError {
41 |                 return nil
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:36:37: warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
34 | extension AsyncThrowingStream<WSFrame, any Error> {
35 |
36 |     static func decodingFrames(from bytes: some AsyncChunkedSequence<UInt8>) -> Self {
   |                                     `- warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
37 |         AsyncThrowingStream<WSFrame, any Error> {
38 |             do {
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:55:34: warning: capture of non-sendable type 'S.Type' in an isolated closure
53 |         return AsyncStream<WSFrame> {
54 |             do {
55 |                 return try await iterator.next()
   |                                  `- warning: capture of non-sendable type 'S.Type' in an isolated closure
56 |             } catch {
57 |                 iterator.close()
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:52:13: warning: capture of non-sendable type 'S.Type' in an isolated closure
50 |
51 |     static func protocolFrames<S: AsyncSequence>(from frames: S) -> Self where S.Element == WSFrame {
52 |         let iterator = Iterator(from: frames)
   |             `- warning: capture of non-sendable type 'S.Type' in an isolated closure
53 |         return AsyncStream<WSFrame> {
54 |             do {
[34/61] Compiling FlyingFox UncheckedSendable.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:39:49: warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
37 |         AsyncThrowingStream<WSFrame, any Error> {
38 |             do {
39 |                 return try await WSFrameEncoder.decodeFrame(from: bytes)
   |                                                 `- warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
40 |             } catch SocketError.disconnected, is SequenceTerminationError {
41 |                 return nil
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:36:37: warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
34 | extension AsyncThrowingStream<WSFrame, any Error> {
35 |
36 |     static func decodingFrames(from bytes: some AsyncChunkedSequence<UInt8>) -> Self {
   |                                     `- warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
37 |         AsyncThrowingStream<WSFrame, any Error> {
38 |             do {
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:55:34: warning: capture of non-sendable type 'S.Type' in an isolated closure
53 |         return AsyncStream<WSFrame> {
54 |             do {
55 |                 return try await iterator.next()
   |                                  `- warning: capture of non-sendable type 'S.Type' in an isolated closure
56 |             } catch {
57 |                 iterator.close()
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:52:13: warning: capture of non-sendable type 'S.Type' in an isolated closure
50 |
51 |     static func protocolFrames<S: AsyncSequence>(from frames: S) -> Self where S.Element == WSFrame {
52 |         let iterator = Iterator(from: frames)
   |             `- warning: capture of non-sendable type 'S.Type' in an isolated closure
53 |         return AsyncStream<WSFrame> {
54 |             do {
[35/61] Compiling FlyingFox AsyncStream+WSFrame.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:39:49: warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
37 |         AsyncThrowingStream<WSFrame, any Error> {
38 |             do {
39 |                 return try await WSFrameEncoder.decodeFrame(from: bytes)
   |                                                 `- warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
40 |             } catch SocketError.disconnected, is SequenceTerminationError {
41 |                 return nil
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:36:37: warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
34 | extension AsyncThrowingStream<WSFrame, any Error> {
35 |
36 |     static func decodingFrames(from bytes: some AsyncChunkedSequence<UInt8>) -> Self {
   |                                     `- warning: capture of non-sendable type '(some AsyncChunkedSequence<UInt8>).Type' in an isolated closure
37 |         AsyncThrowingStream<WSFrame, any Error> {
38 |             do {
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:55:34: warning: capture of non-sendable type 'S.Type' in an isolated closure
53 |         return AsyncStream<WSFrame> {
54 |             do {
55 |                 return try await iterator.next()
   |                                  `- warning: capture of non-sendable type 'S.Type' in an isolated closure
56 |             } catch {
57 |                 iterator.close()
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/AsyncStream+WSFrame.swift:52:13: warning: capture of non-sendable type 'S.Type' in an isolated closure
50 |
51 |     static func protocolFrames<S: AsyncSequence>(from frames: S) -> Self where S.Element == WSFrame {
52 |         let iterator = Iterator(from: frames)
   |             `- warning: capture of non-sendable type 'S.Type' in an isolated closure
53 |         return AsyncStream<WSFrame> {
54 |             do {
[36/61] Compiling FlyingFox HTTPRequest+QueryItem.swift
[37/61] Compiling FlyingFox HTTPRequest.swift
[38/61] Compiling FlyingFox HTTPResponse.swift
[39/61] Compiling FlyingFox HTTPRoute.swift
[40/61] Compiling FlyingFox HTTPHeader.swift
[41/61] Compiling FlyingFox HTTPLogging+OSLog.swift
[42/61] Compiling FlyingFox HTTPLogging.swift
[43/61] Compiling FlyingFox HTTPMethod.swift
[44/61] Compiling FlyingFox HTTPConnection.swift
[45/61] Compiling FlyingFox HTTPDecoder.swift
[46/61] Compiling FlyingFox HTTPEncoder.swift
[47/61] Compiling FlyingFox HTTPHandler.swift
[48/61] Compiling FlyingFox HTTPServer+Listening.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/HTTPServer.swift:172:6: warning: '17.0' is not a valid version number for macOS
170 | #endif
171 |
172 |     @available(macOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
    |      `- warning: '17.0' is not a valid version number for macOS
173 |     @available(iOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
174 |     @available(tvOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
[49/61] Compiling FlyingFox HTTPServer.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/HTTPServer.swift:172:6: warning: '17.0' is not a valid version number for macOS
170 | #endif
171 |
172 |     @available(macOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
    |      `- warning: '17.0' is not a valid version number for macOS
173 |     @available(iOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
174 |     @available(tvOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
[50/61] Compiling FlyingFox HTTPStatusCode.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/HTTPServer.swift:172:6: warning: '17.0' is not a valid version number for macOS
170 | #endif
171 |
172 |     @available(macOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
    |      `- warning: '17.0' is not a valid version number for macOS
173 |     @available(iOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
174 |     @available(tvOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
[51/61] Compiling FlyingFox HTTPVersion.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/HTTPServer.swift:172:6: warning: '17.0' is not a valid version number for macOS
170 | #endif
171 |
172 |     @available(macOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
    |      `- warning: '17.0' is not a valid version number for macOS
173 |     @available(iOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
174 |     @available(tvOS, deprecated: 17.0, renamed: "listenForConnectionsDiscarding(on:)")
[52/61] Compiling FlyingFox WSFrameValidator.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/WSHandler.swift:103:44: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
101 |             group.addTask {
102 |                 do {
103 |                     for try await frame in framesIn {
    |                                            `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
104 |                         if let message = try makeMessage(for: frame) {
105 |                             messagesIn.yield(message)
[53/61] Compiling FlyingFox WSHandler.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/WSHandler.swift:103:44: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
101 |             group.addTask {
102 |                 do {
103 |                     for try await frame in framesIn {
    |                                            `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
104 |                         if let message = try makeMessage(for: frame) {
105 |                             messagesIn.yield(message)
[54/61] Compiling FlyingFox WSMessage.swift
/Users/admin/builder/spi-builder-workspace/FlyingFox/Sources/WebSocket/WSHandler.swift:103:44: warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
101 |             group.addTask {
102 |                 do {
103 |                     for try await frame in framesIn {
    |                                            `- warning: capture of non-sendable type 'S.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
104 |                         if let message = try makeMessage(for: frame) {
105 |                             messagesIn.yield(message)
[55/61] Compiling FlyingFox RedirectHTTPHandler.swift
[56/61] Compiling FlyingFox RoutedHTTPHandler.swift
[57/61] Compiling FlyingFox WebSocketHTTPHandler.swift
[58/61] Compiling FlyingFox SocketAddress+Glibc.swift
[59/61] Compiling FlyingFox SHA1.swift
[60/61] Compiling FlyingFox WSFrame.swift
[61/61] Compiling FlyingFox WSFrameEncoder.swift
Build complete! (5.93s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FlyingFox",
  "name" : "FlyingFox",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "FlyingFox",
      "targets" : [
        "FlyingFox"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "FlyingSocks",
      "targets" : [
        "FlyingSocks"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "FlyingSocksTests",
      "module_type" : "SwiftTarget",
      "name" : "FlyingSocksTests",
      "path" : "FlyingSocks/Tests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/FlyingSocks/Tests/Resources",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AllocatedLockTests.swift",
        "AsyncDataSequenceTests.swift",
        "AsyncSocketTests.swift",
        "IdentifiableContinuationTests.swift",
        "Logging+OSLogTests.swift",
        "Logging+PrintTests.swift",
        "Socket+Pair.swift",
        "SocketAddress+Glibc.swift",
        "SocketAddressTests.swift",
        "SocketErrorTests.swift",
        "SocketPool+PollTests.swift",
        "SocketPool+kQueueTests.swift",
        "SocketPoolTests.swift",
        "SocketTests.swift",
        "Task+TimeoutTests.swift",
        "XCTest+Extension.swift"
      ],
      "target_dependencies" : [
        "FlyingSocks"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FlyingSocks",
      "module_type" : "SwiftTarget",
      "name" : "FlyingSocks",
      "path" : "FlyingSocks/Sources",
      "product_memberships" : [
        "FlyingFox",
        "FlyingSocks"
      ],
      "sources" : [
        "AllocatedLock.swift",
        "AsyncChunkedSequence.swift",
        "AsyncDataSequence.swift",
        "AsyncSocket.swift",
        "IdentifiableContinuation.swift",
        "Logging+OSLog.swift",
        "Logging.swift",
        "Socket+Darwin.swift",
        "Socket+Glibc.swift",
        "Socket+WinSock2.swift",
        "Socket.swift",
        "SocketAddress.swift",
        "SocketError.swift",
        "SocketPool+Poll.swift",
        "SocketPool+ePoll.swift",
        "SocketPool+kQueue.swift",
        "SocketPool.swift",
        "SwiftSupport.swift",
        "Task+Timeout.swift"
      ],
      "target_dependencies" : [
        "CSystemLinux"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FlyingFoxTests",
      "module_type" : "SwiftTarget",
      "name" : "FlyingFoxTests",
      "path" : "FlyingFox/Tests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/FlyingFox/Tests/Stubs",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AsyncSequence+ExtensionsTests.swift",
        "AsyncSocketTests.swift",
        "ConsumingAsyncSequence.swift",
        "HTTPBodyPatternTests.swift",
        "HTTPBodySequenceTests.swift",
        "HTTPClientTests.swift",
        "HTTPConnectionTests.swift",
        "HTTPDecoderTests.swift",
        "HTTPEncoderTests.swift",
        "HTTPLoggingTests.swift",
        "HTTPRequest+Mock.swift",
        "HTTPRequest+QueryItemTests.swift",
        "HTTPRequestTests.swift",
        "HTTPResponse+Mock.swift",
        "HTTPResponseTests.swift",
        "HTTPRouteTests.swift",
        "HTTPServerTests.swift",
        "HTTPStatusCodeTests.swift",
        "Handlers/DirectoryHTTPHandlerTests.swift",
        "Handlers/HTTPHandlerTests.swift",
        "Handlers/RoutedHTTPHandlerTests.swift",
        "Handlers/WebSocketHTTPHandlerTests.swift",
        "Socket+Pair.swift",
        "SocketAddress+Glibc.swift",
        "URLSession+AsyncTests.swift",
        "WebSocket/AsyncStream+WSFrameTests.swift",
        "WebSocket/WSFrameEncoderTests.swift",
        "WebSocket/WSFrameTests.swift",
        "WebSocket/WSFrameValidatorTests.swift",
        "WebSocket/WSHandlerTests.swift",
        "XCTest+Extension.swift"
      ],
      "target_dependencies" : [
        "FlyingFox"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FlyingFox",
      "module_type" : "SwiftTarget",
      "name" : "FlyingFox",
      "path" : "FlyingFox/Sources",
      "product_memberships" : [
        "FlyingFox"
      ],
      "sources" : [
        "AsyncSequence+Extensions.swift",
        "HTTPBodyPattern.swift",
        "HTTPBodySequence.swift",
        "HTTPClient.swift",
        "HTTPConnection.swift",
        "HTTPDecoder.swift",
        "HTTPEncoder.swift",
        "HTTPHandler.swift",
        "HTTPHeader.swift",
        "HTTPLogging+OSLog.swift",
        "HTTPLogging.swift",
        "HTTPMethod.swift",
        "HTTPRequest+QueryItem.swift",
        "HTTPRequest.swift",
        "HTTPResponse.swift",
        "HTTPRoute.swift",
        "HTTPServer+Listening.swift",
        "HTTPServer.swift",
        "HTTPStatusCode.swift",
        "HTTPVersion.swift",
        "Handlers/ClosureHTTPHandler.swift",
        "Handlers/DirectoryHTTPHandler.swift",
        "Handlers/FileHTTPHandler.swift",
        "Handlers/ProxyHTTPHandler.swift",
        "Handlers/RedirectHTTPHandler.swift",
        "Handlers/RoutedHTTPHandler.swift",
        "Handlers/WebSocketHTTPHandler.swift",
        "SocketAddress+Glibc.swift",
        "URLSession+Async.swift",
        "UncheckedSendable.swift",
        "WebSocket/AsyncStream+WSFrame.swift",
        "WebSocket/SHA1.swift",
        "WebSocket/WSFrame.swift",
        "WebSocket/WSFrameEncoder.swift",
        "WebSocket/WSFrameValidator.swift",
        "WebSocket/WSHandler.swift",
        "WebSocket/WSMessage.swift"
      ],
      "target_dependencies" : [
        "FlyingSocks"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CSystemLinux",
      "module_type" : "ClangTarget",
      "name" : "CSystemLinux",
      "path" : "CSystemLinux",
      "product_memberships" : [
        "FlyingFox",
        "FlyingSocks"
      ],
      "sources" : [
        "shims.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.