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 FlyingFox, reference 0.24.0 (147d13), with Swift 6.2 (beta) for Linux on 20 Jun 2025 08:28:38 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swhitty/FlyingFox.git
Reference: 0.24.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/swhitty/FlyingFox
 * tag               0.24.0     -> FETCH_HEAD
HEAD is now at 147d130 0.24.0
Cloned https://github.com/swhitty/FlyingFox.git
Revision (git rev-parse @):
147d130b65cab784351069a13fe4e614c331599a
SUCCESS checkout https://github.com/swhitty/FlyingFox.git at 0.24.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/swhitty/FlyingFox.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/4] Write sources
[2/4] Compiling CSystemLinux shims.c
[2/4] Write swift-version-24593BA9C3E375BF.txt
[5/32] Compiling FlyingSocks Logging.swift
[6/32] Compiling FlyingSocks Mutex.swift
[7/32] Compiling FlyingSocks MutexSwift5.swift
[8/32] Compiling FlyingSocks Socket+Android.swift
[9/35] Compiling FlyingSocks SocketPool+ePoll.swift
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:112:23: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
113 |             }
114 |         }
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/host/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 {
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:128:26: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
126 |             }
127 |         } onCancel: { _ in
128 |             Task { await self.stopQueue() }
    |                          `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
129 |         }
130 |     }
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:182:26: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
183 |         }
184 |     }
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
[10/35] Compiling FlyingSocks SocketPool+kQueue.swift
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:112:23: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
113 |             }
114 |         }
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/host/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 {
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:128:26: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
126 |             }
127 |         } onCancel: { _ in
128 |             Task { await self.stopQueue() }
    |                          `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
129 |         }
130 |     }
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:182:26: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
183 |         }
184 |     }
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
[11/35] Compiling FlyingSocks SocketPool.swift
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:112:23: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
113 |             }
114 |         }
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:106:17: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
107 |         guard state == .running || state == .ready else { throw Error("Not Ready") }
108 |         return try await withIdentifiableThrowingContinuation(isolation: self) {
/host/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 {
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:128:26: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
126 |             }
127 |         } onCancel: { _ in
128 |             Task { await self.stopQueue() }
    |                          `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
129 |         }
130 |     }
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:117:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
115 |     }
116 |
117 |     private func getNotifications() async throws -> [EventNotification] {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
118 |         try Task.checkCancellation()
119 |         let queue = UncheckedSendable(wrappedValue: queue)
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:182:26: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
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
183 |         }
184 |     }
/host/spi-builder-workspace/FlyingSocks/Sources/SocketPool.swift:178:18: warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
176 |     }
177 |
178 |     private func suspendUntilContinuationsExist() async throws {
    |                  `- warning: capture of non-Sendable type 'Queue.Type' in an isolated closure
179 |         try await withIdentifiableThrowingContinuation(isolation: self) {
180 |             loop = $0
[12/35] Compiling FlyingSocks AsyncBufferedCollection.swift
[13/35] Compiling FlyingSocks AsyncBufferedEmptySequence.swift
[14/35] Compiling FlyingSocks AsyncBufferedFileSequence.swift
[15/35] Compiling FlyingSocks AsyncBufferedPrefixSequence.swift
[16/35] Compiling FlyingSocks Socket+Darwin.swift
[17/35] Compiling FlyingSocks Socket+Glibc.swift
[18/35] Compiling FlyingSocks Socket+Musl.swift
[19/35] Compiling FlyingSocks Socket+WinSock2.swift
[20/35] Emitting module FlyingSocks
[21/35] Compiling FlyingSocks AsyncBufferedSequence+Extensions.swift
[22/35] Compiling FlyingSocks AsyncBufferedSequence.swift
[23/35] Compiling FlyingSocks AsyncChunkedSequence.swift
[24/35] Compiling FlyingSocks AsyncSharedReplaySequence.swift
[25/35] Compiling FlyingSocks Socket.swift
[26/35] Compiling FlyingSocks SocketAddress.swift
[27/35] Compiling FlyingSocks SocketError.swift
[28/35] Compiling FlyingSocks SocketPool+Poll.swift
[29/35] Compiling FlyingSocks AsyncSocket.swift
[30/35] Compiling FlyingSocks ConsumingAsyncSequence.swift
[31/35] Compiling FlyingSocks IdentifiableContinuation.swift
[32/35] Compiling FlyingSocks Logging+OSLog.swift
[33/35] Compiling FlyingSocks SwiftSupport.swift
[34/35] Compiling FlyingSocks Task+Timeout.swift
[35/35] Compiling FlyingSocks Transferring.swift
[37/76] Compiling FlyingFox HTTPVersion.swift
[38/76] Compiling FlyingFox ClosureHTTPHandler.swift
[39/76] Compiling FlyingFox DirectoryHTTPHandler.swift
[40/76] Compiling FlyingFox FileHTTPHandler.swift
[41/76] Compiling FlyingFox ProxyHTTPHandler.swift
[42/81] Emitting module FlyingFox
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:37:24: warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
35 | import FlyingSocks
36 |
37 | extension sockaddr_in: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
38 |     public static let family = sa_family_t(AF_INET)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
39 | }
40 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:126:1: note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
124 | }
125 |
126 | extension sockaddr_in: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
127 |     public static let family = sa_family_t(AF_INET)
128 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:41:25: warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
39 | }
40 |
41 | extension sockaddr_in6: SocketAddress {
   |                         `- warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
42 |     public static let family = sa_family_t(AF_INET6)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
43 | }
44 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:130:1: note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
128 | }
129 |
130 | extension sockaddr_in6: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
131 |     public static let family = sa_family_t(AF_INET6)
132 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:45:24: warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
43 | }
44 |
45 | extension sockaddr_un: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
46 |     public static let family = sa_family_t(AF_UNIX)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
47 | }
48 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:134:1: note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
132 | }
133 |
134 | extension sockaddr_un: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
135 |     public static let family = sa_family_t(AF_UNIX)
136 | }
[43/81] Compiling FlyingFox HTTPMethod.swift
[44/81] Compiling FlyingFox HTTPRequest+Address.swift
[45/81] Compiling FlyingFox HTTPRequest+QueryItem.swift
[46/81] Compiling FlyingFox HTTPRequest+RouteParameter.swift
[47/81] Compiling FlyingFox HTTPRequest.swift
[48/81] Compiling FlyingFox HTTPResponse.swift
[49/81] Compiling FlyingFox SocketAddress+Glibc.swift
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:37:24: warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
35 | import FlyingSocks
36 |
37 | extension sockaddr_in: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
38 |     public static let family = sa_family_t(AF_INET)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
39 | }
40 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:126:1: note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
124 | }
125 |
126 | extension sockaddr_in: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
127 |     public static let family = sa_family_t(AF_INET)
128 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:41:25: warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
39 | }
40 |
41 | extension sockaddr_in6: SocketAddress {
   |                         `- warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
42 |     public static let family = sa_family_t(AF_INET6)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
43 | }
44 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:130:1: note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
128 | }
129 |
130 | extension sockaddr_in6: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
131 |     public static let family = sa_family_t(AF_INET6)
132 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:45:24: warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
43 | }
44 |
45 | extension sockaddr_un: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
46 |     public static let family = sa_family_t(AF_UNIX)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
47 | }
48 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:134:1: note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
132 | }
133 |
134 | extension sockaddr_un: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
135 |     public static let family = sa_family_t(AF_UNIX)
136 | }
/host/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()
/host/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 {
[50/81] Compiling FlyingFox URLSession+Async.swift
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:37:24: warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
35 | import FlyingSocks
36 |
37 | extension sockaddr_in: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
38 |     public static let family = sa_family_t(AF_INET)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
39 | }
40 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:126:1: note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
124 | }
125 |
126 | extension sockaddr_in: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
127 |     public static let family = sa_family_t(AF_INET)
128 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:41:25: warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
39 | }
40 |
41 | extension sockaddr_in6: SocketAddress {
   |                         `- warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
42 |     public static let family = sa_family_t(AF_INET6)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
43 | }
44 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:130:1: note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
128 | }
129 |
130 | extension sockaddr_in6: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
131 |     public static let family = sa_family_t(AF_INET6)
132 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:45:24: warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
43 | }
44 |
45 | extension sockaddr_un: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
46 |     public static let family = sa_family_t(AF_UNIX)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
47 | }
48 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:134:1: note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
132 | }
133 |
134 | extension sockaddr_un: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
135 |     public static let family = sa_family_t(AF_UNIX)
136 | }
/host/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()
/host/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 {
[51/81] Compiling FlyingFox AsyncStream+WSFrame.swift
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:37:24: warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
35 | import FlyingSocks
36 |
37 | extension sockaddr_in: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
38 |     public static let family = sa_family_t(AF_INET)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
39 | }
40 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:126:1: note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
124 | }
125 |
126 | extension sockaddr_in: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
127 |     public static let family = sa_family_t(AF_INET)
128 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:41:25: warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
39 | }
40 |
41 | extension sockaddr_in6: SocketAddress {
   |                         `- warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
42 |     public static let family = sa_family_t(AF_INET6)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
43 | }
44 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:130:1: note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
128 | }
129 |
130 | extension sockaddr_in6: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
131 |     public static let family = sa_family_t(AF_INET6)
132 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:45:24: warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
43 | }
44 |
45 | extension sockaddr_un: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
46 |     public static let family = sa_family_t(AF_UNIX)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
47 | }
48 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:134:1: note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
132 | }
133 |
134 | extension sockaddr_un: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
135 |     public static let family = sa_family_t(AF_UNIX)
136 | }
/host/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()
/host/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 {
[52/81] Compiling FlyingFox SHA1.swift
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:37:24: warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
35 | import FlyingSocks
36 |
37 | extension sockaddr_in: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
38 |     public static let family = sa_family_t(AF_INET)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
39 | }
40 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:126:1: note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
124 | }
125 |
126 | extension sockaddr_in: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
127 |     public static let family = sa_family_t(AF_INET)
128 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:41:25: warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
39 | }
40 |
41 | extension sockaddr_in6: SocketAddress {
   |                         `- warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
42 |     public static let family = sa_family_t(AF_INET6)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
43 | }
44 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:130:1: note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
128 | }
129 |
130 | extension sockaddr_in6: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
131 |     public static let family = sa_family_t(AF_INET6)
132 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:45:24: warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
43 | }
44 |
45 | extension sockaddr_un: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
46 |     public static let family = sa_family_t(AF_UNIX)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
47 | }
48 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:134:1: note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
132 | }
133 |
134 | extension sockaddr_un: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
135 |     public static let family = sa_family_t(AF_UNIX)
136 | }
/host/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()
/host/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 {
[53/81] Compiling FlyingFox WSCloseCode.swift
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:37:24: warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
35 | import FlyingSocks
36 |
37 | extension sockaddr_in: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_in' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
38 |     public static let family = sa_family_t(AF_INET)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
39 | }
40 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:126:1: note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
124 | }
125 |
126 | extension sockaddr_in: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in' declares conformance to protocol 'SocketAddress' here
127 |     public static let family = sa_family_t(AF_INET)
128 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:41:25: warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
39 | }
40 |
41 | extension sockaddr_in6: SocketAddress {
   |                         `- warning: conformance of 'sockaddr_in6' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
42 |     public static let family = sa_family_t(AF_INET6)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
43 | }
44 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:130:1: note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
128 | }
129 |
130 | extension sockaddr_in6: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_in6' declares conformance to protocol 'SocketAddress' here
131 |     public static let family = sa_family_t(AF_INET6)
132 | }
/host/spi-builder-workspace/FlyingFox/Sources/SocketAddress+Glibc.swift:45:24: warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
43 | }
44 |
45 | extension sockaddr_un: SocketAddress {
   |                        `- warning: conformance of 'sockaddr_un' to protocol 'SocketAddress' was already stated in the protocol's module 'FlyingSocks'
46 |     public static let family = sa_family_t(AF_UNIX)
   |                       `- note: static property 'family' will not be used to satisfy the conformance to 'SocketAddress'
47 | }
48 |
/host/spi-builder-workspace/FlyingSocks/Sources/SocketAddress.swift:134:1: note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
132 | }
133 |
134 | extension sockaddr_un: SocketAddress, @retroactive @unchecked Sendable {
    | `- note: 'sockaddr_un' declares conformance to protocol 'SocketAddress' here
135 |     public static let family = sa_family_t(AF_UNIX)
136 | }
/host/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()
/host/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 {
[54/81] Compiling FlyingFox HTTPDecoder.swift
[55/81] Compiling FlyingFox HTTPEncoder.swift
[56/81] Compiling FlyingFox HTTPHandler.swift
[57/81] Compiling FlyingFox HTTPHeader.swift
[58/81] Compiling FlyingFox HTTPLogging+OSLog.swift
[59/81] Compiling FlyingFox HTTPLogging.swift
[60/81] Compiling FlyingFox RedirectHTTPHandler.swift
[61/81] Compiling FlyingFox RoutedHTTPHandler.swift
[62/81] Compiling FlyingFox WebSocketHTTPHandler.swift
[63/81] Compiling FlyingFox JSONPredicatePattern.swift
[64/81] Compiling FlyingFox NonisolatedUnsafe.swift
[65/81] Compiling FlyingFox AsyncSequence+Extensions.swift
[66/81] Compiling FlyingFox HTTPBodyPattern.swift
[67/81] Compiling FlyingFox HTTPBodySequence.swift
[68/81] Compiling FlyingFox HTTPChunkedEncodedSequence.swift
[69/81] Compiling FlyingFox HTTPClient.swift
[70/81] Compiling FlyingFox HTTPConnection.swift
[71/81] Compiling FlyingFox HTTPRoute.swift
[72/81] Compiling FlyingFox HTTPRouteParameterValue.swift
[73/81] Compiling FlyingFox HTTPServer+Configuration.swift
[74/81] Compiling FlyingFox HTTPServer+Listening.swift
[75/81] Compiling FlyingFox HTTPServer.swift
[76/81] Compiling FlyingFox HTTPStatusCode.swift
[77/81] Compiling FlyingFox WSFrame.swift
/host/spi-builder-workspace/FlyingFox/Sources/WebSocket/WSHandler.swift:103:44: warning: capture of non-Sendable type 'S.AsyncIterator.Type' in an isolated closure
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
104 |                         if let message = try makeMessage(for: frame) {
105 |                             messagesIn.yield(message)
[78/81] Compiling FlyingFox WSFrameEncoder.swift
/host/spi-builder-workspace/FlyingFox/Sources/WebSocket/WSHandler.swift:103:44: warning: capture of non-Sendable type 'S.AsyncIterator.Type' in an isolated closure
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
104 |                         if let message = try makeMessage(for: frame) {
105 |                             messagesIn.yield(message)
[79/81] Compiling FlyingFox WSFrameValidator.swift
/host/spi-builder-workspace/FlyingFox/Sources/WebSocket/WSHandler.swift:103:44: warning: capture of non-Sendable type 'S.AsyncIterator.Type' in an isolated closure
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
104 |                         if let message = try makeMessage(for: frame) {
105 |                             messagesIn.yield(message)
[80/81] Compiling FlyingFox WSHandler.swift
/host/spi-builder-workspace/FlyingFox/Sources/WebSocket/WSHandler.swift:103:44: warning: capture of non-Sendable type 'S.AsyncIterator.Type' in an isolated closure
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
104 |                         if let message = try makeMessage(for: frame) {
105 |                             messagesIn.yield(message)
[81/81] Compiling FlyingFox WSMessage.swift
/host/spi-builder-workspace/FlyingFox/Sources/WebSocket/WSHandler.swift:103:44: warning: capture of non-Sendable type 'S.AsyncIterator.Type' in an isolated closure
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
104 |                         if let message = try makeMessage(for: frame) {
105 |                             messagesIn.yield(message)
Build complete! (18.15s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FlyingFox",
  "name" : "FlyingFox",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "FlyingFox",
      "targets" : [
        "FlyingFox"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "FlyingSocks",
      "targets" : [
        "FlyingSocks"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FlyingSocksTests",
      "module_type" : "SwiftTarget",
      "name" : "FlyingSocksTests",
      "path" : "FlyingSocks/Tests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/FlyingSocks/Tests/Resources",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AsyncBufferedDataSequenceTests.swift",
        "AsyncBufferedEmptySequenceTests.swift",
        "AsyncBufferedFileSequenceTests.swift",
        "AsyncBufferedPrefixSequenceTests.swift",
        "AsyncSharedReplaySequenceTests.swift",
        "AsyncSocketTests.swift",
        "FileManager+TemporaryFile.swift",
        "IdentifiableContinuationTests.swift",
        "Logging+OSLogTests.swift",
        "Logging+PrintTests.swift",
        "MutexTests.swift",
        "SocketAddressTests.swift",
        "SocketErrorTests.swift",
        "SocketPool+PollTests.swift",
        "SocketPool+kQueueTests.swift",
        "SocketPoolTests.swift",
        "SocketTests.swift",
        "Task+TimeoutTests.swift"
      ],
      "target_dependencies" : [
        "FlyingSocks"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FlyingSocks",
      "module_type" : "SwiftTarget",
      "name" : "FlyingSocks",
      "path" : "FlyingSocks/Sources",
      "product_memberships" : [
        "FlyingFox",
        "FlyingSocks"
      ],
      "sources" : [
        "AsyncBufferedCollection.swift",
        "AsyncBufferedEmptySequence.swift",
        "AsyncBufferedFileSequence.swift",
        "AsyncBufferedPrefixSequence.swift",
        "AsyncBufferedSequence+Extensions.swift",
        "AsyncBufferedSequence.swift",
        "AsyncChunkedSequence.swift",
        "AsyncSharedReplaySequence.swift",
        "AsyncSocket.swift",
        "ConsumingAsyncSequence.swift",
        "IdentifiableContinuation.swift",
        "Logging+OSLog.swift",
        "Logging.swift",
        "Mutex.swift",
        "MutexSwift5.swift",
        "Socket+Android.swift",
        "Socket+Darwin.swift",
        "Socket+Glibc.swift",
        "Socket+Musl.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",
        "Transferring.swift"
      ],
      "target_dependencies" : [
        "CSystemLinux"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FlyingFoxTests",
      "module_type" : "SwiftTarget",
      "name" : "FlyingFoxTests",
      "path" : "FlyingFox/Tests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/FlyingFox/Tests/Stubs",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AsyncSequence+ExtensionsTests.swift",
        "AsyncSocketTests.swift",
        "HTTPBodyPatternTests.swift",
        "HTTPBodySequenceTests.swift",
        "HTTPClientTests.swift",
        "HTTPConnectionTests.swift",
        "HTTPDecoderTests.swift",
        "HTTPEncoderTests.swift",
        "HTTPHeaderTests.swift",
        "HTTPLoggingTests.swift",
        "HTTPMethodTests.swift",
        "HTTPRequest+AddressTests.swift",
        "HTTPRequest+Mock.swift",
        "HTTPRequest+QueryItemTests.swift",
        "HTTPRequestTests.swift",
        "HTTPResponse+Mock.swift",
        "HTTPResponseTests.swift",
        "HTTPRouteParameterValueTests.swift",
        "HTTPRouteTests.swift",
        "HTTPServerTests.swift",
        "HTTPStatusCodeTests.swift",
        "Handlers/DirectoryHTTPHandlerTests.swift",
        "Handlers/HTTPHandlerTests.swift",
        "Handlers/RoutedHTTPHandlerTests.swift",
        "Handlers/WebSocketHTTPHandlerTests.swift",
        "URLSession+AsyncTests.swift",
        "WebSocket/AsyncStream+WSFrameTests.swift",
        "WebSocket/WSFrameEncoderTests.swift",
        "WebSocket/WSFrameTests.swift",
        "WebSocket/WSFrameValidatorTests.swift",
        "WebSocket/WSHandlerTests.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",
        "HTTPChunkedEncodedSequence.swift",
        "HTTPClient.swift",
        "HTTPConnection.swift",
        "HTTPDecoder.swift",
        "HTTPEncoder.swift",
        "HTTPHandler.swift",
        "HTTPHeader.swift",
        "HTTPLogging+OSLog.swift",
        "HTTPLogging.swift",
        "HTTPMethod.swift",
        "HTTPRequest+Address.swift",
        "HTTPRequest+QueryItem.swift",
        "HTTPRequest+RouteParameter.swift",
        "HTTPRequest.swift",
        "HTTPResponse.swift",
        "HTTPRoute.swift",
        "HTTPRouteParameterValue.swift",
        "HTTPServer+Configuration.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",
        "JSONPredicatePattern.swift",
        "NonisolatedUnsafe.swift",
        "SocketAddress+Glibc.swift",
        "URLSession+Async.swift",
        "WebSocket/AsyncStream+WSFrame.swift",
        "WebSocket/SHA1.swift",
        "WebSocket/WSCloseCode.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" : "6.0"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.