The Swift Package Index logo.Swift Package Index

Build Information

Failed to build queues, reference 1.18.0 (4fa1ef), with Swift 6.1 for macOS (SPM) on 7 Mar 2026 07:52:25 UTC.

Build Command

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

Build Log

277 |             timeoutTask.cancel()
278 |             self?.waiters.removeValue(forKey: waiterId)
    |                           `- error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
279 |         }
280 |
<unknown>:0: error: instance method 'next()' is not available due to missing import of defining module 'OrderedCollections'
<unknown>:0: error: instance method 'makeIterator()' is not available due to missing import of defining module 'OrderedCollections'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:380:39: error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | |- note: add import of module 'OrderedCollections'
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
378 |         // connection(s) are closed, the request logic will try to open new ones.
379 |         while !self.available.isEmpty, !self.waiters.isEmpty {
380 |             let waiter = self.waiters.removeFirst()
    |                                       `- error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
381 |
382 |             logger.debug("Servicing connection waitlist item", metadata: ["waiter": .stringConvertible(waiter.key)])
[1872/1965] Compiling NIOHTTP1 HTTPHeaderValidator.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:137:25: error: initializer 'init(minimumCapacity:persistent:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
135 |         self.available = .init(minimumCapacity: maxConnections)
136 |         self.activeConnections = 0
137 |         self.waiters = .init(minimumCapacity: maxConnections << 2)
    |                         `- error: initializer 'init(minimumCapacity:persistent:)' is not available due to missing import of defining module 'OrderedCollections'
138 |         self.didShutdown = false
139 |     }
<unknown>:0: error: instance method 'makeIterator()' is not available due to missing import of defining module 'DequeModule'
<unknown>:0: error: instance method 'next()' is not available due to missing import of defining module 'DequeModule'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:379:54: error: property 'isEmpty' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | |- note: add import of module 'DequeModule'
    | `- note: add import of module 'DequeModule'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
