The Swift Package Index logo.Swift Package Index

Build Information

Failed to build mqtt-nio, reference main (91d357), with Swift 6.1 for Wasm on 5 Feb 2026 21:15:22 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swift-server-community/mqtt-nio.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/swift-server-community/mqtt-nio
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 91d3578 V2: Add support for Android (#217)
Cloned https://github.com/swift-server-community/mqtt-nio.git
Revision (git rev-parse @):
91d357875eabd63c55eee40fc6b85bc1f00839ed
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/swift-server-community/mqtt-nio.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/swift-server-community/mqtt-nio.git
https://github.com/swift-server-community/mqtt-nio.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-atomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-atomics.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.80.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swift-nio-ssl",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.14.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-ssl.git"
    },
    {
      "identity" : "swift-nio-transport-services",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.20.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-transport-services.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "mqtt-nio",
  "name" : "mqtt-nio",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "MQTTNIO",
      "targets" : [
        "MQTTNIO"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MQTTNIOTests",
      "module_type" : "SwiftTarget",
      "name" : "MQTTNIOTests",
      "path" : "Tests/MQTTNIOTests",
      "sources" : [
        "CoreMQTTTests.swift",
        "MQTTNIOTests+async.swift",
        "MQTTNIOTests.swift",
        "MQTTNIOv5Tests.swift"
      ],
      "target_dependencies" : [
        "MQTTNIO"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MQTTNIO",
      "module_type" : "SwiftTarget",
      "name" : "MQTTNIO",
      "path" : "Sources/MQTTNIO",
      "product_dependencies" : [
        "Atomics",
        "Logging",
        "NIO",
        "NIOConcurrencyHelpers",
        "NIOHTTP1",
        "NIOWebSocket",
        "NIOSSL",
        "NIOTransportServices"
      ],
      "product_memberships" : [
        "MQTTNIO"
      ],
      "sources" : [
        "AsyncAwaitSupport/MQTTClient+async.swift",
        "AsyncAwaitSupport/MQTTClientV5+async.swift",
        "AsyncAwaitSupport/Sendable.swift",
        "ChannelHandlers/MQTTMessageDecoder.swift",
        "ChannelHandlers/MQTTMessageHandler.swift",
        "ChannelHandlers/MQTTTaskHandler.swift",
        "ChannelHandlers/PingreqHandler.swift",
        "ChannelHandlers/WebSocketHandler.swift",
        "ChannelHandlers/WebSocketInitialRequest.swift",
        "MQTTClient.swift",
        "MQTTClientV5.swift",
        "MQTTConfiguration.swift",
        "MQTTConnection.swift",
        "MQTTCoreTypes.swift",
        "MQTTCoreTypesV5.swift",
        "MQTTError.swift",
        "MQTTInflight.swift",
        "MQTTListeners.swift",
        "MQTTPacket.swift",
        "MQTTProperties.swift",
        "MQTTReason.swift",
        "MQTTSerializer.swift",
        "MQTTTask.swift",
        "TSTLSConfiguration.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:58b971189c4d3c564696bb40c86e07506670ed096ab7351a005c7c449525017a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-atomics.git
[1/2171] Fetching swift-docc-plugin
[219/4980] Fetching swift-docc-plugin, swift-nio-transport-services
[388/6800] Fetching swift-docc-plugin, swift-nio-transport-services, swift-atomics
[1133/12699] Fetching swift-docc-plugin, swift-nio-transport-services, swift-atomics, swift-log
[10514/94582] Fetching swift-docc-plugin, swift-nio-transport-services, swift-atomics, swift-log, swift-nio
[12629/109878] Fetching swift-docc-plugin, swift-nio-transport-services, swift-atomics, swift-log, swift-nio, swift-nio-ssl
Fetched https://github.com/apple/swift-atomics.git from cache (4.08s)
Fetched https://github.com/apple/swift-log.git from cache (4.09s)
[62856/102159] Fetching swift-docc-plugin, swift-nio-transport-services, swift-nio, swift-nio-ssl
Fetched https://github.com/apple/swift-docc-plugin from cache (4.12s)
[62322/99988] Fetching swift-nio-transport-services, swift-nio, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-ssl.git from cache (4.14s)
[48664/84692] Fetching swift-nio-transport-services, swift-nio
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (10.73s)
Fetched https://github.com/apple/swift-nio.git from cache (10.90s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (11.88s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.5 (1.09s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3653] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.58s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.69s)
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 (1.00s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.94.0 (1.65s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
[1/5552] Fetching swift-system
[3444/24925] Fetching swift-system, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (0.84s)
[4844/19373] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (2.52s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (3.88s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.3.0 (1.87s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.9.1 (1.40s)
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.07s)
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.3.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-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-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.9.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.94.0
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/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/35] Write sources
[18/35] Compiling CNIOWindows WSAStartup.c
[19/35] Compiling CNIOWindows shim.c
[20/35] Compiling _AtomicsShims.c
[21/35] Compiling CNIOWASI CNIOWASI.c
[22/35] Compiling CNIOSHA1 c_nio_sha1.c
[23/35] Compiling CNIOOpenBSD shim.c
[24/35] Compiling CNIOLinux liburing_shims.c
[24/35] Compiling CNIOLinux shim.c
[26/35] Compiling CNIOPosix event_loop_id.c
[26/35] Write sources
[28/35] Compiling CNIODarwin shim.c
[29/35] Compiling CNIOLLHTTP c_nio_http.c
[30/35] Compiling CNIOLLHTTP c_nio_api.c
[31/35] Write swift-version-24593BA9C3E375BF.txt
[33/80] Emitting module Logging
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[34/80] Emitting module InternalCollectionsUtilities
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[35/82] Emitting module Atomics
[35/84] Compiling CNIOLLHTTP c_nio_llhttp.c
[36/84] Compiling c-nioatomics.c
[38/84] Compiling InternalCollectionsUtilities UnsafeMutableRawBufferPointer+Extras.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
[39/84] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.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
[40/84] Compiling Atomics ManagedAtomic.swift
[41/84] Compiling Atomics ManagedAtomicLazyReference.swift
[42/84] Emitting module _NIOBase64
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[43/84] Compiling _NIOBase64 Base64.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
[44/84] Compiling _NIODataStructures PriorityQueue.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
[45/84] Compiling _NIODataStructures _TinyArray.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
[48/85] Compiling Atomics UnsafeAtomic.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
[49/85] Compiling Atomics UnsafeAtomicLazyReference.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
[52/85] Compiling Atomics OptionalRawRepresentable.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
[53/85] Compiling Atomics RawRepresentable.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
[54/85] Compiling Atomics PointerConformances.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
[55/85] Compiling Atomics Primitives.native.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
[56/85] Compiling Atomics AtomicInteger.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
[57/85] Compiling Atomics AtomicBool.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
[58/85] Compiling Atomics IntegerConformances.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
[61/85] Compiling Logging LogHandler.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
[62/85] Compiling Atomics AtomicOptionalWrappable.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
[63/85] Compiling Atomics AtomicReference.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
[64/85] Compiling Atomics AtomicStorage.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
[65/85] Compiling Atomics AtomicValue.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
[66/86] Compiling Atomics IntegerOperations.swift
[67/86] Compiling Atomics Unmanaged extensions.swift
[82/94] Compiling Logging Logging.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
[83/98] Compiling Logging MetadataProvider.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
[84/102] Emitting module _NIODataStructures
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[85/102] Compiling _NIODataStructures Heap.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
[85/103] Compiling c-atomics.c
[87/103] Compiling Logging Locks.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
[90/104] Compiling DequeModule _DequeBuffer.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
[91/104] Compiling DequeModule _DequeBufferHeader.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
[92/112] Compiling DequeModule Deque+Equatable.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
[93/112] Compiling DequeModule Deque+ExpressibleByArrayLiteral.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
[94/112] Compiling DequeModule Deque+Extras.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
[95/112] Compiling DequeModule Deque+Hashable.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
[96/112] Compiling NIOConcurrencyHelpers lock.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
[97/112] Compiling NIOConcurrencyHelpers NIOLock.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
[98/112] Compiling NIOConcurrencyHelpers atomics.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
[99/112] Compiling NIOConcurrencyHelpers NIOLockedValueBox.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
[100/112] Compiling DequeModule _DequeSlot.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
[101/112] Compiling DequeModule _UnsafeWrappedBuffer.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
[102/112] Compiling NIOConcurrencyHelpers NIOAtomic.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
[103/112] Emitting module NIOConcurrencyHelpers
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[105/113] Compiling DequeModule Deque+CustomReflectable.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
[106/113] Compiling DequeModule Deque+Descriptions.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
[107/113] Compiling DequeModule Deque+Testing.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
[108/113] Compiling DequeModule Deque._Storage.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
[109/113] Compiling DequeModule Deque._UnsafeHandle.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
[110/113] Compiling DequeModule Deque.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
[111/113] Compiling DequeModule Deque+Codable.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
[112/113] Compiling DequeModule Deque+Collection.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
[113/113] Emitting module DequeModule
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[115/177] Compiling NIOCore NIOCoreSendableMetatype.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
[116/177] Compiling NIOCore NIODecodedAsyncSequence.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
[117/177] Compiling NIOCore NIOLoopBound.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
[118/177] Compiling NIOCore NIOPooledRecvBufferAllocator.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
[119/177] Compiling NIOCore NIOScheduledCallback.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
[120/177] Compiling NIOCore NIOSendable.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
[121/177] Compiling NIOCore NIOSplitLinesMessageDecoder.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
[122/177] Compiling NIOCore RecvByteBufferAllocator.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
[123/185] Compiling NIOCore EventLoopFuture+Deprecated.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
[124/185] Compiling NIOCore EventLoopFuture+WithEventLoop.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
[125/185] Compiling NIOCore EventLoopFuture.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
[126/185] Compiling NIOCore FileDescriptor.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
[127/185] Compiling NIOCore FileHandle.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
[128/185] Compiling NIOCore FileRegion.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
[129/185] Compiling NIOCore GlobalSingletons.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
[130/185] Compiling NIOCore IO.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
[131/185] Compiling NIOCore IOData.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
[132/185] Compiling NIOCore IPProtocol.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
[133/185] Compiling NIOCore IntegerBitPacking.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
[134/185] Compiling NIOCore IntegerTypes.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
[135/185] Compiling NIOCore Interfaces.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
[136/185] Compiling NIOCore Linux.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
[137/185] Compiling NIOCore MarkedCircularBuffer.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
[138/185] Compiling NIOCore MulticastChannel.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
[139/185] Compiling NIOCore NIOAny.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
[140/185] Compiling NIOCore NIOCloseOnErrorHandler.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
[141/185] Compiling NIOCore SingleStepByteToMessageDecoder.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
[142/185] Compiling NIOCore SocketAddresses.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
[143/185] Compiling NIOCore SocketOptionProvider.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
[144/185] Compiling NIOCore SystemCallHelpers.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
[145/185] Compiling NIOCore TimeAmount+Duration.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
[146/185] Compiling NIOCore TypeAssistedChannelHandler.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
[147/185] Compiling NIOCore UniversalBootstrapSupport.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
[148/185] Compiling NIOCore 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
[149/185] Compiling NIOCore AddressedEnvelope.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
[150/185] Compiling NIOCore AsyncAwaitSupport.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
[151/185] Compiling NIOCore AsyncChannel.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
[152/185] Compiling NIOCore AsyncChannelHandler.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
[153/185] Compiling NIOCore AsyncChannelInboundStream.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
[154/185] Compiling NIOCore AsyncChannelOutboundWriter.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
[155/185] Compiling NIOCore NIOAsyncSequenceProducer.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
[156/185] Compiling NIOCore NIOAsyncSequenceProducerStrategies.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
[157/185] Compiling NIOCore NIOAsyncWriter.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
[158/185] Compiling NIOCore CircularBuffer.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
[159/185] Compiling NIOCore Codec.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
[160/185] Compiling NIOCore ConvenienceOptionSupport.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
[161/185] Compiling NIOCore DeadChannel.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
[162/185] Compiling NIOCore DispatchQueue+WithFuture.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
[163/185] Compiling NIOCore EventLoop+Deprecated.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
[164/185] Compiling NIOCore EventLoop+SerialExecutor.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
[165/185] Compiling NIOCore EventLoop.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
[166/185] Compiling NIOCore EventLoopFuture+AssumeIsolated.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
[167/185] Compiling NIOCore NIOThrowingAsyncSequenceProducer.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
[168/185] Compiling NIOCore BSDSocketAPI.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
[169/185] Compiling NIOCore ByteBuffer-aux.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
[170/185] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.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
[171/185] Compiling NIOCore ByteBuffer-conversions.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
[172/185] Compiling NIOCore ByteBuffer-core.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
[173/185] Compiling NIOCore ByteBuffer-hex.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
[174/185] Compiling NIOCore ByteBuffer-int.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
[175/185] Compiling NIOCore ByteBuffer-lengthPrefix.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
[176/185] Emitting module NIOCore
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[177/185] Compiling NIOCore ByteBuffer-multi-int.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
[178/185] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.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
[179/185] Compiling NIOCore ByteBuffer-views.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
[180/185] Compiling NIOCore Channel.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
[181/185] Compiling NIOCore ChannelHandler.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
[182/185] Compiling NIOCore ChannelHandlers.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
[183/185] Compiling NIOCore ChannelInvoker.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
[184/185] Compiling NIOCore ChannelOption.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
[185/185] Compiling NIOCore ChannelPipeline.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
[187/267] Compiling NIOPosix NIOPosixSendableMetatype.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
[188/267] Compiling NIOPosix NIOThreadPool.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
[189/267] Compiling NIOPosix NonBlockingFileIO.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
[190/267] Compiling NIOPosix PendingDatagramWritesManager.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
[191/267] Compiling NIOPosix PendingWritesManager.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
[192/267] Compiling NIOPosix PipeChannel.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
[193/267] Compiling NIOPosix PipePair.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
[194/267] Emitting module NIOPosix
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[195/273] Compiling NIOEmbedded AsyncTestingEventLoop.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
[196/273] Compiling NIOEmbedded AsyncTestingChannel.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
[197/273] Compiling NIOPosix BSDSocketAPICommon.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
[198/273] Compiling NIOPosix BSDSocketAPIPosix.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
[199/273] Compiling NIOPosix BSDSocketAPIWindows.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
[200/273] Compiling NIOPosix BaseSocket.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
[201/273] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.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
[202/273] Compiling NIOPosix BaseSocketChannel.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
[203/273] Compiling NIOPosix BaseStreamSocketChannel.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
[204/273] Compiling NIOPosix IO.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
[205/273] Compiling NIOPosix IntegerBitPacking.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
[206/273] Compiling NIOPosix IntegerTypes.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
[207/273] Compiling NIOPosix Linux.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
[208/273] Compiling NIOPosix LinuxCPUSet.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
[209/273] Compiling NIOPosix LinuxUring.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
[210/273] Compiling NIOPosix MultiThreadedEventLoopGroup.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
[211/273] Compiling NIOPosix Bootstrap.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
[212/273] Compiling NIOPosix ControlMessage.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
[213/273] Compiling NIOPosix DatagramVectorReadManager.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
[214/273] Compiling NIOPosix Errors+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
[215/273] Compiling NIOPosix FileDescriptor.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
[216/273] Compiling NIOPosix GetaddrinfoResolver.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
[217/273] Compiling NIOPosix HappyEyeballs.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
[218/273] 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
[219/273] Compiling NIOPosix Pool.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
[220/273] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.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
[221/273] Compiling NIOPosix PosixSingletons.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
[222/273] Compiling NIOPosix RawSocketBootstrap.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
[223/273] Compiling NIOPosix Resolver.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
[224/273] Compiling NIOPosix Selectable.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
[225/273] Compiling NIOPosix SelectableChannel.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
[226/273] Compiling NIOPosix SelectableEventLoop.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
[227/273] Compiling NIOPosix SelectorEpoll.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
[228/273] Compiling NIOPosix SelectorGeneric.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
[229/273] Compiling NIOPosix SelectorKqueue.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
[230/273] Compiling NIOPosix SelectorUring.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
[231/273] Compiling NIOPosix SelectorWSAPoll.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
[232/273] Compiling NIOPosix ServerSocket.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
[233/273] Compiling NIOPosix Socket.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
[234/273] Compiling NIOPosix SocketChannel.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
[235/273] Compiling NIOPosix SocketProtocols.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
[236/273] Compiling NIOPosix StructuredConcurrencyHelpers.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
[237/273] Compiling NIOPosix System.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
[238/273] Compiling NIOPosix Thread.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
[239/273] Compiling NIOPosix ThreadPosix.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
[240/273] Compiling NIOPosix ThreadWindows.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
[241/273] Compiling NIOPosix 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
[242/273] Compiling NIOPosix 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
[243/273] Compiling NIOPosix VsockAddress.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
[244/273] Compiling NIOPosix VsockChannelEvents.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
[245/273] Compiling NIOPosix Windows.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
[246/274] 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
[247/274] 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
[248/274] 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
[249/274] Emitting module NIOEmbedded
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[251/274] 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
[252/274] 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
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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
[260/277] Compiling NIOEmbedded Embedded.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
[262/278] 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
[263/278] 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
[264/278] 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
[265/280] 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
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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
[269/280] Emitting module NIO
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[270/280] Compiling NIO 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
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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
[279/282] 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
[280/282] 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
[281/282] 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
[282/282] 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
[284/305] Compiling NIOTransportServices NIOTSConnectionChannel.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
[285/305] 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
[286/305] 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
[287/307] 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
[288/307] 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
[289/307] 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
[290/317] 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
[291/317] 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
[292/317] 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
[293/317] 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
[294/317] 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
[295/317] 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
[296/317] 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
[297/317] 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
[298/317] 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
[299/317] 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
[300/317] 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
[301/317] 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
[302/318] 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
[303/318] 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
[304/318] 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
[305/318] 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
[306/318] 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
[307/318] 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
[308/318] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.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
[309/319] 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
[311/319] 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
[312/319] 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
[313/319] 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
[314/319] 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
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[316/319] 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
[319/319] 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
[321/342] Compiling MQTTNIO MQTTError.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[322/342] Compiling MQTTNIO MQTTInflight.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[323/342] Compiling MQTTNIO MQTTListeners.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
error: emit-module command failed with exit code 1 (use -v to see invocation)
[324/342] Emitting module MQTTNIO
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[325/345] Compiling MQTTNIO MQTTClient+async.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[326/345] Compiling MQTTNIO MQTTClientV5+async.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[327/345] Compiling MQTTNIO Sendable.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[328/345] Compiling MQTTNIO MQTTMessageDecoder.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[329/345] Compiling MQTTNIO MQTTMessageHandler.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[330/345] Compiling MQTTNIO MQTTTaskHandler.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[331/345] Compiling MQTTNIO MQTTConnection.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[332/345] Compiling MQTTNIO MQTTCoreTypes.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[333/345] Compiling MQTTNIO MQTTCoreTypesV5.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[334/345] Compiling MQTTNIO MQTTSerializer.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[335/345] Compiling MQTTNIO MQTTTask.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[336/345] Compiling MQTTNIO TSTLSConfiguration.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[337/345] Compiling MQTTNIO MQTTPacket.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[338/345] Compiling MQTTNIO MQTTProperties.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[339/345] Compiling MQTTNIO MQTTReason.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[340/345] Compiling MQTTNIO MQTTClient.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[341/345] Compiling MQTTNIO MQTTClientV5.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[342/345] Compiling MQTTNIO MQTTConfiguration.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[343/345] Compiling MQTTNIO PingreqHandler.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[344/345] Compiling MQTTNIO WebSocketHandler.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[345/345] Compiling MQTTNIO WebSocketInitialRequest.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:58b971189c4d3c564696bb40c86e07506670ed096ab7351a005c7c449525017a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/54] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[5/54] Compiling NIOConcurrencyHelpers lock.swift
[6/54] Compiling _NIODataStructures _TinyArray.swift
[7/54] Compiling _NIOBase64 Base64.swift
[8/54] Compiling Logging MetadataProvider.swift
[9/54] Compiling Atomics AtomicInteger.swift
[10/54] Compiling Atomics AtomicOptionalWrappable.swift
[11/54] Compiling Atomics AtomicReference.swift
[12/56] Compiling Atomics UnsafeAtomic.swift
[13/56] Compiling Atomics UnsafeAtomicLazyReference.swift
[14/56] Compiling Atomics OptionalRawRepresentable.swift
[15/58] Compiling _NIODataStructures PriorityQueue.swift
[16/58] Compiling Atomics ManagedAtomic.swift
[17/58] Compiling Atomics ManagedAtomicLazyReference.swift
[18/58] Compiling Atomics AtomicMemoryOrderings.swift
[19/58] Compiling Atomics DoubleWord.swift
[20/58] Compiling Atomics AtomicStorage.swift
[21/58] Compiling Atomics AtomicValue.swift
[24/58] Emitting module _NIOBase64
[27/59] Compiling Atomics PointerConformances.swift
[28/59] Compiling Atomics Primitives.native.swift
[34/59] Compiling NIOConcurrencyHelpers NIOLock.swift
[35/59] Compiling InternalCollectionsUtilities UnsafeMutableRawBufferPointer+Extras.swift
[36/59] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.swift
[37/59] Compiling NIOConcurrencyHelpers atomics.swift
[38/59] Emitting module _NIODataStructures
[39/59] Compiling _NIODataStructures Heap.swift
[43/60] Compiling Atomics IntegerOperations.swift
[44/60] Compiling Atomics Unmanaged extensions.swift
[45/60] Emitting module InternalCollectionsUtilities
[47/60] Emitting module NIOConcurrencyHelpers
[48/60] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[51/61] Compiling Atomics IntegerConformances.swift
[55/62] Compiling Logging LogHandler.swift
[56/62] Compiling Logging Locks.swift
[57/62] Emitting module Logging
[58/62] Compiling Logging Logging.swift
[60/78] Compiling DequeModule _DequeBuffer.swift
[61/78] Compiling DequeModule _DequeBufferHeader.swift
[62/80] Compiling DequeModule Deque+Equatable.swift
[63/80] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[64/80] Compiling DequeModule Deque+CustomReflectable.swift
[65/80] Compiling DequeModule Deque+Descriptions.swift
[66/80] Compiling DequeModule Deque+Codable.swift
[67/80] Compiling DequeModule Deque+Collection.swift
[68/80] Emitting module DequeModule
[69/80] Compiling DequeModule _DequeSlot.swift
[70/80] Compiling DequeModule _UnsafeWrappedBuffer.swift
[71/80] Compiling DequeModule Deque+Extras.swift
[72/80] Compiling DequeModule Deque+Hashable.swift
[73/80] Compiling DequeModule Deque._UnsafeHandle.swift
[74/80] Compiling DequeModule Deque.swift
[75/80] Compiling DequeModule Deque+Testing.swift
[76/80] Compiling DequeModule Deque._Storage.swift
[78/81] Emitting module Atomics
[83/145] Compiling NIOCore NIOCoreSendableMetatype.swift
[84/145] Compiling NIOCore NIODecodedAsyncSequence.swift
[85/145] Compiling NIOCore NIOLoopBound.swift
[86/145] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[87/145] Compiling NIOCore NIOScheduledCallback.swift
[88/145] Compiling NIOCore NIOSendable.swift
[89/145] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[90/145] Compiling NIOCore RecvByteBufferAllocator.swift
[91/153] Compiling NIOCore CircularBuffer.swift
[92/153] Compiling NIOCore Codec.swift
[93/153] Compiling NIOCore ConvenienceOptionSupport.swift
[94/153] Compiling NIOCore DeadChannel.swift
[95/153] Compiling NIOCore DispatchQueue+WithFuture.swift
[96/153] Compiling NIOCore EventLoop+Deprecated.swift
[97/153] Compiling NIOCore EventLoop+SerialExecutor.swift
[98/153] Compiling NIOCore EventLoop.swift
[99/153] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[100/153] Compiling NIOCore AddressedEnvelope.swift
[101/153] Compiling NIOCore AsyncAwaitSupport.swift
[102/153] Compiling NIOCore AsyncChannel.swift
[103/153] Compiling NIOCore AsyncChannelHandler.swift
[104/153] Compiling NIOCore AsyncChannelInboundStream.swift
[105/153] Compiling NIOCore AsyncChannelOutboundWriter.swift
[106/153] Compiling NIOCore NIOAsyncSequenceProducer.swift
[107/153] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[108/153] Compiling NIOCore NIOAsyncWriter.swift
[109/153] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[110/153] Compiling NIOCore BSDSocketAPI.swift
[111/153] Compiling NIOCore ByteBuffer-aux.swift
[112/153] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[113/153] Compiling NIOCore ByteBuffer-conversions.swift
[114/153] Compiling NIOCore ByteBuffer-core.swift
[115/153] Compiling NIOCore ByteBuffer-hex.swift
[116/153] Compiling NIOCore ByteBuffer-int.swift
[117/153] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[118/153] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[119/153] Compiling NIOCore SocketAddresses.swift
[120/153] Compiling NIOCore SocketOptionProvider.swift
[121/153] Compiling NIOCore SystemCallHelpers.swift
[122/153] Compiling NIOCore TimeAmount+Duration.swift
[123/153] Compiling NIOCore TypeAssistedChannelHandler.swift
[124/153] Compiling NIOCore UniversalBootstrapSupport.swift
[125/153] Compiling NIOCore Utilities.swift
[126/153] Compiling NIOCore IPProtocol.swift
[127/153] Compiling NIOCore IntegerBitPacking.swift
[128/153] Compiling NIOCore IntegerTypes.swift
[129/153] Compiling NIOCore Interfaces.swift
[130/153] Compiling NIOCore Linux.swift
[131/153] Compiling NIOCore MarkedCircularBuffer.swift
[132/153] Compiling NIOCore MulticastChannel.swift
[133/153] Compiling NIOCore NIOAny.swift
[134/153] Compiling NIOCore NIOCloseOnErrorHandler.swift
[135/153] Emitting module NIOCore
[136/153] Compiling NIOCore EventLoopFuture+Deprecated.swift
[137/153] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[138/153] Compiling NIOCore EventLoopFuture.swift
[139/153] Compiling NIOCore FileDescriptor.swift
[140/153] Compiling NIOCore FileHandle.swift
[141/153] Compiling NIOCore FileRegion.swift
[142/153] Compiling NIOCore GlobalSingletons.swift
[143/153] Compiling NIOCore IO.swift
[144/153] Compiling NIOCore IOData.swift
[145/153] Compiling NIOCore ByteBuffer-multi-int.swift
[146/153] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[147/153] Compiling NIOCore ByteBuffer-views.swift
[148/153] Compiling NIOCore Channel.swift
[149/153] Compiling NIOCore ChannelHandler.swift
[150/153] Compiling NIOCore ChannelHandlers.swift
[151/153] Compiling NIOCore ChannelInvoker.swift
[152/153] Compiling NIOCore ChannelOption.swift
[153/153] Compiling NIOCore ChannelPipeline.swift
[155/219] Compiling NIOTLS TLSEvents.swift
[156/219] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[157/219] Emitting module NIOPosix
[158/225] Compiling NIOPosix Socket.swift
[159/225] Compiling NIOPosix SocketChannel.swift
[160/225] Compiling NIOPosix SocketProtocols.swift
[161/225] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[162/225] Compiling NIOPosix System.swift
[163/225] Compiling NIOPosix Thread.swift
[164/225] Compiling NIOPosix ThreadPosix.swift
[165/225] Compiling NIOPosix Pool.swift
[166/225] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[167/225] Compiling NIOPosix PosixSingletons.swift
[168/225] Compiling NIOPosix RawSocketBootstrap.swift
[169/225] Compiling NIOPosix Resolver.swift
[170/225] Compiling NIOPosix Selectable.swift
[171/225] Compiling NIOPosix SelectableChannel.swift
[172/225] Compiling NIOPosix SelectableEventLoop.swift
[173/225] Compiling NIOPosix SelectorEpoll.swift
[174/225] Compiling NIOPosix SelectorGeneric.swift
[175/225] Compiling NIOPosix SelectorKqueue.swift
[176/225] Compiling NIOPosix SelectorUring.swift
[177/225] Compiling NIOPosix SelectorWSAPoll.swift
[178/225] Compiling NIOPosix ServerSocket.swift
[179/225] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[180/226] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[181/241] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[182/241] Compiling NIOEmbedded AsyncTestingChannel.swift
[183/241] Emitting module NIOTLS
[184/241] Compiling NIOPosix NIOPosixSendableMetatype.swift
[185/241] Compiling NIOPosix NIOThreadPool.swift
[186/241] Compiling NIOPosix NonBlockingFileIO.swift
[187/241] Compiling NIOPosix PendingDatagramWritesManager.swift
[188/241] Compiling NIOPosix PendingWritesManager.swift
[189/241] Compiling NIOPosix PipeChannel.swift
[190/241] Compiling NIOPosix PipePair.swift
[191/241] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[192/241] Compiling NIOPosix ControlMessage.swift
[193/241] Compiling NIOPosix DatagramVectorReadManager.swift
[194/241] Compiling NIOPosix Errors+Any.swift
[195/241] Compiling NIOPosix FileDescriptor.swift
[196/241] Compiling NIOPosix GetaddrinfoResolver.swift
[197/241] Compiling NIOPosix HappyEyeballs.swift
[198/241] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[199/241] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[200/241] Compiling NIOHTTP1 ByteCollectionUtils.swift
[201/241] Compiling NIOHTTP1 HTTPDecoder.swift
[202/241] Compiling NIOHTTP1 HTTPEncoder.swift
[203/241] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[204/241] Compiling NIOHTTP1 HTTPTypes.swift
[205/241] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[206/241] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[207/241] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[208/241] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[209/241] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[210/241] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[211/241] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[212/241] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[213/241] Compiling NIOPosix ThreadWindows.swift
[214/241] Compiling NIOPosix UnsafeTransfer.swift
[215/241] Compiling NIOPosix Utilities.swift
[216/241] Compiling NIOPosix VsockAddress.swift
[217/241] Compiling NIOPosix VsockChannelEvents.swift
[218/241] Compiling NIOPosix Windows.swift
[220/242] Emitting module NIOEmbedded
[221/242] Emitting module NIOFoundationCompat
[222/242] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[223/243] Compiling NIOTLS SNIHandler.swift
[224/243] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[225/243] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[228/244] Emitting module NIOHTTP1
[233/246] Compiling NIOEmbedded Embedded.swift
[235/249] Compiling NIO Exports.swift
[236/249] Emitting module NIO
[237/250] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[238/250] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[252/273] Compiling NIOTransportServices NIOTSBootstraps.swift
[253/273] Compiling NIOTransportServices NIOTSChannelOptions.swift
[254/273] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[255/275] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[256/275] Compiling NIOTransportServices NIOTSErrors.swift
[257/275] Compiling NIOTransportServices NIOTSEventLoop.swift
[258/275] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[259/275] Compiling NIOTransportServices NIOTSSingletons.swift
[260/275] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[261/275] Compiling NIOTransportServices StateManagedChannel.swift
[262/275] Compiling NIOTransportServices StateManagedListenerChannel.swift
[263/275] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[264/275] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[265/275] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[266/275] Compiling NIOTransportServices NIOTSListenerChannel.swift
[267/275] Emitting module NIOTransportServices
[268/275] Compiling NIOTransportServices AcceptHandler.swift
[269/275] Compiling NIOTransportServices NIOTSDatagramConnectionBootstrap.swift
[270/275] Compiling NIOTransportServices NIOTSDatagramConnectionChannel.swift
[271/275] Compiling NIOTransportServices NIOTSDatagramListenerBootstrap.swift
[272/275] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[273/275] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[274/275] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[275/275] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[277/286] Compiling NIOWebSocket WebSocketOpcode.swift
[278/287] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[279/287] Compiling NIOWebSocket WebSocketErrorCodes.swift
[280/287] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[281/287] Compiling NIOWebSocket WebSocketFrame.swift
[282/287] Compiling NIOWebSocket NIOWebSocketServerUpgrader.swift
[283/287] Compiling NIOWebSocket SHA1.swift
[284/287] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[285/287] Compiling NIOWebSocket NIOWebSocketClientUpgrader.swift
[286/287] Compiling NIOWebSocket NIOWebSocketFrameAggregator.swift
[287/287] Emitting module NIOWebSocket
error: emit-module command failed with exit code 1 (use -v to see invocation)
[289/310] Emitting module MQTTNIO
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[290/313] Compiling MQTTNIO MQTTClient+async.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[291/313] Compiling MQTTNIO MQTTClientV5+async.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[292/313] Compiling MQTTNIO Sendable.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[293/313] Compiling MQTTNIO MQTTMessageDecoder.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[294/313] Compiling MQTTNIO MQTTMessageHandler.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[295/313] Compiling MQTTNIO MQTTTaskHandler.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[296/313] Compiling MQTTNIO MQTTSerializer.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[297/313] Compiling MQTTNIO MQTTTask.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[298/313] Compiling MQTTNIO TSTLSConfiguration.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[299/313] Compiling MQTTNIO MQTTConnection.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[300/313] Compiling MQTTNIO MQTTCoreTypes.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[301/313] Compiling MQTTNIO MQTTCoreTypesV5.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[302/313] Compiling MQTTNIO MQTTError.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[303/313] Compiling MQTTNIO MQTTInflight.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[304/313] Compiling MQTTNIO MQTTListeners.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[305/313] Compiling MQTTNIO MQTTPacket.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[306/313] Compiling MQTTNIO MQTTProperties.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[307/313] Compiling MQTTNIO MQTTReason.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[308/313] Compiling MQTTNIO MQTTClient.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[309/313] Compiling MQTTNIO MQTTClientV5.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[310/313] Compiling MQTTNIO MQTTConfiguration.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[311/313] Compiling MQTTNIO PingreqHandler.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[312/313] Compiling MQTTNIO WebSocketHandler.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
[313/313] Compiling MQTTNIO WebSocketInitialRequest.swift
/host/spi-builder-workspace/Sources/MQTTNIO/AsyncAwaitSupport/MQTTClient+async.swift:17:8: error: no such module 'Dispatch'
 15 |
 16 | #if canImport(FoundationEssentials)
 17 | import Dispatch
    |        `- error: no such module 'Dispatch'
 18 | import FoundationEssentials
 19 | #else
BUILD FAILURE 6.1 wasm