377 |         // For as long as there are connections available, try to dequeue waiters. Even if the available
378 |         // connection(s) are closed, the request logic will try to open new ones.
379 |         while !self.available.isEmpty, !self.waiters.isEmpty {
    |                                                      `- error: property 'isEmpty' is not available due to missing import of defining module 'OrderedCollections'
380 |             let waiter = self.waiters.removeFirst()
381 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:273:21: error: subscript 'subscript(_:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
271 |         }
272 |         logger.trace("Adding connection request to waitlist", metadata: ["waiter": .stringConvertible(waiterId)])
273 |         self.waiters[waiterId] = (logger: logger, promise: promise, timeoutTask: timeoutTask)
    |                     `- error: subscript 'subscript(_:)' is not available due to missing import of defining module 'OrderedCollections'
274 |
275 |         promise.futureResult.whenComplete { [weak self] _ in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:135:27: error: initializer 'init(minimumCapacity:)' is not available due to missing import of defining module 'DequeModule'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'DequeModule'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
133 |         self.logger = logger
134 |         self.eventLoop = eventLoop
135 |         self.available = .init(minimumCapacity: maxConnections)
    |                           `- error: initializer 'init(minimumCapacity:)' is not available due to missing import of defining module 'DequeModule'
136 |         self.activeConnections = 0
137 |         self.waiters = .init(minimumCapacity: maxConnections << 2)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:426:22: error: instance method 'removeAll(keepingCapacity:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
424 |             waiter.promise.fail(ConnectionPoolError.shutdown)
425 |         }
426 |         self.waiters.removeAll()
    |                      `- error: instance method 'removeAll(keepingCapacity:)' is not available due to missing import of defining module 'OrderedCollections'
427 |
428 |         return pruningCancellationPromise.futureResult.flatMap {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:260:33: error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
258 |         let timeoutTask = self.eventLoop.scheduleTask(in: self.requestTimeout) { [weak self] in
259 |             // Try to avoid a spurious log message and failure if the waiter has already been removed from the list.
260 |             guard self?.waiters.removeValue(forKey: waiterId) != nil else {
    |                                 `- error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
261 |                 logger.trace("Waiter already removed when timeout task fired", metadata: ["waiter": .stringConvertible(waiterId)])
262 |                 return
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:278:27: error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
276 |             logger.trace("Connection request completed", metadata: ["waiter": .stringConvertible(waiterId)])
277 |             timeoutTask.cancel()
278 |             self?.waiters.removeValue(forKey: waiterId)
    |                           `- error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
279 |         }
280 |
<unknown>:0: error: instance method 'next()' is not available due to missing import of defining module 'OrderedCollections'
<unknown>:0: error: instance method 'makeIterator()' is not available due to missing import of defining module 'OrderedCollections'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:380:39: error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | |- note: add import of module 'OrderedCollections'
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
378 |         // connection(s) are closed, the request logic will try to open new ones.
379 |         while !self.available.isEmpty, !self.waiters.isEmpty {
380 |             let waiter = self.waiters.removeFirst()
    |                                       `- error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
381 |
382 |             logger.debug("Servicing connection waitlist item", metadata: ["waiter": .stringConvertible(waiter.key)])
[1873/1965] Compiling NIOTLS TLSEvents.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1874/1965] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1875/1965] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1876/1965] Compiling NIOSOCKS ClientStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1877/1965] Compiling NIOSOCKS SOCKSResponse.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1878/1965] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1879/1965] Compiling NIOSOCKS Messages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1880/1965] Compiling NIOSOCKS Errors.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1881/1965] Compiling NIOSOCKS Helpers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1882/1965] Compiling NIOSOCKS SOCKSRequest.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1885/1966] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1886/1966] Emitting module NIOTLS
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1887/1966] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1888/1966] Compiling NIOTLS SNIHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1889/1966] Emitting module NIOSOCKS
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1892/1966] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1893/1998] Emitting module NIOFoundationCompat
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1894/1998] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1895/1998] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1896/1998] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1897/1998] Compiling NIOSOCKS ServerStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1898/1998] Compiling NIOSSL SSLCertificate.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1899/1998] Compiling NIOSSL SSLCertificateExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1900/1998] Compiling NIOSSL SSLCertificateName.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1901/1998] Compiling NIOSSL SSLPublicKey.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1902/1998] Emitting module _NIOFileSystem
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1903/2002] Compiling NIOSSL TLSConfiguration.swift
[1904/2002] Compiling NIOSSL NIOSSLServerHandler.swift
[1905/2024] Compiling NIOTransportServices NIOTSChannelOptions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1906/2024] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1907/2024] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1908/2024] Compiling NIOTransportServices NIOTSListenerChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1909/2024] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1910/2024] Compiling NIOSSL PosixPort.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1911/2024] Compiling NIOSSL SSLCallbacks.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1912/2024] Compiling NIOSSL AndroidCABundle.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1913/2024] Compiling NIOSSL ByteBufferBIO.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1914/2024] Compiling _NIOFileSystem Syscalls.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1915/2024] Compiling _NIOFileSystem SystemFileHandle.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1916/2024] Compiling _NIOFileSystem Utilities.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1917/2024] Compiling _NIOFileSystem NIOFilePath.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1918/2024] Compiling NIOSSL CustomPrivateKey.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1919/2024] Compiling NIOSSL IdentityVerification.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1920/2024] Compiling _NIOFileSystem Mocking.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1921/2024] Compiling _NIOFileSystem Syscall.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1922/2024] Compiling NIOTransportServices NIOTSErrors.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1923/2024] Compiling NIOTransportServices NIOTSEventLoop.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1924/2024] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1925/2024] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1926/2024] Compiling NIOTransportServices StateManagedChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1929/2024] Compiling NIOSSL ObjectIdentifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1930/2024] Compiling _NIOFileSystem NIOFileSystemSendableMetatype.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1931/2024] Compiling _NIOFileSystem OpenOptions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1932/2024] Compiling _NIOFileSystem String+FileSystem.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1933/2024] Compiling _NIOFileSystem resource_bundle_accessor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1934/2024] Compiling NIOTransportServices NIOTSNetworkEvents.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1935/2024] Compiling NIOTransportServices NIOTSSingletons.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1936/2024] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1939/2024] Compiling NIOTransportServices NIOTSDatagramConnectionChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1940/2024] Compiling NIOTransportServices NIOTSBootstraps.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1941/2024] Compiling NIOTransportServices NIOTSDatagramListenerBootstrap.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1942/2024] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1943/2024] Compiling NIOTransportServices AcceptHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1944/2024] Compiling NIOTransportServices NIOTSDatagramConnectionBootstrap.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1947/2024] Compiling NIOTransportServices StateManagedListenerChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1948/2024] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1949/2024] Emitting module NIOHTTP1
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1950/2024] Emitting module NIOTransportServices
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1951/2092] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1952/2092] Emitting module AsyncKit
[1953/2092] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1954/2092] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1957/2092] Compiling NIOExtras RequestResponseWithIDHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1959/2092] Compiling NIOExtras RequestResponseHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1960/2092] Compiling NIOExtras RequestResponseHandlers+State.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1961/2092] Compiling NIOExtras NIOExtrasError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1962/2092] Compiling NIOExtras NIOLengthFieldBitLength.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1963/2092] Compiling NIOWebSocket SHA1.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1966/2094] Compiling NIOWebSocket NIOWebSocketClientUpgrader.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1967/2094] Compiling NIOWebSocket NIOWebSocketFrameAggregator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1968/2094] Compiling NIOWebSocket NIOWebSocketServerUpgrader.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1969/2094] Compiling NIOWebSocket WebSocketFrameEncoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1970/2094] Compiling NIOExtras NIORequestIdentifiable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1971/2094] Compiling NIOExtras PCAPRingBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1974/2094] Compiling NIOExtras LineBasedFrameDecoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1975/2094] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1976/2094] Compiling NIOExtras QuiescingHelper.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1978/2094] Compiling NIOHTTPCompression HTTPDecompression.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1979/2094] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1980/2094] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1981/2094] Emitting module NIOHTTPCompression
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1982/2094] Compiling NIOHTTPCompression HTTPCompression.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1983/2094] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1984/2094] Compiling NIOHPACK IntegerCoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1985/2094] Compiling NIOHPACK IndexedHeaderTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1986/2094] Compiling NIOHPACK HuffmanTables.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1987/2094] Emitting module NIOWebSocket
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1990/2097] Compiling NIOWebSocket WebSocketOpcode.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1991/2097] Compiling NIOWebSocket WebSocketFrameDecoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1992/2097] Compiling NIOWebSocket WebSocketFrame.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1993/2097] Compiling NIOWebSocket WebSocketErrorCodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1994/2097] Compiling NIOHPACK HuffmanCoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1995/2097] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1996/2097] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1997/2097] Compiling MultipartKit Exports.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1998/2097] Compiling MultipartKit FormDataDecoder.Decoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1999/2097] Compiling NIOHPACK DynamicHeaderTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2000/2097] Compiling NIOHPACK HPACKDecoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2001/2097] Emitting module NIOExtras
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2002/2097] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2003/2097] Compiling NIOExtras LengthFieldPrepender.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2004/2097] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2018/2097] Compiling NIOHPACK StaticHeaderTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2027/2097] Emitting module MultipartKit
[2036/2097] Emitting module NIOSSL
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2037/2100] Compiling NIOHPACK HeaderTables.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2038/2100] Compiling NIOHPACK HPACKErrors.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2041/2100] Compiling NIOHPACK HPACKHeader.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2042/2100] Compiling NIOHPACK HPACKEncoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2043/2100] Emitting module NIOHPACK
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2044/2100] Compiling MultipartKit MultipartSerializer.swift
[2045/2100] Compiling MultipartKit Utilities.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2068/2129] Compiling NIOHTTP2 HTTP2Error.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2069/2129] Compiling NIOHTTP2 HTTP2ErrorCode.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2070/2129] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2071/2129] Compiling NIOHTTP2 HTTP2Frame.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2072/2129] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2073/2129] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2074/2129] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2075/2132] Compiling NIOHTTP2 ReceivingDataState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2076/2132] Compiling NIOHTTP2 ReceivingGoAwayState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2077/2132] Compiling NIOHTTP2 ReceivingHeadersState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2078/2135] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2079/2135] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2080/2135] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2081/2136] Compiling NIOHTTP2 ConnectionStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2082/2136] Compiling NIOHTTP2 ConnectionStreamsState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2083/2136] Compiling NIOHTTP2 MayReceiveFrames.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2084/2164] Compiling NIOHTTP2 MaySendFrames.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2085/2164] Compiling NIOHTTP2 SendingDataState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2086/2164] Compiling NIOHTTP2 SendingGoawayState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2087/2169] Compiling NIOExtras WritePCAPHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2088/2169] Emitting module NIOFileSystem
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2089/2169] Compiling NIOFileSystem Exports.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2090/2169] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2091/2169] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2092/2169] Emitting module _NIOFileSystemFoundationCompat
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2093/2177] Compiling NIOHTTP2 SendingRstStreamState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2094/2177] Compiling NIOHTTP2 SendingWindowUpdateState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2095/2177] Compiling NIOHTTP2 HTTP2SettingsState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2096/2177] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2097/2177] Compiling NIOHTTP2 HasFlowControlWindows.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2098/2177] Compiling NIOHTTP2 HasLocalSettings.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2099/2177] Compiling NIOHTTP2 HasRemoteSettings.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2100/2184] Compiling WebSocketKit WebSocketHandler.swift
[2101/2184] Compiling NIOHTTP2 LocallyQuiescingState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2102/2184] Compiling NIOHTTP2 QuiescingState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2103/2184] Compiling NIOHTTP2 RemotelyQuiescingState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2104/2184] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2105/2184] Compiling NIOHTTP2 StateMachineResult.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2106/2184] Compiling NIOHTTP2 ContentLengthVerifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2107/2184] Compiling NIOHTTP2 DOSHeuristics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2108/2184] Compiling NIOHTTP2 HTTP2UserEvents.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2109/2184] Compiling NIOHTTP2 InboundEventBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2110/2184] Compiling NIOHTTP2 InboundWindowManager.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2111/2184] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2112/2184] Compiling NIOHTTP2 NIOHTTP2FrameDelegate.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2113/2184] Compiling NIOHTTP2 NIOHTTP2ServerConnectionManagementHandler+StateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2114/2184] Compiling NIOHTTP2 NIOHTTP2ServerConnectionManagementHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2115/2184] Compiling WebSocketKit WebSocket.swift
[2116/2184] Emitting module WebSocketKit
[2117/2184] Compiling WebSocketKit WebSocketClient.swift
[2118/2184] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[2119/2184] Compiling WebSocketKit Exports.swift
[2120/2184] Compiling WebSocketKit WebSocket+Connect.swift
[2121/2184] Compiling WebSocketKit WebSocket+Concurrency.swift
[2122/2184] Emitting module NIOHTTP2
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2123/2184] Compiling NIOHTTP2 ReceivingRstStreamState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2124/2184] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2128/2184] Compiling NIOHTTP2 SendingHeadersState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2129/2184] Compiling NIOHTTP2 SendingPushPromiseState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2130/2184] Compiling NIOHTTP2 Error+Any.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2131/2184] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2132/2184] Compiling NIOHTTP2 ControlFrameBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2133/2184] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2134/2184] Compiling NIOHTTP2 OutboundFrameBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2135/2184] Compiling NIOHTTP2 GlitchesMonitor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2136/2184] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2137/2184] Compiling NIOHTTP2 StreamChannelFlowController.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2138/2184] Compiling NIOHTTP2 StreamChannelList.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2139/2184] Compiling NIOHTTP2 StreamMap.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2140/2184] Compiling NIOHTTP2 StreamStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2141/2184] Compiling NIOHTTP2 Timer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2142/2184] Compiling NIOHTTP2 UnsafeTransfer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2143/2184] Compiling NIOHTTP2 WatermarkedFlowController.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2144/2184] Compiling NIOHTTP2 HTTP2Stream.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2145/2184] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2146/2184] Compiling NIOHTTP2 HTTP2StreamChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2147/2184] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2148/2184] Compiling NIOHTTP2 HTTP2StreamID.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2149/2184] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2150/2184] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2160/2184] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2161/2184] Compiling NIOHTTP2 HTTP2FrameParser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2162/2184] Compiling NIOHTTP2 HTTP2PingData.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2163/2184] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2164/2184] Compiling NIOHTTP2 HTTP2Settings.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
Fetching https://github.com/vapor/vapor.git
Fetching https://github.com/apple/swift-nio.git from cache
Fetching https://github.com/apple/swift-metrics.git from cache
[1/76801] Fetching vapor
Fetched https://github.com/vapor/vapor.git from cache (5.79s)
Fetched https://github.com/apple/swift-metrics.git from cache (5.81s)
Fetched https://github.com/apple/swift-nio.git from cache (5.89s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.8.0 (6.45s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.95.0 (0.66s)
Fetching https://github.com/apple/swift-system.git from cache
Fetching https://github.com/apple/swift-collections.git from cache
Fetching https://github.com/apple/swift-atomics.git from cache
Fetched https://github.com/apple/swift-atomics.git from cache (1.50s)
Fetched https://github.com/apple/swift-system.git from cache (1.54s)
Fetched https://github.com/apple/swift-collections.git from cache (1.55s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (2.27s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.53s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.0 (0.62s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.121.3 (0.51s)
Fetching https://github.com/vapor/multipart-kit.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-asn1.git from cache
Fetching https://github.com/apple/swift-distributed-tracing.git
Fetching https://github.com/vapor/websocket-kit.git
Fetching https://github.com/apple/swift-service-context.git
Fetching https://github.com/apple/swift-algorithms.git from cache
[1/5665] Fetching swift-distributed-tracing
[115/6868] Fetching swift-distributed-tracing, swift-service-context
Fetched https://github.com/apple/swift-asn1.git from cache (0.68s)
Fetching https://github.com/apple/swift-log.git from cache
[260/9520] Fetching swift-distributed-tracing, swift-service-context, websocket-kit
[526/13136] Fetching swift-distributed-tracing, swift-service-context, websocket-kit, multipart-kit
[1789/20258] Fetching swift-distributed-tracing, swift-service-context, websocket-kit, multipart-kit, swift-certificates
Fetched https://github.com/vapor/websocket-kit.git from cache (1.18s)
Fetched https://github.com/apple/swift-service-context.git from cache (1.18s)
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (1.18s)
[6142/10738] Fetching multipart-kit, swift-certificates
Fetched https://github.com/apple/swift-algorithms.git from cache (1.19s)
Fetching https://github.com/apple/swift-nio-extras.git from cache
Fetching https://github.com/apple/swift-nio-http2.git from cache
Fetching https://github.com/apple/swift-nio-ssl.git from cache
Fetching https://github.com/vapor/routing-kit.git
Fetched https://github.com/apple/swift-log.git from cache (1.10s)
Fetching https://github.com/apple/swift-crypto.git from cache
[8243/32094] Fetching multipart-kit, swift-certificates, routing-kit
Fetched https://github.com/vapor/multipart-kit.git from cache (1.95s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.95s)
[428/21356] Fetching routing-kit
Fetching https://github.com/vapor/console-kit.git
Fetching https://github.com/vapor/async-kit.git
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.06s)
Fetching https://github.com/swift-server/async-http-client.git from cache
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.09s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.09s)
[13669/27908] Fetching routing-kit, console-kit
[14424/30404] Fetching routing-kit, console-kit, async-kit
Fetched https://github.com/vapor/console-kit.git from cache (0.98s)
Fetched https://github.com/vapor/async-kit.git from cache (0.98s)
[16231/21356] Fetching routing-kit
Fetched https://github.com/swift-server/async-http-client.git from cache (1.21s)
Fetched https://github.com/vapor/routing-kit.git from cache (2.79s)
Fetched https://github.com/apple/swift-crypto.git from cache (9.46s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (14.35s)
Fetching https://github.com/apple/swift-numerics.git from cache
Fetched https://github.com/apple/swift-numerics.git from cache (0.92s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.36.0 (1.44s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.3 (0.47s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.16.1 (0.48s)
Fetching https://github.com/apple/swift-nio-transport-services.git from cache
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (0.81s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.3.0 (1.31s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.10.1 (0.50s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.1 (0.47s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.18.0 (2.53s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.2 (0.52s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.5.1 (0.64s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.21.0 (0.51s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.4.0 (0.53s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.1 (0.53s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 4.2.0 (1.15s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.32.1 (0.56s)
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-http-structured-headers.git from cache
Fetching https://github.com/apple/swift-http-types.git from cache
[1/2650] Fetching swift-service-lifecycle
[770/8877] Fetching swift-service-lifecycle, swift-async-algorithms
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (0.95s)
[623/6227] Fetching swift-async-algorithms
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (1.01s)
Fetched https://github.com/apple/swift-http-types.git from cache (1.01s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.23s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.10.1 (1.76s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.1.3 (0.59s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.5.1 (0.49s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.6.0 (0.50s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.26.0 (0.49s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.40.0 (0.51s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.32.0 (0.51s)
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-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.40.0
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.10.1
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.3.0
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 4.121.3
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.32.0
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.6.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.21.0
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.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-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.95.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.1.1
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/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.5.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.4.0
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.26.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.5.1
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.4.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.36.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.32.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-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.18.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.8.0
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.1.3
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 4.2.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.10.1
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.4
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
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/102] Compiling RealModule RealFunctions.swift
[3/103] Compiling SystemPackage Errno.swift
[4/103] Compiling SystemPackage ErrnoWindows.swift
[5/103] Compiling SystemPackage FilePathComponentView.swift
[6/103] Compiling SystemPackage FilePathComponents.swift
[7/103] Compiling SystemPackage Backcompat.swift
[8/103] Compiling SystemPackage CInterop.swift
[9/104] Compiling RealModule Real.swift
[10/104] Compiling RealModule Float80+Real.swift
[11/104] Compiling SystemPackage FileOperations.swift
[12/104] Compiling SystemPackage FilePath.swift
[13/104] Compiling RealModule RelaxedArithmetic.swift
[14/104] Compiling Logging MetadataProvider.swift
[15/104] Emitting module _CertificateInternals
[16/104] Compiling _CertificateInternals _TinyArray.swift
[17/104] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[18/104] Compiling RealModule ElementaryFunctions.swift
[19/104] Compiling RealModule Float+Real.swift
[20/104] Compiling RealModule Float16+Real.swift
[21/104] Compiling Logging Locks.swift
[22/104] Emitting module _NIOBase64
[23/104] Compiling _NIOBase64 Base64.swift
[24/104] Compiling RealModule Double+Real.swift
[25/104] Compiling RealModule AugmentedArithmetic.swift
[26/104] Emitting module Logging
[29/104] Compiling SystemPackage FileDescriptor.swift
[30/104] Compiling SystemPackage FileHelpers.swift
[31/104] Compiling CryptoBoringWrapper resource_bundle_accessor.swift
[32/107] Compiling _NIODataStructures PriorityQueue.swift
[33/107] Compiling _NIODataStructures Heap.swift
[34/107] Compiling _NIODataStructures _TinyArray.swift
[35/107] Emitting module RealModule
[36/107] Compiling SystemPackage FilePathWindows.swift
[37/107] Compiling SystemPackage FilePermissions.swift
[38/107] Emitting module _NIODataStructures
[39/107] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[40/107] Compiling CryptoBoringWrapper RandomBytes.swift
[41/114] Compiling ServiceContextModule ServiceContextKey.swift
[42/114] Compiling ServiceContextModule ServiceContext.swift
[43/114] Emitting module ServiceContextModule
[44/114] Compiling CryptoBoringWrapper EllipticCurve.swift
[45/114] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[46/114] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[47/114] Emitting module CryptoBoringWrapper
[51/114] Compiling SystemPackage Constants.swift
[52/114] Compiling SystemPackage Exports.swift
[53/114] Compiling SystemPackage Mocking.swift
[54/136] Compiling Atomics DoubleWord.swift
[55/136] Compiling Atomics ManagedAtomic.swift
[56/222] Compiling Crypto HPKE-AEAD.swift
[57/222] Compiling Crypto HPKE-Ciphersuite.swift
[58/223] Compiling Crypto PKCS8PrivateKey.swift
[59/223] Compiling Crypto SEC1PrivateKey.swift
[60/223] Compiling Crypto DHKEM.swift
[61/223] Compiling Crypto HPKE-KEM-Curve25519.swift
[62/223] Compiling Crypto HashFunctions_SHA3.swift
[63/223] Compiling Crypto Digest_xkcp.swift
[65/249] Compiling Algorithms Permutations.swift
[66/249] Compiling Algorithms Product.swift
[67/249] Compiling Algorithms Grouped.swift
[68/249] Compiling Algorithms Indexed.swift
[69/249] Compiling Algorithms Intersperse.swift
[70/249] Compiling Algorithms RandomSample.swift
[71/249] Emitting module CoreMetrics
[72/249] Compiling CoreMetrics Locks.swift
[73/249] Compiling CoreMetrics Metrics.swift
[74/249] Compiling SwiftASN1 DER.swift
[75/249] Compiling Algorithms Joined.swift
[76/249] Compiling Algorithms Keyed.swift
[77/249] Emitting module InternalCollectionsUtilities
[79/249] Compiling Algorithms Reductions.swift
[80/249] Compiling Algorithms Rotate.swift
[81/249] Compiling Algorithms Split.swift
[82/249] Compiling Algorithms Stride.swift
[84/249] Compiling Algorithms MinMax.swift
[85/249] Compiling Algorithms EitherSequence.swift
[86/250] Compiling Logging Logging.swift
[87/250] Compiling Logging LogHandler.swift
[88/250] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[89/250] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[90/250] Compiling Algorithms Suffix.swift
[91/250] Compiling Algorithms Trim.swift
[92/252] Compiling NIOConcurrencyHelpers lock.swift
[93/252] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[94/252] Compiling NIOConcurrencyHelpers NIOLock.swift
[95/252] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[96/252] Compiling NIOConcurrencyHelpers atomics.swift
[97/252] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[98/252] Compiling Crypto ECDH.swift
[99/252] Compiling Crypto ANSIx963.swift
[100/252] Compiling Crypto HKDF.swift
[101/252] Compiling Crypto AESWrap.swift
[102/252] Compiling Crypto AESWrap_boring.swift
[103/252] Compiling Crypto Ed25519_boring.swift
[104/252] Compiling Crypto NISTCurvesKeys_boring.swift
[105/252] Compiling Crypto X25519Keys_boring.swift
[106/252] Compiling Crypto Curve25519.swift
[107/269] Compiling Crypto ECDSA_boring.swift
[108/269] Compiling Crypto EdDSA_boring.swift
[109/269] Compiling Crypto MLDSA_boring.swift
[110/269] Compiling Crypto MLDSA_wrapper.swift
[111/269] Compiling Crypto ECDSA.swift
[112/269] Compiling Crypto Ed25519.swift
[113/269] Compiling Crypto MLDSA.swift
[114/269] Compiling Crypto Signature.swift
[115/269] Compiling Crypto CryptoKitErrors_boring.swift
[116/269] Compiling Crypto MLKEM_boring.swift
[117/269] Compiling Crypto MLKEM_wrapper.swift
[118/269] Compiling Crypto XWing_boring.swift
[119/269] Compiling Crypto KEM-Errors.swift
[120/269] Compiling Crypto KEM.swift
[121/269] Compiling Crypto MLKEM.swift
[122/269] Compiling Crypto XWing.swift
[123/269] Compiling Crypto ECDH_boring.swift
[124/269] Compiling Crypto DH.swift
[133/269] Compiling Algorithms FirstNonNil.swift
[134/269] Compiling Algorithms FlattenCollection.swift
[135/269] Compiling Algorithms AdjacentPairs.swift
[136/269] Compiling Algorithms Chain.swift
[137/269] Compiling Algorithms Chunked.swift
[138/269] Compiling Algorithms Partition.swift
[147/269] Compiling Algorithms Combinations.swift
[148/269] Compiling Algorithms Compacted.swift
[149/269] Compiling Algorithms Cycle.swift
[150/269] Compiling Algorithms Unique.swift
[151/269] Compiling Algorithms Windows.swift
[152/269] Compiling Crypto Insecure.swift
[153/269] Compiling Crypto Insecure_HashFunctions.swift
[154/275] Compiling Atomics Unmanaged extensions.swift
[155/275] Compiling Crypto Ed25519Keys.swift
[156/275] Compiling Crypto NISTCurvesKeys.swift
[157/275] Compiling Crypto X25519Keys.swift
[158/275] Compiling Crypto SymmetricKeys.swift
[159/275] Compiling Crypto HMAC.swift
[160/275] Compiling Crypto MACFunctions.swift
[161/275] Compiling Crypto MessageAuthenticationCode.swift
[162/275] Compiling Crypto AES.swift
[163/275] Compiling Crypto ECDSASignature_boring.swift
[164/275] Compiling Crypto AES-GCM.swift
[165/275] Compiling Crypto AES-GCM_boring.swift
[166/275] Compiling Crypto ChaChaPoly_boring.swift
[167/275] Compiling Crypto ChaChaPoly.swift
[168/275] Compiling Crypto Cipher.swift
[169/275] Compiling Crypto Nonces.swift
[170/275] Compiling Crypto ASN1.swift
[171/275] Compiling Crypto ASN1Any.swift
[172/275] Compiling Crypto ASN1BitString.swift
[173/275] Compiling Crypto ASN1Boolean.swift
[174/275] Compiling Crypto ASN1Identifier.swift
[175/275] Compiling Crypto ASN1Integer.swift
[176/275] Compiling Crypto ASN1Null.swift
[177/275] Compiling Crypto ASN1OctetString.swift
[178/275] Compiling Crypto ASN1Strings.swift
[179/275] Compiling Crypto ArraySliceBigint.swift
[180/275] Compiling Crypto GeneralizedTime.swift
[181/275] Compiling Crypto ObjectIdentifier.swift
[182/275] Compiling Crypto ECDSASignature.swift
[183/275] Compiling Crypto PEMDocument.swift
[188/275] Emitting module NIOConcurrencyHelpers
[189/275] Emitting module SystemPackage
[206/275] Emitting module Crypto
[209/275] Compiling SwiftASN1 Errors.swift
[210/347] Compiling _RopeModule BigString+Builder.swift
[211/347] Compiling _RopeModule BigString+Contents.swift
[212/347] Compiling _RopeModule BigString+Debugging.swift
[213/347] Compiling _RopeModule BigString+Index.swift
[214/347] Compiling _RopeModule BigString+Ingester.swift
[215/347] Compiling _RopeModule BigString+Invariants.swift
[216/347] Compiling _RopeModule BigString+Metrics.swift
[217/347] Compiling _RopeModule BigString+Summary.swift
[218/347] Compiling _RopeModule BigString+Chunk+Splitting.swift
[219/347] Compiling _RopeModule BigString+Chunk+UTF16.swift
[220/347] Compiling _RopeModule BigString+Chunk+UTF8.swift
[221/347] Compiling _RopeModule BigString+Chunk+UnicodeScalar.swift
[222/347] Compiling _RopeModule BigString+Chunk.swift
[223/347] Compiling _RopeModule BigString+BidirectionalCollection.swift
[224/347] Compiling _RopeModule BigString+Comparable.swift
[225/347] Compiling _RopeModule BigString+CustomDebugStringConvertible.swift
[226/354] Compiling _RopeModule BigString+Hashing.swift
[227/354] Compiling _RopeModule BigString+LosslessStringConvertible.swift
[228/354] Compiling _RopeModule BigString+RangeReplaceableCollection.swift
[229/354] Compiling Instrumentation NoOpInstrument.swift
[230/354] Compiling Instrumentation MultiplexInstrument.swift
[231/354] Compiling Instrumentation Instrument.swift
[232/354] Compiling Instrumentation InstrumentationSystem.swift
[233/354] Emitting module Instrumentation
[234/354] Compiling Instrumentation Locks.swift
[235/354] Compiling _RopeModule BigString+Equatable.swift
[236/354] Compiling _RopeModule BigString+ExpressibleByStringLiteral.swift
[237/354] Compiling Metrics Metrics.swift
[238/354] Emitting module Metrics
[239/417] Compiling OrderedCollections _HashTable.swift
[240/417] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[241/417] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[242/417] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[243/417] Compiling OrderedCollections _HashTable+Testing.swift
[244/417] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[245/425] Compiling RoutingKit Router.swift
[246/425] Compiling RoutingKit Parameters.swift
[247/425] Compiling RoutingKit PathComponent.swift
[248/425] Compiling RoutingKit AnyRouter.swift
[249/425] Compiling RoutingKit TrieRouter.swift
[250/425] Emitting module RoutingKit
[251/425] Compiling HeapModule Heap.swift
[252/425] Compiling HeapModule Heap+Invariants.swift
[253/425] Compiling HeapModule _HeapNode.swift
[254/425] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[255/425] Compiling HeapModule Heap+Descriptions.swift
[256/425] Compiling HeapModule Heap+UnsafeHandle.swift
[257/440] Compiling ContainersPreview InputSpan.swift
[258/441] Emitting module HeapModule
[259/441] Compiling ContainersPreview Borrow.swift
[260/441] Compiling ContainersPreview Inout.swift
[261/441] Compiling ContainersPreview Drain.swift
[262/441] Compiling ContainersPreview Producer.swift
[263/441] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[264/441] Compiling ContainersPreview BorrowingSequence.swift
[265/441] Compiling ContainersPreview Container.swift
[266/441] Compiling ContainersPreview ContainerAlgorithms.swift
[267/441] Emitting module ContainersPreview
[268/441] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[269/441] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[270/441] Compiling ContainersPreview OutputSpan+Extras.swift
[271/441] Compiling ContainersPreview TemporaryAllocation.swift
[272/441] Compiling ContainersPreview Box.swift
[273/441] Compiling Tracing TracingTime.swift
[274/441] Compiling Tracing TracerProtocol.swift
[275/441] Compiling ContainersPreview Shared.swift
[276/519] Compiling Tracing Tracer.swift
[277/519] Compiling Tracing NoOpTracer.swift
[278/519] Compiling Tracing TracerProtocol+Legacy.swift
[279/519] Compiling Crypto Optional+withUnsafeBytes_boring.swift
[280/519] Compiling Crypto RNG_boring.swift
[281/519] Compiling Crypto SafeCompare_boring.swift
[282/519] Compiling Crypto Zeroization_boring.swift
[283/519] Compiling Crypto PrettyBytes.swift
[284/519] Compiling Crypto SafeCompare.swift
[285/519] Compiling Crypto SecureBytes.swift
[286/519] Compiling Crypto Zeroization.swift
[287/519] Compiling Crypto resource_bundle_accessor.swift
[288/519] Compiling HashTreeCollections TreeDictionary+Merge.swift
[289/519] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[290/519] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[291/519] Compiling HashTreeCollections _HashNode+Storage.swift
[292/519] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[293/519] Compiling HashTreeCollections _HashNode+Structural filter.swift
[294/519] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[295/519] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[296/519] Compiling HashTreeCollections _HashNode+Debugging.swift
[297/519] Compiling HashTreeCollections _HashNode+Initializers.swift
[298/519] Compiling HashTreeCollections _HashNode+Invariants.swift
[299/519] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[300/519] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[301/519] Compiling HashTreeCollections _HashNode.swift
[302/519] Compiling HashTreeCollections _AncestorHashSlots.swift
[303/519] Compiling HashTreeCollections _Bitmap.swift
[304/519] Compiling HashTreeCollections _Bucket.swift
[305/519] Compiling HashTreeCollections _Hash.swift
[306/519] Compiling HashTreeCollections _HashLevel.swift
[307/519] Compiling HashTreeCollections _HashNode+Builder.swift
[308/525] Compiling HashTreeCollections TreeSet+Hashable.swift
[309/525] Compiling HashTreeCollections TreeSet+Sendable.swift
[313/525] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[314/525] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[316/525] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[317/525] Compiling HashTreeCollections TreeSet+Extras.swift
[318/525] Compiling HashTreeCollections TreeSet+Filter.swift
[319/525] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[320/525] Compiling HashTreeCollections TreeDictionary+Keys.swift
[321/525] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[324/525] Compiling HashTreeCollections TreeSet+Equatable.swift
[325/525] Compiling HashTreeCollections TreeSet+Sequence.swift
[326/525] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[327/525] Compiling HashTreeCollections _HashNode+Lookups.swift
[328/552] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[329/552] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[330/552] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[331/552] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[332/552] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[333/552] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[334/552] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[335/552] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[336/552] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[337/552] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[338/552] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[339/552] Compiling HashTreeCollections _HashNode+Structural merge.swift
[340/552] Compiling HashTreeCollections _HashNodeHeader.swift
[341/552] Compiling HashTreeCollections _HashSlot.swift
[342/552] Compiling HashTreeCollections _HashStack.swift
[343/552] Compiling HashTreeCollections _HashTreeIterator.swift
[344/552] Compiling HashTreeCollections _HashTreeStatistics.swift
[345/552] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[346/552] Compiling Tracing InstrumentationSystem+Tracing.swift
[347/552] Emitting module Tracing
[348/552] Compiling Tracing SpanProtocol.swift
[349/552] Compiling ConsoleKitTerminal CustomActivity.swift
[350/552] Compiling ConsoleKitTerminal LoadingBar.swift
[351/552] Compiling ConsoleKitTerminal readpassphrase_linux.swift
[352/552] Compiling ConsoleKitTerminal AnySendableHashable.swift
[353/552] Compiling ConsoleKitTerminal ANSI.swift
[354/552] Compiling ConsoleKitTerminal Console.swift
[355/552] Compiling ConsoleKitTerminal Terminal.swift
[356/552] Compiling ConsoleKitTerminal Console+Output.swift
[357/552] Compiling ConsoleKitTerminal Console+Wait.swift
[358/552] Compiling ConsoleKitTerminal ConsoleColor.swift
[359/552] Compiling ConsoleKitTerminal ConsoleStyle.swift
[360/552] Compiling ConsoleKitTerminal ConsoleText.swift
[361/552] Compiling HashTreeCollections TreeDictionary.swift
[362/552] Compiling HashTreeCollections TreeSet+Codable.swift
[363/552] Compiling HashTreeCollections TreeSet+Collection.swift
[364/552] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[365/552] Compiling HashTreeCollections TreeSet+Debugging.swift
[366/552] Compiling HashTreeCollections TreeSet+Descriptions.swift
[367/552] Compiling _RopeModule _CharacterRecognizer.swift
[368/648] Compiling DequeModule UniqueDeque+Append.swift
[369/648] Compiling DequeModule UniqueDeque+Consumption.swift
[370/648] Compiling DequeModule UniqueDeque+Container.swift
[371/648] Compiling DequeModule UniqueDeque+Descriptions.swift
[372/652] Compiling DequeModule UniqueDeque+Insertions.swift
[373/652] Compiling DequeModule UniqueDeque+Prepend.swift
[374/652] Compiling DequeModule UniqueDeque+Removals.swift
[375/652] Compiling DequeModule UniqueDeque+Replacements.swift
[376/652] Compiling DequeModule RigidDeque+Removals.swift
[377/652] Compiling DequeModule RigidDeque+Replacements.swift
[378/652] Compiling DequeModule RigidDeque+Testing.swift
[379/652] Compiling DequeModule RigidDeque.swift
[380/652] Emitting module SwiftASN1
[389/652] Compiling DequeModule Deque.swift
[390/652] Compiling DequeModule _DequeBuffer.swift
[391/652] Compiling DequeModule _DequeBufferHeader.swift
[392/652] Compiling DequeModule RigidDeque+Append.swift
[397/652] Compiling DequeModule UniqueDeque.swift
[398/652] Compiling DequeModule _DequeSlot.swift
[399/652] Compiling DequeModule _UnsafeDequeHandle.swift
[400/652] Compiling DequeModule _UnsafeDequeSegments.swift
[401/652] Compiling BitCollections BitArray+Testing.swift
[402/652] Compiling BitCollections BitArray._UnsafeHandle.swift
[403/652] Compiling BitCollections BitArray.swift
[404/652] Compiling BitCollections BitSet+BidirectionalCollection.swift
[405/652] Compiling DequeModule RigidDeque+Insertions.swift
[406/652] Compiling DequeModule RigidDeque+Prepend.swift
[407/652] Compiling DequeModule RigidDeque+Consumption.swift
[408/652] Compiling DequeModule RigidDeque+Container.swift
[409/652] Compiling DequeModule RigidDeque+Descriptions.swift
[410/652] Compiling DequeModule RigidDeque+Equatable.swift
[411/652] Compiling DequeModule RigidDeque+Experimental.swift
[412/652] Compiling DequeModule Deque._UnsafeHandle.swift
[413/652] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[414/652] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[415/652] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[416/652] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[417/652] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[418/652] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[420/652] Compiling OrderedCollections OrderedSet+SubSequence.swift
[421/652] Compiling HashTreeCollections TreeDictionary+Codable.swift
[422/652] Compiling HashTreeCollections TreeDictionary+Collection.swift
[423/652] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[424/652] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[425/652] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[426/652] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[427/652] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[428/652] Compiling HashTreeCollections TreeDictionary+Values.swift
[429/652] Compiling OrderedCollections OrderedSet+Testing.swift
[430/652] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[431/652] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[432/652] Compiling OrderedCollections OrderedSet.swift
[433/652] Compiling OrderedCollections _UnsafeBitset.swift
[434/652] Compiling HashTreeCollections _UnmanagedHashNode.swift
[435/652] Compiling HashTreeCollections _UnsafePath.swift
[436/652] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[437/652] Compiling DequeModule Deque+Extras.swift
[438/652] Compiling DequeModule Deque+Hashable.swift
[439/652] Emitting module ConsoleKitTerminal
[451/662] Compiling DequeModule RigidDeque+Hashable.swift
[452/662] Compiling DequeModule RigidDeque+Initializers.swift
[460/662] Compiling DequeModule Deque+Collection.swift
[461/662] Compiling DequeModule Deque+CustomReflectable.swift
[462/662] Compiling DequeModule Deque+Descriptions.swift
[463/662] Compiling DequeModule Deque+Equatable.swift
[464/662] Compiling DequeModule UniqueDeque+Equatable.swift
[465/662] Compiling DequeModule UniqueDeque+Experimental.swift
[480/668] Compiling DequeModule Deque+Testing.swift
[481/668] Compiling DequeModule Deque._Storage.swift
[482/668] Compiling DequeModule Deque+Codable.swift
[486/668] Compiling ConsoleKitTerminal ConsoleLogger.swift
[487/668] Compiling ConsoleKitTerminal LoggerFragment.swift
[490/726] Compiling CryptoExtras ARCPrecredential.swift
[491/726] Compiling CryptoExtras PEMDocument.swift
[492/726] Compiling CryptoExtras PrettyBytes.swift
[493/726] Compiling CryptoExtras SubjectPublicKeyInfo.swift
[494/726] Compiling CryptoExtras ThreadOps.swift
[495/726] Compiling CryptoExtras ThreadPosix.swift
[496/726] Compiling CryptoExtras ThreadSpecific.swift
[497/726] Compiling CryptoExtras HashToField.swift
[498/726] Compiling CryptoExtras KDF.swift
[499/726] Compiling CryptoExtras PBKDF2_boring.swift
[500/726] Compiling CryptoExtras PBKDF2_commoncrypto.swift
[501/726] Compiling CryptoExtras PBKDF2.swift
[502/726] Emitting module BitCollections
[503/726] Emitting module Atomics
[504/726] Compiling CryptoExtras RSA.swift
[505/726] Compiling CryptoExtras RSA_boring.swift
[506/726] Compiling CryptoExtras VOPRFServer.swift
[507/726] Compiling CryptoExtras RSA+BlindSigning.swift
[508/726] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[509/726] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[510/726] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[511/726] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[512/726] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[513/726] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[514/726] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[515/726] Compiling HashTreeCollections TreeSet.swift
[516/726] Compiling CryptoExtras AES_GCM_SIV_boring.swift
[517/726] Compiling CryptoExtras CMAC.swift
[518/726] Compiling CryptoExtras ARC+API.swift
[519/726] Compiling CryptoExtras ARCEncoding.swift
[523/726] Compiling CryptoExtras Reexport.swift
[524/726] Compiling CryptoExtras BoringSSLHelpers.swift
[525/726] Compiling CryptoExtras ARCCredential.swift
[539/726] Compiling CryptoExtras Scrypt_boring.swift
[540/726] Compiling CryptoExtras Scrypt.swift
[541/726] Compiling CryptoExtras OPRF.swift
[542/726] Compiling CryptoExtras OPRFClient.swift
[552/726] Compiling CryptoExtras ChaCha20CTR.swift
[553/726] Compiling CryptoExtras Curve25519+PEM.swift
[554/726] Compiling BitCollections Slice+Utilities.swift
[555/726] Compiling BitCollections UInt+Tricks.swift
[556/726] Compiling BitCollections _Word.swift
[562/726] Compiling CryptoExtras ARC.swift
[574/726] Compiling CryptoExtras VOPRFClient.swift
[575/726] Compiling CryptoExtras ObjectIdentifier.swift
[576/726] Compiling CryptoExtras PKCS8DERRepresentation.swift
[577/726] Compiling CryptoExtras PKCS8PrivateKey.swift
[578/726] Compiling CryptoExtras RFC8410AlgorithmIdentifier.swift
[579/726] Compiling CryptoExtras ECToolbox_boring.swift
[580/726] Compiling CryptoExtras ECToolbox.swift
[581/726] Compiling CryptoExtras AES_CBC.swift
[582/726] Compiling CryptoExtras AES_CFB.swift
[583/726] Compiling CryptoExtras AES_CTR.swift
[584/726] Compiling CryptoExtras AES_GCM_SIV.swift
[585/726] Compiling CryptoExtras Block Function.swift
[586/726] Compiling CryptoExtras AES_CFB_boring.swift
[587/726] Compiling CryptoExtras AES_CTR_boring.swift
[588/726] Compiling CryptoExtras CryptoKitErrors_boring.swift
[589/726] Compiling CryptoExtras Data+Extensions.swift
[590/726] Compiling CryptoExtras DigestType.swift
[591/726] Compiling CryptoExtras Error.swift
[592/726] Compiling CryptoExtras ChaCha20CTR_boring.swift
[598/726] Emitting module _RopeModule
[618/726] Emitting module OrderedCollections
[624/726] Compiling CryptoExtras I2OSP.swift
[625/726] Compiling CryptoExtras IntegerEncoding.swift
[626/726] Compiling CryptoExtras ARCPresentation.swift
[630/726] Compiling CryptoExtras OPRFServer.swift
[631/726] Compiling CryptoExtras VOPRF+API.swift
[645/726] Compiling CryptoExtras ARCRequest.swift
[646/726] Compiling CryptoExtras ARCResponse.swift
[647/726] Compiling CryptoExtras ARCServer.swift
[658/748] Compiling ConsoleKitCommands Completion.swift
[659/748] Compiling ConsoleKitCommands Commands.swift
[660/748] Compiling ConsoleKitCommands Console+Run.swift
[661/748] Compiling ConsoleKitCommands AnyAsyncCommand.swift
[662/748] Compiling ConsoleKitCommands AsyncCommand.swift
[663/748] Compiling ConsoleKitCommands AsyncCommandGroup.swift
[664/754] Emitting module Algorithms
[665/754] Emitting module ConsoleKitCommands
[666/756] Emitting module CryptoExtras
[672/756] Compiling ConsoleKitCommands GenerateAutocompleteCommand.swift
[673/756] Compiling ConsoleKitCommands MergedAsyncCommandGroup.swift
[676/756] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[677/756] Compiling ConsoleKitCommands Utilities.swift
[686/756] Emitting module DequeModule
[687/756] Compiling ConsoleKitCommands Flag.swift
[688/756] Compiling ConsoleKitCommands Option.swift
[689/756] Compiling ConsoleKitCommands CommandGroup.swift
[690/756] Compiling ConsoleKitCommands CommandInput.swift
[691/756] Compiling ConsoleKitCommands Argument.swift
[692/756] Compiling ConsoleKitCommands CommandSignature.swift
[693/756] Compiling ConsoleKitCommands ConsoleError.swift
[696/756] Compiling ConsoleKitCommands Command.swift
[697/756] Compiling ConsoleKitCommands CommandContext.swift
[698/756] Compiling ConsoleKitCommands CommandError.swift
[699/756] Compiling ConsoleKitCommands AsyncCommands.swift
[700/756] Compiling ConsoleKitCommands GenerateAsyncAutocompleteCommand.swift
[701/756] Compiling ConsoleKitCommands AnyCommand.swift
[702/756] Compiling CryptoExtras ThreadWindows.swift
[703/756] Compiling CryptoExtras DLEQ.swift
[704/756] Compiling CryptoExtras Prover.swift
[705/756] Compiling CryptoExtras Verifier.swift
[706/756] Compiling CryptoExtras ZKPToolbox.swift
[707/756] Compiling CryptoExtras resource_bundle_accessor.swift
[722/823] Compiling NIOCore MulticastChannel.swift
[723/823] Compiling NIOCore NIOAny.swift
[724/823] Compiling NIOCore NIOCloseOnErrorHandler.swift
[725/823] Compiling NIOCore NIOCoreSendableMetatype.swift
[726/823] Compiling NIOCore NIODecodedAsyncSequence.swift
[727/823] Compiling NIOCore NIOLoopBound.swift
[728/823] Compiling NIOCore IOData.swift
[729/823] Compiling NIOCore IPProtocol.swift
[730/823] Compiling NIOCore IntegerBitPacking.swift
[731/823] Compiling NIOCore IntegerTypes.swift
[732/823] Compiling NIOCore Interfaces.swift
[733/823] Compiling NIOCore Linux.swift
[734/823] Compiling NIOCore MarkedCircularBuffer.swift
[735/823] Compiling NIOCore BSDSocketAPI.swift
[736/823] Compiling NIOCore ByteBuffer-aux.swift
[737/823] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[738/823] Compiling NIOCore ByteBuffer-conversions.swift
[739/823] Compiling NIOCore ByteBuffer-core.swift
[740/823] Compiling NIOCore IO.swift
[741/823] Compiling NIOCore ChannelHandler.swift
[742/823] Compiling NIOCore ChannelHandlers.swift
[743/823] Compiling NIOCore ChannelInvoker.swift
[744/823] Compiling NIOCore ChannelOption.swift
[745/823] Compiling NIOCore ChannelPipeline.swift
[746/823] Compiling NIOCore CircularBuffer.swift
[747/823] Compiling NIOCore Codec.swift
[748/823] Compiling NIOCore AddressedEnvelope.swift
[749/823] Compiling NIOCore AsyncAwaitSupport.swift
[750/823] Compiling NIOCore AsyncChannel.swift
[751/823] Compiling NIOCore AsyncChannelHandler.swift
[752/823] Compiling NIOCore AsyncChannelInboundStream.swift
[753/823] Compiling NIOCore AsyncChannelOutboundWriter.swift
[754/823] Compiling NIOCore NIOAsyncSequenceProducer.swift
[755/823] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[756/823] Emitting module HashTreeCollections
[757/823] Compiling ConsoleKit Exports.swift
[758/823] Emitting module ConsoleKit
[759/831] Compiling Collections OrderedCollections reexports.swift
[760/831] Compiling Collections HeapModule reexports.swift
[761/831] Compiling Collections HashTreeCollections reexports.swift
[762/831] Compiling Collections BitCollections reexports.swift
[763/831] Compiling Collections DequeModule reexports.swift
[764/831] Emitting module Collections
[765/831] Emitting module _CryptoExtras
[766/831] Compiling _CryptoExtras Exports.swift
[767/831] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[768/831] Compiling NIOCore NIOScheduledCallback.swift
[769/831] Compiling NIOCore NIOSendable.swift
[770/831] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[771/831] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[772/831] Compiling NIOCore RecvByteBufferAllocator.swift
[773/831] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[789/838] Compiling NIOCore ConvenienceOptionSupport.swift
[790/838] Compiling NIOCore DeadChannel.swift
[791/838] Compiling NIOCore DispatchQueue+WithFuture.swift
[792/838] Compiling NIOCore EventLoop+Deprecated.swift
[793/838] Compiling NIOCore EventLoop+SerialExecutor.swift
[794/838] Compiling NIOCore EventLoop.swift
[795/838] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[796/937] Compiling X509 OCSPTBSRequest.swift
[797/937] Compiling X509 OCSPVersion.swift
[798/937] Compiling X509 PKCS8PrivateKey.swift
[799/937] Compiling X509 PromiseAndFuture.swift
[800/937] Compiling X509 RDNAttribute.swift
[801/937] Compiling X509 RandomNumberGenerator+bytes.swift
[802/937] Compiling X509 RelativeDistinguishedName.swift
[803/937] Compiling X509 CustomPrivateKey.swift
[804/937] Compiling X509 Digests.swift
[805/937] Compiling X509 DistinguishedName.swift
[806/937] Compiling X509 CommonName.swift
[807/937] Compiling X509 CountryName.swift
[808/937] Compiling X509 DNBuilder.swift
[809/937] Compiling X509 DomainComponent.swift
[810/937] Compiling X509 EmailAddress.swift
[811/937] Compiling X509 LocalityName.swift
[812/937] Compiling X509 OrganizationName.swift
[813/937] Compiling X509 OrganizationalUnitName.swift
[814/947] Compiling X509 SEC1PrivateKey.swift
[815/947] Compiling X509 SecKeyWrapper.swift
[816/947] Compiling X509 Signature.swift
[817/947] Compiling X509 SignatureAlgorithm.swift
[818/947] Compiling X509 CSRAttribute.swift
[819/947] Compiling X509 CSRAttributes.swift
[820/947] Compiling X509 CSRVersion.swift
[821/947] Compiling X509 Curve25519+DER.swift
[822/947] Compiling X509 StateOrProvinceName.swift
[823/947] Compiling X509 StreetAddress.swift
[824/947] Compiling X509 Error.swift
[825/947] Compiling X509 AuthorityInformationAccess.swift
[826/947] Compiling X509 AuthorityKeyIdentifier.swift
[827/947] Compiling X509 BasicConstraints.swift
[828/947] Compiling X509 AllOfPolicies.swift
[829/947] Compiling X509 AnyPolicy.swift
[830/947] Compiling X509 CertificateStore.swift
[831/947] Compiling X509 CustomCertificateStore.swift
[832/947] Compiling X509 OneOfPolicies.swift
[833/947] Compiling X509 PolicyBuilder.swift
[834/947] Compiling X509 BasicConstraintsPolicy.swift
[835/947] Compiling X509 DNSNames.swift
[836/947] Compiling X509 DirectoryNames.swift
[837/947] Compiling X509 ExpiryPolicy.swift
[838/947] Compiling X509 IPConstraints.swift
[839/947] Compiling X509 OCSPExtensionID.swift
[840/947] Compiling X509 OCSPNonce.swift
[841/947] Compiling X509 OCSPPolicy.swift
[842/947] Compiling X509 OCSPRequest.swift
[843/947] Compiling X509 OCSPResponse.swift
[844/947] Compiling X509 OCSPResponseBytes.swift
[845/947] Compiling X509 OCSPResponseData.swift
[846/947] Compiling X509 OCSPResponseStatus.swift
[847/947] Compiling X509 OCSPSignature.swift
[848/947] Compiling X509 OCSPSingleRequest.swift
[849/947] Compiling X509 OCSPSingleResponse.swift
[850/947] Compiling X509 VerifierPolicy.swift
[851/947] Compiling X509 AlgorithmIdentifier.swift
[852/947] Compiling X509 ECDSASignature.swift
[853/947] Compiling X509 RSAPKCS1PublicKey.swift
[854/947] Compiling X509 SubjectPublicKeyInfo.swift
[855/947] Compiling X509 TBSCertificate.swift
[856/947] Compiling X509 Time.swift
[857/947] Compiling X509 TimeCalculations.swift
[858/947] Compiling X509 Validity.swift
[859/947] Compiling X509 X509SendableMetatype.swift
[860/947] Compiling X509 SubjectKeyIdentifier.swift
[861/947] Compiling X509 Extension.swift
[862/947] Compiling X509 Extensions.swift
[863/947] Compiling X509 ExtensionsBuilder.swift
[864/947] Compiling X509 GeneralName.swift
[865/947] Compiling X509 Lock.swift
[866/947] Compiling X509 LockedValueBox.swift
[867/947] Compiling X509 BasicOCSPResponse.swift
[868/947] Compiling X509 DirectoryString.swift
[869/947] Compiling X509 OCSPCertID.swift
[870/947] Compiling X509 OCSPCertStatus.swift
[871/947] Compiling X509 CMSAttribute.swift
[872/947] Compiling X509 CMSContentInfo.swift
[873/947] Compiling X509 CMSEncapsulatedContentInfo.swift
[874/947] Compiling X509 CMSIssuerAndSerialNumber.swift
[875/947] Compiling X509 CMSOperations.swift
[876/947] Compiling X509 CMSSignature.swift
[877/947] Compiling X509 CMSSignedData.swift
[878/947] Compiling X509 CMSSignerIdentifier.swift
[879/947] Compiling X509 CMSSignerInfo.swift
[880/947] Compiling X509 CMSVersion.swift
[888/947] Compiling X509 ExtendedKeyUsage.swift
[889/947] Compiling X509 ExtensionIdentifiers.swift
[890/947] Compiling X509 KeyUsage.swift
[891/947] Compiling X509 NameConstraints.swift
[892/947] Compiling X509 SubjectAlternativeName.swift
[907/947] Compiling X509 CertificateSigningRequest.swift
[908/947] Compiling X509 CertificationRequestInfo.swift
[909/947] Compiling X509 ExtensionRequest.swift
[910/947] Compiling X509 Certificate.swift
[911/947] Compiling X509 CertificatePrivateKey.swift
[912/947] Compiling X509 CertificatePublicKey.swift
[913/947] Compiling X509 CertificateSerialNumber.swift
[914/947] Compiling X509 CertificateVersion.swift
[915/947] Compiling X509 NameConstraintsPolicy.swift
[916/947] Compiling X509 RFC5280Policy.swift
[917/947] Compiling X509 URIConstraints.swift
[918/947] Compiling X509 VersionPolicy.swift
[919/947] Compiling X509 ServerIdentityPolicy.swift
[920/947] Compiling X509 TrustRootLoading.swift
[921/947] Compiling X509 UnverifiedChain.swift
[922/947] Compiling X509 ValidatedCertificateChain.swift
[923/947] Compiling X509 VerificationDiagnostic.swift
[924/947] Compiling X509 Verifier.swift
[946/947] Emitting module X509
[947/947] Emitting module NIOCore
[948/1003] Compiling NIOEmbedded AsyncTestingChannel.swift
[949/1003] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[950/1003] Compiling NIOEmbedded Embedded.swift
[951/1003] Emitting module NIOEmbedded
[952/1003] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[953/1003] Compiling NIOPosix PosixSingletons.swift
[954/1003] Compiling NIOPosix RawSocketBootstrap.swift
[955/1003] Compiling NIOPosix Resolver.swift
[956/1003] Compiling NIOPosix Selectable.swift
[957/1003] Compiling NIOPosix SelectableChannel.swift
[958/1008] Compiling NIOPosix Utilities.swift
[959/1008] Compiling NIOPosix VsockAddress.swift
[960/1008] Compiling NIOPosix VsockChannelEvents.swift
[961/1008] Compiling NIOPosix Windows.swift
[962/1008] Compiling NIOPosix resource_bundle_accessor.swift
[963/1008] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[964/1008] Compiling NIOPosix System.swift
[965/1008] Compiling NIOPosix Thread.swift
[966/1008] Compiling NIOPosix ThreadPosix.swift
[967/1008] Compiling NIOPosix ThreadWindows.swift
[968/1008] Compiling NIOPosix SelectableEventLoop.swift
[969/1008] Compiling NIOPosix SelectorEpoll.swift
[970/1008] Compiling NIOPosix SelectorGeneric.swift
[971/1008] Compiling NIOPosix SelectorKqueue.swift
[972/1008] Compiling NIOPosix SelectorUring.swift
[973/1008] Compiling NIOPosix Linux.swift
[974/1008] Compiling NIOPosix LinuxCPUSet.swift
[975/1008] Compiling NIOPosix LinuxUring.swift
[976/1008] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[977/1008] Compiling NIOPosix NIOPosixSendableMetatype.swift
[978/1008] Compiling NIOPosix NIOThreadPool.swift
[979/1008] Emitting module NIOPosix
[980/1008] Compiling NIOPosix SelectorWSAPoll.swift
[981/1008] Compiling NIOPosix ServerSocket.swift
[982/1008] Compiling NIOPosix Socket.swift
[983/1008] Compiling NIOPosix SocketChannel.swift
[984/1008] Compiling NIOPosix SocketProtocols.swift
[985/1008] Compiling NIOPosix FileDescriptor.swift
[986/1008] Compiling NIOPosix GetaddrinfoResolver.swift
[987/1008] Compiling NIOPosix HappyEyeballs.swift
[988/1008] Compiling NIOPosix IO.swift
[989/1008] Compiling NIOPosix IntegerBitPacking.swift
[990/1008] Compiling NIOPosix IntegerTypes.swift
[991/1008] Compiling NIOPosix BSDSocketAPICommon.swift
[992/1008] Compiling NIOPosix BSDSocketAPIPosix.swift
[993/1008] Compiling NIOPosix BSDSocketAPIWindows.swift
[994/1008] Compiling NIOPosix BaseSocket.swift
[995/1008] Compiling NIOPosix BaseSocketChannel+AccessibleTransport.swift
[996/1008] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[997/1008] Compiling NIOPosix NonBlockingFileIO.swift
[998/1008] Compiling NIOPosix PendingDatagramWritesManager.swift
[999/1008] Compiling NIOPosix PendingWritesManager.swift
[1000/1008] Compiling NIOPosix PipeChannel.swift
[1001/1008] Compiling NIOPosix PipePair.swift
[1002/1008] Compiling NIOPosix Pool.swift
[1003/1008] Compiling NIOPosix BaseSocketChannel.swift
[1004/1008] Compiling NIOPosix BaseStreamSocketChannel.swift
[1005/1008] Compiling NIOPosix Bootstrap.swift
[1006/1008] Compiling NIOPosix ControlMessage.swift
[1007/1008] Compiling NIOPosix DatagramVectorReadManager.swift
[1008/1008] Compiling NIOPosix Errors+Any.swift
[1009/1069] Compiling NIO Exports.swift
[1010/1069] Emitting module NIO
[1011/1069] Compiling _NIOFileSystem Array+FileSystem.swift
[1012/1069] Compiling _NIOFileSystem ArraySlice+FileSystem.swift
[1013/1069] Compiling _NIOFileSystem BufferedReader.swift
[1014/1094] Compiling _NIOFileSystem FileSystemError.swift
[1015/1094] Compiling _NIOFileSystem FileSystemProtocol.swift
[1016/1094] Compiling _NIOFileSystem FileType.swift
[1017/1094] Compiling _NIOFileSystem IOStrategy.swift
[1018/1094] Compiling _NIOFileSystem BufferedOrAnyStream.swift
[1019/1111] Compiling _NIOFileSystem FileSystem.swift
[1020/1111] Compiling _NIOFileSystem FileSystemError+Syscall.swift
[1021/1111] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[1022/1111] Compiling NIOHTTP1 ByteCollectionUtils.swift
[1023/1111] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[1024/1111] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[1025/1111] Compiling NIOHTTP1 HTTPDecoder.swift
[1026/1111] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[1027/1111] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:260:33: error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
258 |         let timeoutTask = self.eventLoop.scheduleTask(in: self.requestTimeout) { [weak self] in
259 |             // Try to avoid a spurious log message and failure if the waiter has already been removed from the list.
260 |             guard self?.waiters.removeValue(forKey: waiterId) != nil else {
    |                                 `- error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
261 |                 logger.trace("Waiter already removed when timeout task fired", metadata: ["waiter": .stringConvertible(waiterId)])
262 |                 return
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:278:27: error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
276 |             logger.trace("Connection request completed", metadata: ["waiter": .stringConvertible(waiterId)])
277 |             timeoutTask.cancel()
278 |             self?.waiters.removeValue(forKey: waiterId)
    |                           `- error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
279 |         }
280 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:273:21: error: subscript 'subscript(_:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
271 |         }
272 |         logger.trace("Adding connection request to waitlist", metadata: ["waiter": .stringConvertible(waiterId)])
273 |         self.waiters[waiterId] = (logger: logger, promise: promise, timeoutTask: timeoutTask)
    |                     `- error: subscript 'subscript(_:)' is not available due to missing import of defining module 'OrderedCollections'
274 |
275 |         promise.futureResult.whenComplete { [weak self] _ in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:135:27: error: initializer 'init(minimumCapacity:)' is not available due to missing import of defining module 'DequeModule'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'DequeModule'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
133 |         self.logger = logger
134 |         self.eventLoop = eventLoop
135 |         self.available = .init(minimumCapacity: maxConnections)
    |                           `- error: initializer 'init(minimumCapacity:)' is not available due to missing import of defining module 'DequeModule'
136 |         self.activeConnections = 0
137 |         self.waiters = .init(minimumCapacity: maxConnections << 2)
<unknown>:0: error: instance method 'makeIterator()' is not available due to missing import of defining module 'DequeModule'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:379:54: error: property 'isEmpty' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | `- note: add import of module 'DequeModule'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
377 |         // For as long as there are connections available, try to dequeue waiters. Even if the available
378 |         // connection(s) are closed, the request logic will try to open new ones.
379 |         while !self.available.isEmpty, !self.waiters.isEmpty {
    |                                                      `- error: property 'isEmpty' is not available due to missing import of defining module 'OrderedCollections'
380 |             let waiter = self.waiters.removeFirst()
381 |
<unknown>:0: error: instance method 'next()' is not available due to missing import of defining module 'DequeModule'
<unknown>:0: error: instance method 'next()' is not available due to missing import of defining module 'OrderedCollections'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:426:22: error: instance method 'removeAll(keepingCapacity:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | |- note: add import of module 'DequeModule'
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
424 |             waiter.promise.fail(ConnectionPoolError.shutdown)
425 |         }
426 |         self.waiters.removeAll()
    |                      `- error: instance method 'removeAll(keepingCapacity:)' is not available due to missing import of defining module 'OrderedCollections'
427 |
428 |         return pruningCancellationPromise.futureResult.flatMap {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:137:25: error: initializer 'init(minimumCapacity:persistent:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
135 |         self.available = .init(minimumCapacity: maxConnections)
136 |         self.activeConnections = 0
137 |         self.waiters = .init(minimumCapacity: maxConnections << 2)
    |                         `- error: initializer 'init(minimumCapacity:persistent:)' is not available due to missing import of defining module 'OrderedCollections'
138 |         self.didShutdown = false
139 |     }
<unknown>:0: error: instance method 'makeIterator()' is not available due to missing import of defining module 'OrderedCollections'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:380:39: error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
378 |         // connection(s) are closed, the request logic will try to open new ones.
379 |         while !self.available.isEmpty, !self.waiters.isEmpty {
380 |             let waiter = self.waiters.removeFirst()
    |                                       `- error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
381 |
382 |             logger.debug("Servicing connection waitlist item", metadata: ["waiter": .stringConvertible(waiter.key)])
[1028/1111] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:260:33: error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
258 |         let timeoutTask = self.eventLoop.scheduleTask(in: self.requestTimeout) { [weak self] in
259 |             // Try to avoid a spurious log message and failure if the waiter has already been removed from the list.
260 |             guard self?.waiters.removeValue(forKey: waiterId) != nil else {
    |                                 `- error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
261 |                 logger.trace("Waiter already removed when timeout task fired", metadata: ["waiter": .stringConvertible(waiterId)])
262 |                 return
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:278:27: error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
276 |             logger.trace("Connection request completed", metadata: ["waiter": .stringConvertible(waiterId)])
277 |             timeoutTask.cancel()
278 |             self?.waiters.removeValue(forKey: waiterId)
    |                           `- error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
279 |         }
280 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:273:21: error: subscript 'subscript(_:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
271 |         }
272 |         logger.trace("Adding connection request to waitlist", metadata: ["waiter": .stringConvertible(waiterId)])
273 |         self.waiters[waiterId] = (logger: logger, promise: promise, timeoutTask: timeoutTask)
    |                     `- error: subscript 'subscript(_:)' is not available due to missing import of defining module 'OrderedCollections'
274 |
275 |         promise.futureResult.whenComplete { [weak self] _ in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:135:27: error: initializer 'init(minimumCapacity:)' is not available due to missing import of defining module 'DequeModule'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'DequeModule'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
133 |         self.logger = logger
134 |         self.eventLoop = eventLoop
135 |         self.available = .init(minimumCapacity: maxConnections)
    |                           `- error: initializer 'init(minimumCapacity:)' is not available due to missing import of defining module 'DequeModule'
136 |         self.activeConnections = 0
137 |         self.waiters = .init(minimumCapacity: maxConnections << 2)
<unknown>:0: error: instance method 'makeIterator()' is not available due to missing import of defining module 'DequeModule'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:379:54: error: property 'isEmpty' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | `- note: add import of module 'DequeModule'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
377 |         // For as long as there are connections available, try to dequeue waiters. Even if the available
378 |         // connection(s) are closed, the request logic will try to open new ones.
379 |         while !self.available.isEmpty, !self.waiters.isEmpty {
    |                                                      `- error: property 'isEmpty' is not available due to missing import of defining module 'OrderedCollections'
380 |             let waiter = self.waiters.removeFirst()
381 |
<unknown>:0: error: instance method 'next()' is not available due to missing import of defining module 'DequeModule'
<unknown>:0: error: instance method 'next()' is not available due to missing import of defining module 'OrderedCollections'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:426:22: error: instance method 'removeAll(keepingCapacity:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | |- note: add import of module 'DequeModule'
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
424 |             waiter.promise.fail(ConnectionPoolError.shutdown)
425 |         }
426 |         self.waiters.removeAll()
    |                      `- error: instance method 'removeAll(keepingCapacity:)' is not available due to missing import of defining module 'OrderedCollections'
427 |
428 |         return pruningCancellationPromise.futureResult.flatMap {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:137:25: error: initializer 'init(minimumCapacity:persistent:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
135 |         self.available = .init(minimumCapacity: maxConnections)
136 |         self.activeConnections = 0
137 |         self.waiters = .init(minimumCapacity: maxConnections << 2)
    |                         `- error: initializer 'init(minimumCapacity:persistent:)' is not available due to missing import of defining module 'OrderedCollections'
138 |         self.didShutdown = false
139 |     }
<unknown>:0: error: instance method 'makeIterator()' is not available due to missing import of defining module 'OrderedCollections'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:380:39: error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
378 |         // connection(s) are closed, the request logic will try to open new ones.
379 |         while !self.available.isEmpty, !self.waiters.isEmpty {
380 |             let waiter = self.waiters.removeFirst()
    |                                       `- error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
381 |
382 |             logger.debug("Servicing connection waitlist item", metadata: ["waiter": .stringConvertible(waiter.key)])
[1029/1111] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:260:33: error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
258 |         let timeoutTask = self.eventLoop.scheduleTask(in: self.requestTimeout) { [weak self] in
259 |             // Try to avoid a spurious log message and failure if the waiter has already been removed from the list.
260 |             guard self?.waiters.removeValue(forKey: waiterId) != nil else {
    |                                 `- error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
261 |                 logger.trace("Waiter already removed when timeout task fired", metadata: ["waiter": .stringConvertible(waiterId)])
262 |                 return
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:278:27: error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
276 |             logger.trace("Connection request completed", metadata: ["waiter": .stringConvertible(waiterId)])
277 |             timeoutTask.cancel()
278 |             self?.waiters.removeValue(forKey: waiterId)
    |                           `- error: instance method 'removeValue(forKey:)' is not available due to missing import of defining module 'OrderedCollections'
279 |         }
280 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:273:21: error: subscript 'subscript(_:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
271 |         }
272 |         logger.trace("Adding connection request to waitlist", metadata: ["waiter": .stringConvertible(waiterId)])
273 |         self.waiters[waiterId] = (logger: logger, promise: promise, timeoutTask: timeoutTask)
    |                     `- error: subscript 'subscript(_:)' is not available due to missing import of defining module 'OrderedCollections'
274 |
275 |         promise.futureResult.whenComplete { [weak self] _ in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:135:27: error: initializer 'init(minimumCapacity:)' is not available due to missing import of defining module 'DequeModule'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'DequeModule'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
133 |         self.logger = logger
134 |         self.eventLoop = eventLoop
135 |         self.available = .init(minimumCapacity: maxConnections)
    |                           `- error: initializer 'init(minimumCapacity:)' is not available due to missing import of defining module 'DequeModule'
136 |         self.activeConnections = 0
137 |         self.waiters = .init(minimumCapacity: maxConnections << 2)
<unknown>:0: error: instance method 'makeIterator()' is not available due to missing import of defining module 'DequeModule'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:379:54: error: property 'isEmpty' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | `- note: add import of module 'DequeModule'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
377 |         // For as long as there are connections available, try to dequeue waiters. Even if the available
378 |         // connection(s) are closed, the request logic will try to open new ones.
379 |         while !self.available.isEmpty, !self.waiters.isEmpty {
    |                                                      `- error: property 'isEmpty' is not available due to missing import of defining module 'OrderedCollections'
380 |             let waiter = self.waiters.removeFirst()
381 |
<unknown>:0: error: instance method 'next()' is not available due to missing import of defining module 'DequeModule'
<unknown>:0: error: instance method 'next()' is not available due to missing import of defining module 'OrderedCollections'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:426:22: error: instance method 'removeAll(keepingCapacity:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | |- note: add import of module 'DequeModule'
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
424 |             waiter.promise.fail(ConnectionPoolError.shutdown)
425 |         }
426 |         self.waiters.removeAll()
    |                      `- error: instance method 'removeAll(keepingCapacity:)' is not available due to missing import of defining module 'OrderedCollections'
427 |
428 |         return pruningCancellationPromise.futureResult.flatMap {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:137:25: error: initializer 'init(minimumCapacity:persistent:)' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
135 |         self.available = .init(minimumCapacity: maxConnections)
136 |         self.activeConnections = 0
137 |         self.waiters = .init(minimumCapacity: maxConnections << 2)
    |                         `- error: initializer 'init(minimumCapacity:persistent:)' is not available due to missing import of defining module 'OrderedCollections'
138 |         self.didShutdown = false
139 |     }
<unknown>:0: error: instance method 'makeIterator()' is not available due to missing import of defining module 'OrderedCollections'
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-kit/Sources/AsyncKit/ConnectionPool/EventLoopConnectionPool.swift:380:39: error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
  4 | import struct Foundation.UUID
  5 | import struct Logging.Logger
  6 |
    | |- note: add import of module 'OrderedCollections'
    | `- note: add import of module 'OrderedCollections'
  7 | /// Holds a collection of active connections that can be requested and later released
  8 | /// back into the pool.
    :
378 |         // connection(s) are closed, the request logic will try to open new ones.
379 |         while !self.available.isEmpty, !self.waiters.isEmpty {
380 |             let waiter = self.waiters.removeFirst()
    |                                       `- error: instance method 'removeFirst()' is not available due to missing import of defining module 'OrderedCollections'
381 |
382 |             logger.debug("Servicing connection waitlist item", metadata: ["waiter": .stringConvertible(waiter.key)])
[1030/1111] Compiling NIOTLS TLSEvents.swift
[1031/1111] Compiling NIOSOCKS Errors.swift
[1032/1111] Compiling NIOSOCKS ClientStateMachine.swift
[1033/1111] Compiling NIOSOCKS SOCKSResponse.swift
[1034/1111] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[1035/1111] Compiling NIOSOCKS Messages.swift
[1036/1112] Emitting module NIOSOCKS
[1037/1112] Compiling NIOSOCKS Helpers.swift
[1038/1112] Compiling NIOSOCKS SOCKSRequest.swift
[1039/1112] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[1040/1112] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[1041/1112] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[1042/1112] Compiling AsyncKit Optional+StrictMap.swift
[1043/1112] Compiling AsyncKit Exports.swift
[1044/1112] Compiling NIOHTTP1 HTTPTypes.swift
[1045/1112] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[1046/1112] Compiling NIOHTTP1 HTTPEncoder.swift
[1047/1112] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[1048/1112] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[1049/1112] Emitting module NIOTLS
[1050/1112] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[1051/1112] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[1052/1112] Compiling NIOTLS SNIHandler.swift
[1053/1112] Compiling NIOSOCKS ServerStateMachine.swift
[1054/1112] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[1055/1112] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[1060/1113] Emitting module _NIOFileSystem
[1061/1113] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[1065/1117] Emitting module NIOFoundationCompat
[1066/1117] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[1071/1148] Compiling NIOSSL LinuxCABundle.swift
[1072/1148] Compiling NIOSSL NIOSSLClientHandler.swift
[1073/1148] Compiling NIOSSL NIOSSLHandler+Configuration.swift
[1074/1148] Compiling NIOSSL NIOSSLHandler.swift
[1075/1148] Compiling NIOSSL RNG.swift
[1076/1148] Compiling NIOSSL SSLConnection.swift
[1077/1148] Compiling NIOSSL SSLContext.swift
[1078/1148] Compiling NIOSSL SSLErrors.swift
[1079/1148] Compiling NIOSSL SSLPublicKey.swift
[1080/1148] Compiling NIOSSL SecurityFrameworkCertificateVerification.swift
[1081/1148] Compiling NIOSSL String+unsafeUninitializedCapacity.swift
[1082/1148] Compiling NIOSSL SSLInit.swift
[1083/1148] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[1084/1170] Compiling NIOTransportServices NIOTSBootstraps.swift
[1085/1170] Compiling NIOTransportServices NIOTSChannelOptions.swift
[1086/1170] Emitting module NIOHTTP1
[1087/1170] Compiling NIOTransportServices NIOTSDatagramConnectionChannel.swift
[1088/1170] Compiling NIOTransportServices NIOTSDatagramListenerBootstrap.swift
[1089/1170] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[1090/1170] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[1091/1170] Compiling NIOTransportServices AcceptHandler.swift
[1092/1170] Compiling NIOTransportServices NIOTSDatagramConnectionBootstrap.swift
[1093/1170] Compiling NIOTransportServices NIOTSListenerChannel.swift
[1094/1170] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[1095/1170] Compiling _NIOFileSystem NIOFileSystemSendableMetatype.swift
[1096/1170] Compiling _NIOFileSystem OpenOptions.swift
[1097/1170] Compiling _NIOFileSystem String+FileSystem.swift
[1098/1170] Compiling _NIOFileSystem resource_bundle_accessor.swift
[1099/1217] Compiling _NIOFileSystem Syscalls.swift
[1100/1217] Compiling _NIOFileSystem SystemFileHandle.swift
[1101/1217] Compiling _NIOFileSystem Utilities.swift
[1102/1217] Compiling _NIOFileSystem NIOFilePath.swift
[1103/1217] Compiling NIOSSL SSLPKCS12Bundle.swift
[1104/1217] Compiling NIOSSL SSLPrivateKey.swift
[1105/1217] Compiling _NIOFileSystem Mocking.swift
[1106/1217] Compiling _NIOFileSystem Syscall.swift
[1107/1236] Emitting module NIOTransportServices
[1108/1238] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1115/1238] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1116/1238] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1117/1238] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1119/1241] Compiling NIOHPACK IndexedHeaderTable.swift
[1120/1241] Compiling NIOHPACK IntegerCoding.swift
[1121/1242] Compiling NIOWebSocket WebSocketOpcode.swift
[1122/1242] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[1123/1243] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1124/1243] Emitting module NIOHTTPCompression
[1125/1243] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1126/1243] Compiling NIOHTTPCompression HTTPDecompression.swift
[1127/1243] Compiling NIOHTTPCompression HTTPCompression.swift
[1128/1243] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1129/1243] Compiling MultipartKit FormDataEncoder.Encoder.swift
[1130/1243] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[1131/1243] Compiling MultipartKit MultipartFormData.swift
[1132/1243] Compiling MultipartKit MultipartParser.swift
[1133/1243] Compiling MultipartKit Exports.swift
[1134/1243] Compiling MultipartKit FormDataDecoder.Decoder.swift
[1135/1243] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[1136/1243] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[1137/1244] Compiling NIOHPACK HuffmanTables.swift
[1138/1244] Compiling NIOWebSocket WebSocketErrorCodes.swift
[1139/1244] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[1140/1244] Compiling NIOWebSocket SHA1.swift
[1141/1244] Compiling NIOWebSocket NIOWebSocketFrameAggregator.swift
[1142/1244] Compiling NIOWebSocket NIOWebSocketServerUpgrader.swift
[1143/1244] Compiling NIOWebSocket NIOWebSocketClientUpgrader.swift
[1144/1244] Emitting module NIOWebSocket
[1145/1244] Compiling NIOWebSocket WebSocketFrame.swift
[1146/1244] Compiling NIOHPACK StaticHeaderTable.swift
[1147/1244] Compiling MultipartKit MultipartPartConvertible.swift
[1148/1244] Compiling NIOTransportServices StateManagedChannel.swift
[1150/1244] Compiling MultipartKit MultipartPart.swift
[1154/1244] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[1155/1244] Compiling MultipartKit FormDataEncoder.swift
[1156/1244] Compiling MultipartKit Storage.swift
[1158/1244] Compiling MultipartKit FormDataDecoder.swift
[1160/1244] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[1163/1244] Compiling MultipartKit BasicCodingKey.swift
[1164/1244] Compiling MultipartKit MultipartError.swift
[1165/1244] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[1166/1244] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1170/1244] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[1179/1244] Compiling NIOHPACK HuffmanCoding.swift
[1180/1244] Compiling NIOHPACK HeaderTables.swift
[1183/1244] Compiling NIOHPACK HPACKErrors.swift
[1184/1244] Emitting module NIOHPACK
[1185/1244] Compiling NIOHPACK HPACKEncoder.swift
[1186/1244] Compiling NIOHPACK HPACKHeader.swift
[1189/1244] Emitting module NIOExtras
[1190/1244] Compiling NIOSSL UniversalBootstrapSupport.swift
[1191/1244] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[1192/1244] Compiling NIOSSL resource_bundle_accessor.swift
[1193/1244] Emitting module NIOSSL
[1230/1244] Emitting module MultipartKit
[1241/1246] Compiling NIOExtras WritePCAPHandler.swift
[1242/1305] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1243/1305] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1244/1315] Emitting module NIOFileSystem
[1245/1315] Compiling NIOFileSystem Exports.swift
[1246/1323] Emitting module _NIOFileSystemFoundationCompat
[1247/1323] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[1248/1323] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[1249/1323] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1250/1323] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1251/1323] Compiling NIOHTTP2 MaySendFrames.swift
[1252/1323] Compiling NIOHTTP2 SendingDataState.swift
[1253/1323] Compiling NIOHTTP2 SendingGoawayState.swift
[1254/1323] Compiling NIOHTTP2 SendingHeadersState.swift
[1255/1323] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1256/1323] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1257/1323] Compiling NIOHTTP2 QuiescingState.swift
[1258/1323] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1259/1323] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1260/1323] Compiling NIOHTTP2 StateMachineResult.swift
[1261/1323] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1262/1323] Compiling NIOHTTP2 DOSHeuristics.swift
[1263/1330] Compiling NIOHTTP2 SendingRstStreamState.swift
[1264/1330] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1265/1330] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1266/1330] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1267/1330] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1268/1330] Compiling NIOHTTP2 HasLocalSettings.swift
[1269/1330] Compiling NIOHTTP2 HasRemoteSettings.swift
[1272/1330] Emitting module AsyncKit
[1273/1330] Compiling WebSocketKit WebSocketHandler.swift
[1274/1330] Compiling WebSocketKit WebSocket+Connect.swift
[1275/1330] Compiling WebSocketKit Exports.swift
[1276/1330] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[1277/1330] Emitting module WebSocketKit
[1278/1330] Compiling WebSocketKit WebSocket+Concurrency.swift
BUILD FAILURE 6.1 macosSpm