Build Information
Successful build of hummingbird-auth, reference main (357f6f
), with Swift 6.1 for Linux on 23 Jun 2025 23:54:50 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/hummingbird-project/hummingbird-auth.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/hummingbird-project/hummingbird-auth
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 357f6f7 Update from Hummingbird Project Template (#86)
Cloned https://github.com/hummingbird-project/hummingbird-auth.git
Revision (git rev-parse @):
357f6f73bc4665e436d23ceada6af1e15f775099
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/hummingbird-project/hummingbird-auth.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.1
Building package at path: $PWD
https://github.com/hummingbird-project/hummingbird-auth.git
https://github.com/hummingbird-project/hummingbird-auth.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "hummingbird",
"requirement" : {
"range" : [
{
"lower_bound" : "2.5.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/hummingbird-project/hummingbird.git"
},
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.63.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "swift-extras-base64",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-extras/swift-extras-base64.git"
}
],
"manifest_display_name" : "hummingbird-auth",
"name" : "hummingbird-auth",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "14.0"
},
{
"name" : "ios",
"version" : "17.0"
},
{
"name" : "tvos",
"version" : "17.0"
}
],
"products" : [
{
"name" : "HummingbirdAuth",
"targets" : [
"HummingbirdAuth"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HummingbirdBasicAuth",
"targets" : [
"HummingbirdBasicAuth"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HummingbirdBcrypt",
"targets" : [
"HummingbirdBcrypt"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HummingbirdOTP",
"targets" : [
"HummingbirdOTP"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HummingbirdAuthTesting",
"targets" : [
"HummingbirdAuthTesting"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "HummingbirdOTP",
"module_type" : "SwiftTarget",
"name" : "HummingbirdOTP",
"path" : "Sources/HummingbirdOTP",
"product_dependencies" : [
"Crypto",
"ExtrasBase64"
],
"product_memberships" : [
"HummingbirdOTP"
],
"sources" : [
"OTP.swift"
],
"type" : "library"
},
{
"c99name" : "HummingbirdBcrypt",
"module_type" : "SwiftTarget",
"name" : "HummingbirdBcrypt",
"path" : "Sources/HummingbirdBcrypt",
"product_memberships" : [
"HummingbirdBasicAuth",
"HummingbirdBcrypt"
],
"sources" : [
"Bcrypt.swift"
],
"target_dependencies" : [
"CBcrypt"
],
"type" : "library"
},
{
"c99name" : "HummingbirdBasicAuth",
"module_type" : "SwiftTarget",
"name" : "HummingbirdBasicAuth",
"path" : "Sources/HummingbirdBasicAuth",
"product_dependencies" : [
"Hummingbird"
],
"product_memberships" : [
"HummingbirdBasicAuth"
],
"sources" : [
"BasicAuthenticator.swift",
"PasswordVerifier.swift",
"UserPasswordRepository.swift"
],
"target_dependencies" : [
"HummingbirdAuth",
"HummingbirdBcrypt"
],
"type" : "library"
},
{
"c99name" : "HummingbirdAuthTests",
"module_type" : "SwiftTarget",
"name" : "HummingbirdAuthTests",
"path" : "Tests/HummingbirdAuthTests",
"product_dependencies" : [
"HummingbirdTesting",
"NIOPosix"
],
"sources" : [
"AuthTests.swift",
"BcryptTests.swift",
"OTPTests.swift",
"SessionTests.swift"
],
"target_dependencies" : [
"HummingbirdAuth",
"HummingbirdBasicAuth",
"HummingbirdBcrypt",
"HummingbirdOTP",
"HummingbirdAuthTesting"
],
"type" : "test"
},
{
"c99name" : "HummingbirdAuthTesting",
"module_type" : "SwiftTarget",
"name" : "HummingbirdAuthTesting",
"path" : "Sources/HummingbirdAuthTesting",
"product_dependencies" : [
"HummingbirdTesting"
],
"product_memberships" : [
"HummingbirdAuthTesting"
],
"sources" : [
"TestClient+Auth.swift"
],
"target_dependencies" : [
"HummingbirdAuth"
],
"type" : "library"
},
{
"c99name" : "HummingbirdAuth",
"module_type" : "SwiftTarget",
"name" : "HummingbirdAuth",
"path" : "Sources/HummingbirdAuth",
"product_dependencies" : [
"Hummingbird",
"ExtrasBase64"
],
"product_memberships" : [
"HummingbirdAuth",
"HummingbirdBasicAuth",
"HummingbirdAuthTesting"
],
"sources" : [
"Authenticator/AuthRequestContext.swift",
"Authenticator/Authenticator.swift",
"Authenticator/ClosureAuthenticator.swift",
"BasicAuthentication.swift",
"BearerAuthentication.swift",
"Deprecated.swift",
"Middleware/IsAuthenticatedMiddleware.swift",
"Sessions/SessionAuthenticator.swift",
"Sessions/SessionContext.swift",
"Sessions/SessionMiddleware.swift",
"Sessions/SessionStorage.swift",
"Sessions/UserSessionRepository.swift"
],
"type" : "library"
},
{
"c99name" : "CBcrypt",
"module_type" : "ClangTarget",
"name" : "CBcrypt",
"path" : "Sources/CBcrypt",
"product_memberships" : [
"HummingbirdBasicAuth",
"HummingbirdBcrypt"
],
"sources" : [
"bcrypt.c",
"blf.c"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:2e2b3aca8600f890617c2faa770b70e33c1dfd303d6f92b308423b89ef6bde64
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Fetching https://github.com/swift-extras/swift-extras-base64.git
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/hummingbird-project/hummingbird.git
[1/833] Fetching swift-extras-base64
[793/25610] Fetching swift-extras-base64, hummingbird
[1785/41043] Fetching swift-extras-base64, hummingbird, swift-crypto
[6736/117382] Fetching swift-extras-base64, hummingbird, swift-crypto, swift-nio
Fetched https://github.com/hummingbird-project/hummingbird.git from cache (2.13s)
[38573/92605] Fetching swift-extras-base64, swift-crypto, swift-nio
Fetched https://github.com/swift-extras/swift-extras-base64.git from cache (10.12s)
Fetched https://github.com/apple/swift-crypto.git from cache (10.17s)
Fetched https://github.com/apple/swift-nio.git from cache (10.33s)
Computing version for https://github.com/swift-extras/swift-extras-base64.git
Computed https://github.com/swift-extras/swift-extras-base64.git at 1.0.0 (14.55s)
Computing version for https://github.com/hummingbird-project/hummingbird.git
Computed https://github.com/hummingbird-project/hummingbird.git at 2.14.1 (1.10s)
Fetching https://github.com/swift-server/async-http-client.git
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-nio-ssl.git
[1/14014] Fetching async-http-client
[2/16440] Fetching async-http-client, swift-service-lifecycle
[1975/27972] Fetching async-http-client, swift-service-lifecycle, swift-nio-http2
[6746/42862] Fetching async-http-client, swift-service-lifecycle, swift-nio-http2, swift-nio-ssl
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetched https://github.com/swift-server/async-http-client.git from cache (2.23s)
[24084/28848] Fetching swift-service-lifecycle, swift-nio-http2, swift-nio-ssl
Fetching https://github.com/apple/swift-distributed-tracing.git
[24531/34823] Fetching swift-service-lifecycle, swift-nio-http2, swift-nio-ssl, swift-nio-extras
[31752/37490] Fetching swift-service-lifecycle, swift-nio-http2, swift-nio-ssl, swift-nio-extras, swift-nio-transport-services
[36027/42516] Fetching swift-service-lifecycle, swift-nio-http2, swift-nio-ssl, swift-nio-extras, swift-nio-transport-services, swift-distributed-tracing
Fetched https://github.com/apple/swift-nio-http2.git from cache (2.96s)
[26816/30984] Fetching swift-service-lifecycle, swift-nio-ssl, swift-nio-extras, swift-nio-transport-services, swift-distributed-tracing
Fetching https://github.com/apple/swift-metrics.git
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (0.94s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (0.97s)
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-log.git
[20985/22342] Fetching swift-service-lifecycle, swift-nio-ssl, swift-distributed-tracing
[22343/24548] Fetching swift-service-lifecycle, swift-nio-ssl, swift-distributed-tracing, swift-metrics
[22961/28384] Fetching swift-service-lifecycle, swift-nio-ssl, swift-distributed-tracing, swift-metrics, swift-log
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (1.33s)
[19288/23358] Fetching swift-service-lifecycle, swift-nio-ssl, swift-metrics, swift-log
[20482/24262] Fetching swift-service-lifecycle, swift-nio-ssl, swift-metrics, swift-log, swift-http-types
Fetching https://github.com/apple/swift-collections.git
Fetched https://github.com/apple/swift-metrics.git from cache (0.89s)
Fetching https://github.com/apple/swift-atomics.git
[1/16640] Fetching swift-collections
Fetched https://github.com/apple/swift-http-types.git from cache (1.15s)
Fetched https://github.com/apple/swift-log.git from cache (1.14s)
Fetching https://github.com/apple/swift-async-algorithms.git
[4161/18437] Fetching swift-collections, swift-atomics
[5958/23422] Fetching swift-collections, swift-atomics, swift-async-algorithms
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (5.23s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (0.90s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (5.26s)
Fetched https://github.com/apple/swift-atomics.git from cache (1.35s)
[7655/16640] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (2.57s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (7.90s)
Fetching https://github.com/apple/swift-system.git
[1/4436] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (0.71s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (5.11s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.84s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.0.4 (0.92s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (0.60s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.0 (0.68s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.2.1 (0.62s)
Fetching https://github.com/apple/swift-service-context.git
[1/1081] Fetching swift-service-context
Fetched https://github.com/apple/swift-service-context.git from cache (0.34s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (0.94s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (0.95s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (0.71s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (0.72s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.28.0 (0.98s)
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-algorithms.git
[1/1616] Fetching swift-asn1
[519/7575] Fetching swift-asn1, swift-algorithms
[1156/13774] Fetching swift-asn1, swift-algorithms, swift-certificates
[2526/14943] Fetching swift-asn1, swift-algorithms, swift-certificates, swift-http-structured-headers
Fetched https://github.com/apple/swift-asn1.git from cache (0.48s)
[8443/13327] Fetching swift-algorithms, swift-certificates, swift-http-structured-headers
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.52s)
[10307/12158] Fetching swift-algorithms, swift-certificates
Fetched https://github.com/apple/swift-algorithms.git from cache (0.71s)
Fetched https://github.com/apple/swift-certificates.git from cache (0.75s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.8.0 (1.54s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.79s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.10.0 (1.07s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (2.72s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (0.89s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.74s)
Fetching https://github.com/apple/swift-numerics.git
[1/5757] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.52s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.32.0 (1.37s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.3.0 (0.78s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.87s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.26.1 (0.87s)
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.26.1
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Creating working copy for https://github.com/hummingbird-project/hummingbird.git
Working copy of https://github.com/hummingbird-project/hummingbird.git resolved at 2.14.1
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.0.4
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.24.0
Creating working copy for https://github.com/apple/swift-metrics.git
Working copy of https://github.com/apple/swift-metrics.git resolved at 2.7.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.10.0
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.32.0
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.12.3
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.28.0
Creating working copy for https://github.com/swift-extras/swift-extras-base64.git
Working copy of https://github.com/swift-extras/swift-extras-base64.git resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.2
Creating working copy for https://github.com/apple/swift-distributed-tracing.git
Working copy of https://github.com/apple/swift-distributed-tracing.git resolved at 1.2.1
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.8.0
Building for debugging...
[0/831] Write sources
[48/831] Compiling CNIOWindows shim.c
[49/831] Compiling _AtomicsShims.c
[50/831] Compiling CNIOWASI CNIOWASI.c
[51/831] Compiling CBcrypt bcrypt.c
[52/831] Compiling _NumericsShims _NumericsShims.c
[53/831] Compiling CNIOWindows WSAStartup.c
[54/831] Compiling CNIOLinux liburing_shims.c
[55/831] Compiling CNIOLLHTTP c_nio_http.c
[56/831] Compiling CNIOExtrasZlib empty.c
[57/831] Compiling CNIODarwin shim.c
[58/831] Compiling CNIOLLHTTP c_nio_api.c
[59/831] Compiling fiat_p256_adx_sqr.S
[60/831] Compiling CNIOLinux shim.c
[61/831] Compiling fiat_p256_adx_mul.S
[62/831] Compiling fiat_curve25519_adx_square.S
[63/831] Compiling fiat_curve25519_adx_mul.S
[64/831] Write swift-version-24593BA9C3E375BF.txt
[65/831] Compiling CBcrypt blf.c
[66/831] Compiling CNIOLLHTTP c_nio_llhttp.c
[67/831] Compiling CNIOBoringSSLShims shims.c
[69/840] Emitting module _NIODataStructures
[69/840] Compiling tls_record.cc
[70/840] Compiling tls_method.cc
[71/840] Compiling tls13_server.cc
[72/855] Compiling tls13_enc.cc
[73/870] Compiling tls13_client.cc
[75/871] Emitting module Logging
[76/871] Emitting module HummingbirdBcrypt
[77/879] Emitting module _NIOBase64
[78/879] Compiling _NIOBase64 Base64.swift
[79/880] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[80/881] Compiling HummingbirdBcrypt Bcrypt.swift
[81/882] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[82/882] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[83/882] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[84/882] Compiling InternalCollectionsUtilities UInt+reversed.swift
[85/882] Compiling RealModule Float16+Real.swift
[86/882] Emitting module RealModule
[87/882] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[88/882] Compiling InternalCollectionsUtilities Integer rank.swift
[89/883] Compiling _NIODataStructures _TinyArray.swift
[91/883] Compiling InternalCollectionsUtilities Descriptions.swift
[92/883] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[93/883] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[94/883] Compiling InternalCollectionsUtilities Debugging.swift
[95/883] Emitting module InternalCollectionsUtilities
[100/883] Compiling RealModule Float+Real.swift
[101/883] Compiling RealModule Real.swift
[102/883] Compiling RealModule ElementaryFunctions.swift
[103/883] Compiling RealModule Float80+Real.swift
[104/883] Compiling HTTPTypes HTTPParsedFields.swift
[105/883] Emitting module HTTPTypes
[106/883] Compiling ServiceContextModule ServiceContextKey.swift
[107/883] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[108/883] Compiling InternalCollectionsUtilities _SortedCollection.swift
[109/884] Compiling HTTPTypes HTTPField.swift
[110/884] Compiling HTTPTypes ISOLatin1String.swift
[111/884] Compiling HTTPTypes HTTPRequest.swift
[112/884] Compiling HTTPTypes HTTPResponse.swift
[113/884] Compiling _NIODataStructures PriorityQueue.swift
[114/884] Emitting module ServiceContextModule
[115/884] Compiling ServiceContextModule ServiceContext.swift
[116/885] Compiling RealModule RealFunctions.swift
[120/892] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[122/902] Compiling Instrumentation Instrument.swift
[123/902] Compiling Instrumentation NoOpInstrument.swift
[124/902] Emitting module Instrumentation
[125/902] Compiling ConcurrencyHelpers LockedValueBox.swift
[126/902] Compiling Instrumentation MultiplexInstrument.swift
[127/902] Emitting module CoreMetrics
[128/902] Emitting module ConcurrencyHelpers
[129/970] Compiling Instrumentation InstrumentationSystem.swift
[130/970] Compiling Instrumentation Locks.swift
[132/971] Compiling ConcurrencyHelpers Lock.swift
[133/971] Compiling Logging MetadataProvider.swift
[135/972] Compiling Logging Locks.swift
[136/972] Compiling Logging LogHandler.swift
[137/972] Compiling HTTPTypes NIOLock.swift
[138/972] Compiling Logging Logging.swift
[139/973] Compiling _NIODataStructures Heap.swift
[142/1032] Compiling CoreMetrics Locks.swift
[143/1032] Compiling CoreMetrics Metrics.swift
[145/1048] Compiling Tracing InstrumentationSystem+Tracing.swift
[146/1048] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[147/1048] Compiling HeapModule Heap+Descriptions.swift
[148/1048] Emitting module UnixSignals
[149/1050] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[150/1050] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[151/1050] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[152/1050] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[153/1050] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[154/1050] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[155/1050] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[156/1057] Compiling Tracing TracingTime.swift
[157/1057] Compiling HeapModule _HeapNode.swift
[158/1057] Compiling HeapModule Heap+Invariants.swift
[159/1057] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[160/1057] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[161/1057] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[162/1057] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[163/1057] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[164/1057] Compiling OrderedCollections OrderedSet+Sendable.swift
[165/1057] Compiling OrderedCollections OrderedSet+SubSequence.swift
[166/1057] Compiling OrderedCollections OrderedSet+Testing.swift
[167/1057] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[168/1057] Emitting module Tracing
[169/1057] Compiling HeapModule Heap+UnsafeHandle.swift
[170/1057] Compiling HeapModule Heap.swift
[171/1066] Compiling Tracing TracerProtocol.swift
[172/1066] Compiling UnixSignals UnixSignal.swift
[173/1066] Compiling UnixSignals UnixSignalsSequence.swift
[175/1067] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[183/1067] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[184/1067] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[185/1067] Emitting module HeapModule
[193/1068] Compiling Tracing TracerProtocol+Legacy.swift
[194/1068] Compiling Tracing Tracer.swift
[196/1068] Compiling OrderedCollections OrderedDictionary.swift
[197/1068] Compiling OrderedCollections OrderedSet+Codable.swift
[198/1068] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[199/1068] Compiling OrderedCollections OrderedSet+Descriptions.swift
[200/1068] Compiling OrderedCollections OrderedSet+Diffing.swift
[201/1068] Compiling OrderedCollections OrderedSet+Equatable.swift
[202/1068] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[203/1068] Compiling OrderedCollections OrderedSet+Hashable.swift
[204/1068] Compiling OrderedCollections OrderedSet+Initializers.swift
[205/1068] Compiling OrderedCollections OrderedSet+Insertions.swift
[206/1068] Compiling OrderedCollections OrderedSet+Invariants.swift
[207/1068] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[208/1068] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[209/1068] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[210/1068] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[212/1128] Compiling Tracing NoOpTracer.swift
[213/1131] Compiling Tracing SpanProtocol.swift
[214/1149] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[215/1149] Compiling HashTreeCollections TreeSet+Debugging.swift
[216/1149] Compiling HashTreeCollections TreeSet+Descriptions.swift
[217/1149] Compiling HashTreeCollections TreeSet+Equatable.swift
[218/1149] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[219/1149] Compiling HashTreeCollections TreeSet+Extras.swift
[220/1149] Compiling HashTreeCollections TreeSet+Filter.swift
[221/1149] Compiling HashTreeCollections TreeSet+Hashable.swift
[222/1149] Compiling _RopeModule Rope+Insert.swift
[223/1160] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[224/1160] Compiling HashTreeCollections _RawHashNode.swift
[225/1160] Compiling HashTreeCollections _UnmanagedHashNode.swift
[226/1160] Compiling HashTreeCollections _UnsafePath.swift
[227/1160] Compiling HashTreeCollections TreeDictionary+Codable.swift
[228/1160] Compiling HashTreeCollections TreeDictionary+Collection.swift
[229/1160] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[230/1160] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[231/1160] Compiling DequeModule Deque+Testing.swift
[232/1160] Compiling DequeModule Deque._Storage.swift
[233/1160] Compiling DequeModule Deque._UnsafeHandle.swift
[234/1160] Compiling DequeModule Deque.swift
[235/1160] Compiling DequeModule _DequeBuffer.swift
[236/1160] Compiling DequeModule _DequeBufferHeader.swift
[237/1160] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[238/1160] Compiling HashTreeCollections _HashNode+Structural filter.swift
[240/1160] Compiling DequeModule Deque+CustomReflectable.swift
[241/1160] Compiling DequeModule Deque+Descriptions.swift
[244/1162] Compiling DequeModule Deque+Codable.swift
[245/1162] Compiling DequeModule Deque+Collection.swift
[248/1162] Compiling DequeModule Deque+Extras.swift
[249/1162] Compiling DequeModule Deque+Hashable.swift
[250/1162] Compiling DequeModule Deque+Equatable.swift
[251/1162] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[258/1162] Compiling DequeModule _DequeSlot.swift
[259/1162] Compiling DequeModule _UnsafeWrappedBuffer.swift
[260/1162] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[261/1162] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[262/1162] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[263/1162] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[264/1162] Compiling HashTreeCollections _HashStack.swift
[265/1162] Compiling HashTreeCollections TreeDictionary.swift
[266/1162] Compiling HashTreeCollections TreeSet+Codable.swift
[267/1162] Compiling HashTreeCollections TreeSet+Collection.swift
[282/1162] Compiling HashTreeCollections TreeSet+Sendable.swift
[283/1162] Compiling HashTreeCollections TreeSet+Sequence.swift
[284/1162] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[285/1162] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[286/1162] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[287/1162] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[288/1162] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[289/1162] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[290/1162] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[291/1172] Compiling HTTPTypes HTTPFields.swift
[292/1172] Compiling HTTPTypes HTTPFieldName.swift
[296/1173] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[297/1173] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[298/1173] Compiling HashTreeCollections TreeDictionary+Filter.swift
[299/1173] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[300/1173] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[301/1173] Compiling HashTreeCollections TreeDictionary+Keys.swift
[302/1173] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[303/1173] Compiling HashTreeCollections TreeDictionary+Merge.swift
[304/1173] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[305/1173] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[306/1173] Compiling HashTreeCollections TreeDictionary+Values.swift
[325/1173] Emitting module OrderedCollections
[326/1174] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[327/1174] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[328/1174] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[329/1174] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[330/1174] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[331/1174] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[332/1174] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[333/1174] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[334/1174] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[335/1174] Compiling HashTreeCollections TreeSet.swift
[337/1174] Compiling HashTreeCollections _HashTreeIterator.swift
[338/1174] Compiling HashTreeCollections _HashTreeStatistics.swift
[347/1174] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[348/1174] Emitting module DequeModule
[350/1175] Emitting module _RopeModule
[359/1175] Compiling ssl_x509.cc
[371/1175] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[372/1175] Compiling HashTreeCollections _HashNode+Structural merge.swift
[380/1176] Compiling tls13_both.cc
[382/1176] Emitting module Metrics
[383/1176] Compiling Metrics Metrics.swift
[384/1177] Emitting module HashTreeCollections
[397/1177] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[398/1177] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[399/1177] Compiling HashTreeCollections _HashNode+Structural union.swift
[400/1177] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[401/1177] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[402/1177] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[403/1177] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[404/1177] Compiling HashTreeCollections _HashNode.swift
[405/1177] Compiling HashTreeCollections _HashNodeHeader.swift
[406/1177] Compiling HashTreeCollections _HashSlot.swift
[419/1178] Compiling t1_enc.cc
[420/1178] Compiling ssl_versions.cc
[421/1178] Compiling ssl_transcript.cc
[422/1178] Compiling ssl_stat.cc
[423/1178] Compiling ssl_privkey.cc
[424/1178] Compiling ssl_session.cc
[425/1178] Compiling ssl_key_share.cc
[426/1178] Compiling ssl_file.cc
[427/1178] Compiling ssl_credential.cc
[429/1178] Compiling ExtrasBase64 Base32.swift
[430/1178] Compiling ExtrasBase64 Base64.swift
[430/1178] Compiling ssl_lib.cc
[431/1178] Compiling ssl_cipher.cc
[432/1178] Compiling ssl_cert.cc
[433/1178] Compiling ssl_buffer.cc
[434/1178] Compiling ssl_asn1.cc
[435/1178] Compiling ssl_aead_ctx.cc
[436/1178] Compiling s3_pkt.cc
[437/1178] Compiling s3_lib.cc
[439/1178] Emitting module ExtrasBase64
[440/1179] Compiling s3_both.cc
[441/1179] Compiling handshake_server.cc
[442/1179] Compiling handshake_client.cc
[443/1179] Compiling handshake.cc
[444/1179] Compiling handoff.cc
[445/1179] Compiling extensions.cc
[446/1179] Compiling encrypted_client_hello.cc
[447/1179] Compiling dtls_method.cc
[448/1179] Compiling md5-x86_64-linux.S
[449/1179] Compiling md5-x86_64-apple.S
[450/1179] Compiling md5-586-linux.S
[451/1179] Compiling md5-586-apple.S
[452/1179] Compiling dtls_record.cc
[453/1179] Compiling chacha20_poly1305_x86_64-apple.S
[454/1179] Compiling chacha20_poly1305_x86_64-linux.S
[455/1179] Compiling chacha20_poly1305_armv8-win.S
[456/1179] Compiling chacha20_poly1305_armv8-linux.S
[457/1179] Compiling d1_srtp.cc
[458/1179] Compiling chacha20_poly1305_armv8-apple.S
[458/1179] Compiling err_data.cc
[460/1179] Compiling chacha-x86_64-linux.S
[461/1179] Compiling chacha-x86-apple.S
[462/1179] Compiling chacha-x86_64-apple.S
[463/1179] Compiling chacha-armv8-win.S
[464/1179] Compiling chacha-x86-linux.S
[465/1179] Compiling bio_ssl.cc
[466/1179] Compiling chacha-armv8-linux.S
[467/1179] Compiling chacha-armv4-linux.S
[468/1179] Compiling chacha-armv8-apple.S
[469/1179] Compiling aes128gcmsiv-x86_64-linux.S
[470/1179] Compiling aes128gcmsiv-x86_64-apple.S
[471/1179] Compiling x86_64-mont5-linux.S
[472/1179] Compiling x86_64-mont-linux.S
[473/1179] Compiling x86_64-mont5-apple.S
[474/1179] Compiling x86_64-mont-apple.S
[475/1179] Compiling x86-mont-linux.S
[476/1179] Compiling x86-mont-apple.S
[477/1179] Compiling vpaes-x86_64-linux.S
[478/1179] Compiling vpaes-x86_64-apple.S
[479/1179] Compiling vpaes-x86-apple.S
[480/1179] Compiling vpaes-x86-linux.S
[481/1179] Compiling vpaes-armv8-win.S
[482/1179] Compiling vpaes-armv8-apple.S
[483/1179] Compiling vpaes-armv8-linux.S
[484/1179] Compiling vpaes-armv7-linux.S
[485/1179] Compiling sha512-armv8-win.S
[486/1179] Compiling sha512-x86_64-apple.S
[487/1179] Compiling sha512-x86_64-linux.S
[488/1179] Compiling sha512-armv8-apple.S
[489/1179] Compiling sha512-armv8-linux.S
[490/1179] Compiling sha512-586-apple.S
[491/1179] Compiling sha512-armv4-linux.S
[492/1179] Compiling sha512-586-linux.S
[493/1179] Compiling sha256-x86_64-apple.S
[494/1179] Compiling sha256-x86_64-linux.S
[495/1179] Compiling sha256-armv8-apple.S
[496/1179] Compiling sha256-armv8-linux.S
[497/1179] Compiling sha256-armv8-win.S
[498/1179] Compiling sha256-586-linux.S
[499/1179] Compiling sha256-armv4-linux.S
[500/1179] Compiling sha256-586-apple.S
[501/1179] Compiling sha1-x86_64-apple.S
[502/1179] Compiling sha1-armv8-win.S
[503/1179] Compiling sha1-armv8-linux.S
[504/1179] Compiling sha1-x86_64-linux.S
[505/1179] Compiling d1_pkt.cc
[506/1179] Compiling sha1-armv8-apple.S
[507/1179] Compiling sha1-armv4-large-linux.S
[508/1179] Compiling sha1-586-linux.S
[509/1179] Compiling sha1-586-apple.S
[510/1179] Compiling rsaz-avx2-apple.S
[511/1179] Compiling rsaz-avx2-linux.S
[512/1179] Compiling rdrand-x86_64-linux.S
[513/1179] Compiling p256_beeu-x86_64-asm-linux.S
[514/1179] Compiling rdrand-x86_64-apple.S
[514/1179] Compiling p256_beeu-armv8-asm-win.S
[516/1179] Compiling p256_beeu-x86_64-asm-apple.S
[517/1179] Compiling p256_beeu-armv8-asm-linux.S
[518/1179] Compiling p256_beeu-armv8-asm-apple.S
[519/1179] Compiling p256-x86_64-asm-apple.S
[520/1179] Compiling d1_lib.cc
[521/1179] Compiling p256-armv8-asm-win.S
[522/1179] Compiling p256-x86_64-asm-linux.S
[523/1179] Compiling p256-armv8-asm-linux.S
[524/1179] Compiling p256-armv8-asm-apple.S
[525/1179] Compiling ghashv8-armv8-win.S
[526/1179] Compiling ghashv8-armv8-linux.S
[527/1179] Compiling ghashv8-armv7-linux.S
[528/1179] Compiling ghashv8-armv8-apple.S
[529/1179] Compiling ghash-x86-linux.S
[530/1179] Compiling ghash-x86_64-linux.S
[531/1179] Compiling ghash-x86_64-apple.S
[532/1179] Compiling ghash-ssse3-x86_64-linux.S
[533/1179] Compiling ghash-x86-apple.S
[534/1179] Compiling ghash-ssse3-x86_64-apple.S
[535/1179] Compiling ghash-ssse3-x86-linux.S
[536/1179] Compiling ghash-neon-armv8-win.S
[537/1179] Compiling ghash-ssse3-x86-apple.S
[538/1179] Compiling ghash-neon-armv8-apple.S
[539/1179] Compiling co-586-linux.S
[540/1179] Compiling ghash-neon-armv8-linux.S
[541/1179] Compiling ghash-armv4-linux.S
[542/1179] Compiling co-586-apple.S
[543/1179] Compiling bsaes-armv7-linux.S
[544/1179] Compiling bn-armv8-win.S
[545/1179] Compiling bn-armv8-linux.S
[546/1179] Compiling bn-armv8-apple.S
[547/1179] Compiling bn-586-linux.S
[548/1179] Compiling bn-586-apple.S
[549/1179] Compiling armv8-mont-apple.S
[550/1179] Compiling armv8-mont-win.S
[551/1179] Compiling armv8-mont-linux.S
[552/1179] Compiling armv4-mont-linux.S
[553/1179] Compiling aesv8-gcm-armv8-win.S
[554/1179] Compiling aesv8-gcm-armv8-apple.S
[555/1179] Compiling aesv8-armv8-win.S
[556/1179] Compiling aesv8-armv8-linux.S
[557/1179] Compiling aesv8-armv8-apple.S
[558/1179] Compiling aesv8-gcm-armv8-linux.S
[559/1179] Compiling aesv8-armv7-linux.S
[560/1179] Compiling aesni-x86_64-apple.S
[560/1179] Compiling aesni-x86-apple.S
[562/1179] Compiling aesni-gcm-x86_64-apple.S
[562/1179] Compiling aesni-x86_64-linux.S
[564/1179] Compiling aesni-gcm-x86_64-linux.S
[565/1179] Compiling aesni-x86-linux.S
[566/1179] Compiling aes-gcm-avx2-x86_64-linux.S
[567/1179] Compiling aes-gcm-avx2-x86_64-apple.S
[568/1179] Compiling aes-gcm-avx10-x86_64-linux.S
[569/1179] Compiling aes-gcm-avx10-x86_64-apple.S
[570/1179] Compiling d1_both.cc
[571/1179] Compiling x_req.cc
[572/1179] Compiling x_sig.cc
[573/1179] Compiling x_spki.cc
[574/1179] Compiling x_x509.cc
[575/1179] Compiling x_val.cc
[576/1179] Compiling x_pubkey.cc
[577/1179] Compiling x_x509a.cc
[578/1179] Compiling x_name.cc
[579/1179] Compiling x_exten.cc
[580/1179] Compiling x509cset.cc
[581/1179] Compiling x_algor.cc
[582/1179] Compiling x_attrib.cc
[583/1179] Compiling x509spki.cc
[584/1179] Compiling x_all.cc
[585/1179] Compiling x509rset.cc
[586/1179] Compiling x_crl.cc
[587/1179] Compiling x509name.cc
[588/1179] Compiling x509_vpm.cc
[589/1179] Compiling x509_v3.cc
[590/1179] Compiling x509_obj.cc
[591/1179] Compiling x509_txt.cc
[592/1179] Compiling x509_lu.cc
[593/1179] Compiling x509_vfy.cc
[594/1179] Compiling x509_trs.cc
[595/1179] Compiling x509_set.cc
[596/1179] Compiling x509_req.cc
[597/1179] Compiling x509_ext.cc
[598/1179] Compiling x509_att.cc
[599/1179] Compiling v3_utl.cc
[600/1179] Compiling x509_d2.cc
[600/1179] Compiling x509.cc
[602/1179] Compiling x509_def.cc
[603/1179] Compiling x509_cmp.cc
[604/1179] Compiling v3_skey.cc
[605/1179] Compiling v3_int.cc
[606/1179] Compiling v3_ocsp.cc
[607/1179] Compiling v3_purp.cc
[608/1179] Compiling v3_pcons.cc
[609/1179] Compiling v3_prn.cc
[610/1179] Compiling v3_ncons.cc
[611/1179] Compiling v3_pmaps.cc
[612/1179] Compiling v3_lib.cc
[613/1179] Compiling v3_info.cc
[614/1179] Compiling v3_bitst.cc
[615/1179] Compiling v3_genn.cc
[616/1179] Compiling v3_ia5.cc
[617/1179] Compiling v3_enum.cc
[618/1179] Compiling v3_crld.cc
[619/1179] Compiling v3_extku.cc
[620/1179] Compiling v3_cpols.cc
[621/1179] Compiling v3_conf.cc
[622/1179] Compiling t_x509a.cc
[623/1179] Compiling v3_alt.cc
[624/1179] Compiling t_crl.cc
[625/1179] Compiling v3_bcons.cc
[626/1179] Compiling v3_akeya.cc
[627/1179] Compiling v3_akey.cc
[628/1179] Compiling name_print.cc
[629/1179] Compiling t_req.cc
[630/1179] Compiling t_x509.cc
[631/1179] Compiling policy.cc
[632/1179] Compiling rsa_pss.cc
[633/1179] Compiling asn1_gen.cc
[634/1179] Compiling i2d_pr.cc
[635/1179] Compiling a_sign.cc
[636/1179] Compiling by_file.cc
[637/1179] Compiling voprf.cc
[638/1179] Compiling a_digest.cc
[639/1179] Compiling by_dir.cc
[640/1179] Compiling trust_token.cc
[641/1179] Compiling thread_pthread.cc
[642/1179] Compiling thread_none.cc
[643/1179] Compiling thread_win.cc
[644/1179] Compiling a_verify.cc
[645/1179] Compiling stack.cc
[646/1179] Compiling algorithm.cc
[647/1179] Compiling thread.cc
[648/1179] Compiling sha1.cc
[649/1179] Compiling pmbtoken.cc
[650/1179] Compiling sha512.cc
[651/1179] Compiling spake2plus.cc
[652/1179] Compiling sha256.cc
[653/1179] Compiling siphash.cc
[654/1179] Compiling windows.cc
[655/1179] Compiling rsa_print.cc
[656/1179] Compiling refcount.cc
[657/1179] Compiling slhdsa.cc
[658/1179] Compiling rsa_extra.cc
[659/1179] Compiling rc4.cc
[660/1179] Compiling ios.cc
[661/1179] Compiling rsa_crypt.cc
[662/1179] Compiling getentropy.cc
[663/1179] Compiling rsa_asn1.cc
[664/1179] Compiling trusty.cc
[665/1179] Compiling urandom.cc
[666/1179] Compiling passive.cc
[667/1179] Compiling poly1305_arm_asm.S
[668/1179] Compiling rand.cc
[669/1179] Compiling deterministic.cc
[670/1179] Compiling forkunsafe.cc
[671/1179] Compiling fork_detect.cc
[672/1179] Compiling poly1305_arm.cc
[673/1179] Compiling poly1305.cc
[674/1179] Compiling poly1305_vec.cc
[675/1179] Compiling pool.cc
[676/1179] Compiling pkcs8_x509.cc
[677/1179] Compiling pkcs7.cc
[678/1179] Compiling pem_xaux.cc
[679/1179] Compiling p5_pbev2.cc
[680/1179] Compiling pkcs8.cc
[681/1179] Compiling pem_x509.cc
[682/1179] Compiling pkcs7_x509.cc
[683/1179] Compiling pem_lib.cc
[684/1179] Compiling pem_pkey.cc
[685/1179] Compiling pem_pk8.cc
[686/1179] Compiling pem_oth.cc
[687/1179] Compiling mlkem.cc
[688/1179] Compiling obj_xref.cc
[689/1179] Compiling pem_all.cc
[690/1179] Compiling mldsa.cc
[691/1179] Compiling mem.cc
[692/1179] Compiling md5.cc
[693/1179] Compiling md4.cc
[694/1179] Compiling pem_info.cc
[695/1179] Compiling fips_shared_support.cc
[695/1179] Compiling obj.cc
[697/1179] Compiling lhash.cc
[698/1179] Compiling poly_rq_mul.S
[699/1179] Compiling hrss.cc
[700/1179] Compiling ex_data.cc
[701/1179] Compiling kyber.cc
[702/1179] Compiling scrypt.cc
[703/1179] Compiling sign.cc
[704/1179] Compiling print.cc
[705/1179] Compiling pbkdf.cc
[706/1179] Compiling hpke.cc
[707/1179] Compiling p_x25519.cc
[708/1179] Compiling p_x25519_asn1.cc
[709/1179] Compiling p_rsa_asn1.cc
[710/1179] Compiling p_ed25519.cc
[711/1179] Compiling p_rsa.cc
[712/1179] Compiling p_ec.cc
[713/1179] Compiling p_ed25519_asn1.cc
[714/1179] Compiling p_hkdf.cc
[715/1179] Compiling p_ec_asn1.cc
[716/1179] Compiling p_dh_asn1.cc
[717/1179] Compiling p_dh.cc
[718/1179] Compiling p_dsa_asn1.cc
[719/1179] Compiling err.cc
[720/1179] Compiling evp_ctx.cc
[721/1179] Compiling evp.cc
[722/1179] Compiling engine.cc
[723/1179] Compiling ecdh.cc
[724/1179] Compiling ec_derive.cc
[725/1179] Compiling ecdsa_asn1.cc
[726/1179] Compiling hash_to_curve.cc
[727/1179] Compiling evp_asn1.cc
[728/1179] Compiling digest_extra.cc
[729/1179] Compiling params.cc
[730/1179] Compiling dsa.cc
[731/1179] Compiling ec_asn1.cc
[732/1179] Compiling x25519-asm-arm.S
[733/1179] Compiling dsa_asn1.cc
[734/1179] Compiling des.cc
[735/1179] Compiling dh_asn1.cc
[736/1179] Compiling spake25519.cc
[737/1179] Compiling crypto.cc
[738/1179] Compiling cpu_arm_linux.cc
[739/1179] Compiling cpu_aarch64_win.cc
[740/1179] Compiling cpu_intel.cc
[741/1179] Compiling cpu_arm_freebsd.cc
[742/1179] Compiling cpu_aarch64_sysreg.cc
[743/1179] Compiling bcm.cc
[744/1179] Compiling curve25519.cc
[745/1179] Compiling cpu_aarch64_openbsd.cc
[746/1179] Compiling cpu_aarch64_apple.cc
[747/1179] Compiling cpu_aarch64_linux.cc
[748/1179] Compiling curve25519_64_adx.cc
[749/1179] Compiling cpu_aarch64_fuchsia.cc
[750/1179] Compiling conf.cc
[751/1179] Compiling tls_cbc.cc
[752/1179] Compiling e_tls.cc
[753/1179] Compiling get_cipher.cc
[754/1179] Compiling e_rc4.cc
[755/1179] Compiling e_rc2.cc
[756/1179] Compiling e_chacha20poly1305.cc
[757/1179] Compiling e_null.cc
[758/1179] Compiling e_des.cc
[759/1179] Compiling e_aesgcmsiv.cc
[760/1179] Compiling e_aesctrhmac.cc
[761/1179] Compiling derive_key.cc
[762/1179] Compiling chacha.cc
[763/1179] Compiling ber.cc
[764/1179] Compiling asn1_compat.cc
[765/1179] Compiling cbb.cc
[766/1179] Compiling buf.cc
[767/1179] Compiling bn_asn1.cc
[768/1179] Compiling unicode.cc
[769/1179] Compiling convert.cc
[770/1179] Compiling cbs.cc
[771/1179] Compiling pair.cc
[772/1179] Compiling printf.cc
[773/1179] Compiling socket_helper.cc
[774/1179] Compiling socket.cc
[775/1179] Compiling blake2.cc
[776/1179] Compiling hexdump.cc
[777/1179] Compiling file.cc
[778/1179] Compiling errno.cc
[779/1179] Compiling bio_mem.cc
[780/1179] Compiling fd.cc
[781/1179] Compiling base64.cc
[782/1179] Compiling connect.cc
[783/1179] Compiling bio.cc
[784/1179] Compiling tasn_typ.cc
[785/1179] Compiling tasn_fre.cc
[786/1179] Compiling f_int.cc
[787/1179] Compiling tasn_utl.cc
[788/1179] Compiling tasn_new.cc
[788/1179] Compiling f_string.cc
[790/1179] Compiling posix_time.cc
[791/1179] Compiling tasn_dec.cc
[792/1179] Compiling tasn_enc.cc
[793/1179] Compiling asn1_par.cc
[794/1179] Compiling asn_pack.cc
[795/1179] Compiling a_type.cc
[796/1179] Compiling a_time.cc
[797/1179] Compiling a_utctm.cc
[798/1179] Compiling asn1_lib.cc
[799/1179] Compiling a_octet.cc
[800/1179] Compiling a_strnid.cc
[801/1179] Compiling a_strex.cc
[802/1179] Compiling a_i2d_fp.cc
[803/1179] Compiling a_dup.cc
[804/1179] Compiling a_mbstr.cc
[805/1179] Compiling a_d2i_fp.cc
[806/1179] Compiling a_object.cc
[807/1179] Compiling a_int.cc
[808/1179] Compiling fiat_p256_adx_sqr.S
[809/1179] Compiling fiat_p256_adx_mul.S
[810/1179] Compiling fiat_curve25519_adx_square.S
[811/1179] Compiling a_gentm.cc
[812/1179] Compiling fiat_curve25519_adx_mul.S
[813/1179] Compiling md5-x86_64-linux.S
[814/1179] Compiling a_bitstr.cc
[815/1179] Compiling md5-x86_64-apple.S
[816/1179] Compiling md5-586-linux.S
[817/1179] Compiling md5-586-apple.S
[818/1179] Compiling chacha20_poly1305_x86_64-apple.S
[819/1179] Compiling chacha20_poly1305_armv8-win.S
[820/1179] Compiling chacha20_poly1305_armv8-linux.S
[821/1179] Compiling chacha20_poly1305_x86_64-linux.S
[822/1179] Compiling CCryptoBoringSSLShims shims.c
[823/1179] Compiling chacha20_poly1305_armv8-apple.S
[824/1179] Compiling chacha-x86_64-apple.S
[825/1179] Compiling chacha-x86_64-linux.S
[826/1179] Compiling chacha-x86-apple.S
[827/1179] Compiling chacha-x86-linux.S
[828/1179] Compiling a_bool.cc
[829/1179] Compiling chacha-armv8-linux.S
[830/1179] Compiling chacha-armv8-win.S
[831/1179] Compiling chacha-armv4-linux.S
[832/1179] Compiling chacha-armv8-apple.S
[833/1179] Compiling err_data.cc
[834/1179] Compiling x86_64-mont5-apple.S
[835/1179] Compiling aes128gcmsiv-x86_64-linux.S
[835/1179] Compiling aes128gcmsiv-x86_64-apple.S
[837/1179] Compiling x86_64-mont5-linux.S
[838/1179] Compiling x86_64-mont-linux.S
[839/1179] Compiling x86_64-mont-apple.S
[840/1179] Compiling x86-mont-apple.S
[841/1179] Compiling x86-mont-linux.S
[842/1179] Compiling vpaes-x86-linux.S
[843/1179] Compiling vpaes-x86_64-linux.S
[844/1179] Compiling vpaes-x86_64-apple.S
[845/1179] Compiling vpaes-x86-apple.S
[846/1179] Compiling vpaes-armv8-win.S
[847/1179] Compiling vpaes-armv8-linux.S
[848/1179] Compiling vpaes-armv8-apple.S
[849/1179] Compiling vpaes-armv7-linux.S
[850/1179] Compiling sha512-x86_64-apple.S
[851/1179] Compiling sha512-armv8-win.S
[852/1179] Compiling sha512-armv8-linux.S
[853/1179] Compiling sha512-x86_64-linux.S
[853/1179] Compiling sha512-armv4-linux.S
[855/1179] Compiling sha512-armv8-apple.S
[856/1179] Compiling sha512-586-linux.S
[857/1179] Compiling sha256-x86_64-apple.S
[858/1179] Compiling sha512-586-apple.S
[859/1179] Compiling sha256-x86_64-linux.S
[860/1179] Compiling sha256-armv8-linux.S
[861/1179] Compiling sha256-armv8-win.S
[862/1179] Compiling sha256-586-linux.S
[863/1179] Compiling sha256-armv4-linux.S
[864/1179] Compiling sha256-armv8-apple.S
[865/1179] Compiling sha256-586-apple.S
[866/1179] Compiling sha1-x86_64-apple.S
[867/1179] Compiling sha1-armv8-win.S
[868/1179] Compiling sha1-x86_64-linux.S
[869/1179] Compiling sha1-armv8-apple.S
[870/1179] Compiling sha1-armv8-linux.S
[871/1179] Compiling sha1-586-apple.S
[872/1179] Compiling sha1-586-linux.S
[873/1179] Compiling sha1-armv4-large-linux.S
[874/1179] Compiling rsaz-avx2-apple.S
[875/1179] Compiling rdrand-x86_64-linux.S
[875/1179] Compiling p256_beeu-x86_64-asm-linux.S
[877/1179] Compiling rsaz-avx2-linux.S
[877/1179] Compiling p256_beeu-x86_64-asm-apple.S
[879/1179] Compiling rdrand-x86_64-apple.S
[880/1179] Compiling p256_beeu-armv8-asm-linux.S
[881/1179] Compiling p256_beeu-armv8-asm-apple.S
[882/1179] Compiling p256-armv8-asm-win.S
[883/1179] Compiling p256-x86_64-asm-linux.S
[884/1179] Compiling p256_beeu-armv8-asm-win.S
[885/1179] Compiling p256-x86_64-asm-apple.S
[886/1179] Compiling p256-armv8-asm-linux.S
[887/1179] Compiling p256-armv8-asm-apple.S
[888/1179] Compiling ghashv8-armv8-apple.S
[889/1179] Compiling ghashv8-armv7-linux.S
[890/1179] Compiling ghashv8-armv8-linux.S
[891/1179] Compiling ghashv8-armv8-win.S
[892/1179] Compiling ghash-x86_64-linux.S
[893/1179] Compiling ghash-x86_64-apple.S
[894/1179] Compiling ghash-x86-linux.S
[895/1179] Compiling ghash-x86-apple.S
[896/1179] Compiling ghash-ssse3-x86_64-linux.S
[897/1179] Compiling ghash-ssse3-x86_64-apple.S
[898/1179] Compiling ghash-neon-armv8-linux.S
[898/1179] Compiling ghash-ssse3-x86-linux.S
[900/1179] Compiling ghash-neon-armv8-win.S
[901/1179] Compiling ghash-ssse3-x86-apple.S
[902/1179] Compiling ghash-neon-armv8-apple.S
[903/1179] Compiling ghash-armv4-linux.S
[904/1179] Compiling bsaes-armv7-linux.S
[905/1179] Compiling co-586-apple.S
[906/1179] Compiling bn-armv8-win.S
[907/1179] Compiling co-586-linux.S
[908/1179] Compiling bn-armv8-linux.S
[909/1179] Compiling bn-armv8-apple.S
[910/1179] Compiling bn-586-apple.S
[911/1179] Compiling bn-586-linux.S
[912/1179] Compiling armv8-mont-apple.S
[913/1179] Compiling armv8-mont-linux.S
[914/1179] Compiling armv8-mont-win.S
[915/1179] Compiling armv4-mont-linux.S
[916/1179] Compiling aesv8-gcm-armv8-win.S
[917/1179] Compiling aesv8-armv8-win.S
[918/1179] Compiling aesv8-gcm-armv8-linux.S
[919/1179] Compiling aesv8-gcm-armv8-apple.S
[920/1179] Compiling aesv8-armv8-linux.S
[921/1179] Compiling aesv8-armv8-apple.S
[922/1179] Compiling aesv8-armv7-linux.S
[923/1179] Compiling aesni-x86_64-apple.S
[924/1179] Compiling aesni-x86_64-linux.S
[925/1179] Compiling aesni-gcm-x86_64-linux.S
[926/1179] Compiling aesni-x86-linux.S
[927/1179] Compiling aesni-x86-apple.S
[928/1179] Compiling aesni-gcm-x86_64-apple.S
[929/1179] Compiling aes-gcm-avx10-x86_64-apple.S
[930/1179] Compiling aes-gcm-avx10-x86_64-linux.S
[931/1179] Compiling x_sig.cc
[932/1179] Compiling x_val.cc
[933/1179] Compiling x_spki.cc
[934/1179] Compiling x_req.cc
[935/1179] Compiling x_x509.cc
[936/1179] Compiling x_x509a.cc
[937/1179] Compiling x_pubkey.cc
[938/1179] Compiling x_name.cc
[939/1179] Compiling c-atomics.c
[940/1179] Compiling c-nioatomics.c
[941/1179] Compiling x_exten.cc
[942/1179] Compiling x_crl.cc
[943/1179] Compiling x_algor.cc
[944/1179] Compiling x_attrib.cc
[945/1185] Compiling x_all.cc
[947/1185] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[948/1185] Compiling NIOConcurrencyHelpers NIOLock.swift
[948/1185] Compiling x509spki.cc
[949/1185] Compiling x509name.cc
[950/1185] Compiling x509rset.cc
[951/1185] Compiling x509cset.cc
[953/1185] Compiling NIOConcurrencyHelpers lock.swift
[953/1185] Compiling x509_req.cc
[954/1185] Compiling x509_vpm.cc
[956/1185] Emitting module NIOConcurrencyHelpers
[957/1185] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[958/1185] Compiling NIOConcurrencyHelpers atomics.swift
[958/1186] Compiling x509_vfy.cc
[960/1186] Compiling x509_v3.cc
[961/1186] Compiling x509_lu.cc
[962/1186] Compiling x509_set.cc
[963/1186] Compiling x509_trs.cc
[964/1186] Compiling x509_txt.cc
[965/1186] Compiling x509_obj.cc
[966/1186] Compiling x509_ext.cc
[967/1186] Compiling x509_def.cc
[968/1186] Compiling x509_d2.cc
[969/1186] Compiling x509_cmp.cc
[970/1186] Compiling x509_att.cc
[971/1186] Compiling x509.cc
[972/1186] Compiling v3_utl.cc
[973/1186] Compiling v3_prn.cc
[974/1186] Compiling v3_pcons.cc
[975/1186] Compiling v3_skey.cc
[976/1186] Compiling v3_pmaps.cc
[977/1186] Compiling v3_purp.cc
[978/1186] Compiling v3_ocsp.cc
[979/1186] Compiling v3_ncons.cc
[980/1186] Compiling v3_lib.cc
[981/1186] Compiling v3_int.cc
[982/1186] Compiling v3_info.cc
[983/1186] Compiling v3_genn.cc
[984/1186] Compiling v3_ia5.cc
[985/1186] Compiling v3_extku.cc
[986/1186] Compiling v3_enum.cc
[987/1186] Compiling v3_crld.cc
[988/1186] Compiling v3_cpols.cc
[989/1186] Compiling v3_conf.cc
[990/1186] Compiling v3_bitst.cc
[991/1186] Compiling v3_alt.cc
[992/1186] Compiling v3_bcons.cc
[993/1186] Compiling v3_akeya.cc
[994/1186] Compiling v3_akey.cc
[995/1186] Compiling t_x509a.cc
[996/1186] Compiling t_req.cc
[997/1186] Compiling t_x509.cc
[998/1186] Compiling i2d_pr.cc
[999/1186] Compiling t_crl.cc
[1000/1186] Compiling name_print.cc
[1001/1186] Compiling rsa_pss.cc
[1002/1186] Compiling policy.cc
[1003/1186] Compiling by_file.cc
[1004/1186] Compiling by_dir.cc
[1005/1186] Compiling voprf.cc
[1006/1186] Compiling asn1_gen.cc
[1007/1186] Compiling algorithm.cc
[1008/1186] Compiling a_verify.cc
[1009/1186] Compiling a_digest.cc
[1010/1186] Compiling a_sign.cc
[1011/1186] Compiling thread_pthread.cc
[1012/1186] Compiling thread_win.cc
[1013/1186] Compiling thread.cc
[1014/1186] Compiling trust_token.cc
[1015/1186] Compiling thread_none.cc
[1016/1186] Compiling pmbtoken.cc
[1017/1186] Compiling stack.cc
[1018/1186] Compiling wots.cc
[1019/1186] Compiling thash.cc
[1020/1186] Compiling merkle.cc
[1021/1186] Compiling fors.cc
[1022/1186] Compiling siphash.cc
[1023/1186] Compiling slhdsa.cc
[1024/1186] Compiling sha256.cc
[1025/1186] Compiling sha1.cc
[1026/1186] Compiling sha512.cc
[1027/1186] Compiling rsa_extra.cc
[1028/1186] Compiling rsa_print.cc
[1029/1186] Compiling refcount.cc
[1030/1186] Compiling rc4.cc
[1031/1186] Compiling rsa_asn1.cc
[1032/1186] Compiling rsa_crypt.cc
[1033/1186] Compiling windows.cc
[1034/1186] Compiling urandom.cc
[1035/1186] Compiling trusty.cc
[1036/1186] Compiling rand_extra.cc
[1037/1186] Compiling ios.cc
[1038/1186] Compiling passive.cc
[1039/1186] Compiling deterministic.cc
[1040/1186] Compiling getentropy.cc
[1041/1186] Compiling poly1305_arm_asm.S
[1042/1186] Compiling forkunsafe.cc
[1043/1186] Compiling fork_detect.cc
[1044/1186] Compiling poly1305_arm.cc
[1045/1186] Compiling pool.cc
[1046/1186] Compiling poly1305.cc
[1047/1186] Compiling poly1305_vec.cc
[1048/1186] Compiling pkcs7.cc
[1049/1186] Compiling pkcs8.cc
[1050/1186] Compiling p5_pbev2.cc
[1051/1186] Compiling pkcs8_x509.cc
[1052/1186] Compiling pkcs7_x509.cc
[1053/1186] Compiling pem_x509.cc
[1054/1186] Compiling pem_pkey.cc
[1055/1186] Compiling pem_xaux.cc
[1056/1186] Compiling pem_pk8.cc
[1057/1186] Compiling obj_xref.cc
[1058/1186] Compiling pem_oth.cc
[1059/1186] Compiling mlkem.cc
[1060/1186] Compiling pem_info.cc
[1061/1186] Compiling obj.cc
[1062/1186] Compiling pem_lib.cc
[1063/1186] Compiling mldsa.cc
[1064/1186] Compiling pem_all.cc
[1065/1186] Compiling md5.cc
[1066/1186] Compiling mem.cc
[1067/1186] Compiling fips_shared_support.cc
[1068/1186] Compiling poly_rq_mul.S
[1069/1186] Compiling lhash.cc
[1070/1186] Compiling md4.cc
[1071/1186] Compiling kyber.cc
[1072/1186] Compiling ex_data.cc
[1073/1186] Compiling sign.cc
[1074/1186] Compiling scrypt.cc
[1075/1186] Compiling hrss.cc
[1076/1186] Compiling hpke.cc
[1077/1186] Compiling pbkdf.cc
[1078/1186] Compiling print.cc
[1079/1186] Compiling p_x25519.cc
[1080/1186] Compiling p_x25519_asn1.cc
[1081/1186] Compiling p_hkdf.cc
[1082/1186] Compiling p_rsa_asn1.cc
[1083/1186] Compiling p_rsa.cc
[1084/1186] Compiling p_ed25519.cc
[1085/1186] Compiling p_ed25519_asn1.cc
[1086/1186] Compiling p_ec_asn1.cc
[1087/1186] Compiling p_ec.cc
[1088/1186] Compiling p_dh.cc
[1089/1186] Compiling p_dsa_asn1.cc
[1090/1186] Compiling p_dh_asn1.cc
[1091/1186] Compiling evp_ctx.cc
[1092/1186] Compiling evp_asn1.cc
[1093/1186] Compiling evp.cc
[1094/1186] Compiling err.cc
[1095/1186] Compiling engine.cc
[1096/1186] Compiling ecdh_extra.cc
[1097/1186] Compiling ecdsa_asn1.cc
[1098/1186] Compiling hash_to_curve.cc
[1099/1186] Compiling ec_derive.cc
[1100/1186] Compiling ec_asn1.cc
[1101/1186] Compiling dsa_asn1.cc
[1102/1186] Compiling dsa.cc
[1103/1186] Compiling params.cc
[1104/1186] Compiling digest_extra.cc
[1105/1186] Compiling x25519-asm-arm.S
[1106/1186] Compiling dh_asn1.cc
[1107/1186] Compiling des.cc
[1108/1186] Compiling spake25519.cc
[1109/1186] Compiling cpu_intel.cc
[1110/1186] Compiling crypto.cc
[1111/1186] Compiling cpu_arm_linux.cc
[1112/1186] Compiling cpu_arm_freebsd.cc
[1113/1186] Compiling curve25519.cc
[1114/1186] Compiling cpu_aarch64_win.cc
[1115/1186] Compiling cpu_aarch64_openbsd.cc
[1116/1186] Compiling cpu_aarch64_sysreg.cc
[1117/1186] Compiling cpu_aarch64_linux.cc
[1118/1186] Compiling cpu_aarch64_fuchsia.cc
[1119/1186] Compiling curve25519_64_adx.cc
[1120/1186] Compiling cpu_aarch64_apple.cc
[1121/1186] Compiling bcm.cc
[1122/1186] Compiling tls_cbc.cc
[1123/1186] Compiling conf.cc
[1124/1186] Compiling e_tls.cc
[1125/1186] Compiling e_rc4.cc
[1126/1186] Compiling e_rc2.cc
[1127/1186] Compiling e_null.cc
[1128/1186] Compiling e_des.cc
[1129/1186] Compiling e_aesctrhmac.cc
[1130/1186] Compiling derive_key.cc
[1131/1186] Compiling e_chacha20poly1305.cc
[1132/1186] Compiling e_aesgcmsiv.cc
[1133/1186] Compiling cipher_extra.cc
[1134/1186] Compiling unicode.cc
[1135/1186] Compiling chacha.cc
[1136/1186] Compiling ber.cc
[1137/1186] Compiling asn1_compat.cc
[1138/1186] Compiling buf.cc
[1139/1186] Compiling cbb.cc
[1140/1186] Compiling cbs.cc
[1141/1186] Compiling bn_asn1.cc
[1142/1186] Compiling blake2.cc
[1143/1186] Compiling convert.cc
[1144/1186] Compiling printf.cc
[1145/1186] Compiling pair.cc
[1146/1186] Compiling file.cc
[1147/1186] Compiling errno.cc
[1148/1186] Compiling hexdump.cc
[1149/1186] Compiling fd.cc
[1150/1186] Compiling bio_mem.cc
[1151/1186] Compiling bio.cc
[1152/1186] Compiling base64.cc
[1153/1186] Compiling tasn_fre.cc
[1154/1186] Compiling tasn_typ.cc
[1155/1186] Compiling tasn_utl.cc
[1156/1186] Compiling tasn_new.cc
[1157/1186] Compiling tasn_enc.cc
[1158/1186] Compiling f_string.cc
[1159/1186] Compiling tasn_dec.cc
[1160/1186] Compiling posix_time.cc
[1161/1186] Compiling asn_pack.cc
[1162/1186] Compiling f_int.cc
[1163/1186] Compiling asn1_par.cc
[1164/1186] Compiling a_utctm.cc
[1165/1186] Compiling asn1_lib.cc
[1166/1186] Compiling a_type.cc
[1167/1186] Compiling a_time.cc
[1168/1186] Compiling a_octet.cc
[1169/1186] Compiling a_strex.cc
[1170/1186] Compiling a_strnid.cc
[1171/1186] Compiling a_object.cc
[1172/1186] Compiling a_mbstr.cc
[1173/1186] Compiling a_i2d_fp.cc
[1173/1186] Write sources
[1179/1186] Compiling CAsyncHTTPClient CAsyncHTTPClient.c
[1180/1186] Compiling a_gentm.cc
[1181/1186] Compiling a_int.cc
[1182/1186] Compiling a_dup.cc
[1183/1186] Compiling a_d2i_fp.cc
[1184/1196] Compiling a_bool.cc
[1186/1327] Compiling Algorithms Grouped.swift
[1187/1327] Compiling Algorithms Indexed.swift
[1187/1329] Compiling a_bitstr.cc
[1189/1329] Compiling Algorithms Partition.swift
[1190/1329] Compiling Algorithms Permutations.swift
[1191/1329] Compiling Algorithms Keyed.swift
[1192/1329] Compiling Algorithms MinMax.swift
[1193/1329] Compiling Algorithms Intersperse.swift
[1194/1329] Compiling Algorithms Joined.swift
[1195/1337] Compiling Algorithms FlattenCollection.swift
[1202/1344] Compiling Atomics IntegerOperations.swift
[1203/1344] Compiling Atomics Unmanaged extensions.swift
[1204/1344] Compiling Algorithms EitherSequence.swift
[1205/1344] Compiling Algorithms FirstNonNil.swift
[1207/1344] Emitting module BitCollections
[1208/1344] Compiling AsyncAlgorithms AsyncSyncSequence.swift
[1209/1344] Compiling AsyncAlgorithms AsyncThrottleSequence.swift
[1210/1344] Compiling AsyncAlgorithms AsyncThrowingExclusiveReductionsSequence.swift
[1211/1344] Compiling AsyncAlgorithms AsyncThrowingInclusiveReductionsSequence.swift
[1212/1344] Compiling AsyncAlgorithms AsyncTimerSequence.swift
[1213/1344] Compiling AsyncAlgorithms AsyncBufferSequence.swift
[1214/1344] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[1215/1344] Compiling AsyncAlgorithms Locking.swift
[1216/1344] Compiling AsyncAlgorithms AsyncMerge2Sequence.swift
[1217/1344] Compiling AsyncAlgorithms AsyncMerge3Sequence.swift
[1218/1344] Compiling AsyncAlgorithms MergeStateMachine.swift
[1219/1344] Compiling AsyncAlgorithms MergeStorage.swift
[1220/1344] Compiling AsyncAlgorithms RangeReplaceableCollection.swift
[1221/1344] Compiling AsyncAlgorithms Rethrow.swift
[1222/1344] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[1223/1344] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[1224/1344] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[1225/1344] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[1226/1344] Compiling BitCollections BitSet+SetAlgebra union.swift
[1227/1344] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[1228/1344] Compiling BitCollections BitSet.Counted.swift
[1230/1344] Compiling Algorithms Stride.swift
[1231/1344] Compiling Algorithms Suffix.swift
[1232/1344] Compiling Algorithms RandomSample.swift
[1233/1344] Compiling Algorithms Reductions.swift
[1234/1344] Compiling Algorithms Rotate.swift
[1247/1353] Compiling CryptoBoringWrapper RandomBytes.swift
[1248/1353] Emitting module AsyncAlgorithms
[1249/1353] Compiling Algorithms Compacted.swift
[1250/1353] Compiling Algorithms Cycle.swift
[1253/1353] Compiling BitCollections BitSet.Index.swift
[1254/1353] Compiling BitCollections BitSet._UnsafeHandle.swift
[1255/1353] Compiling BitCollections BitSet.swift
[1256/1353] Compiling BitCollections Range+Utilities.swift
[1257/1353] Compiling BitCollections Slice+Utilities.swift
[1258/1353] Compiling BitCollections UInt+Tricks.swift
[1259/1353] Compiling BitCollections _Word.swift
[1260/1353] Compiling Algorithms AdjacentPairs.swift
[1261/1353] Compiling Algorithms Chain.swift
[1262/1353] Compiling Algorithms Chunked.swift
[1263/1353] Compiling Algorithms Combinations.swift
[1289/1353] Compiling Algorithms Trim.swift
[1290/1353] Compiling Algorithms Unique.swift
[1291/1353] Compiling Algorithms Windows.swift
[1292/1353] Compiling AsyncAlgorithms DebounceStateMachine.swift
[1293/1353] Compiling AsyncAlgorithms DebounceStorage.swift
[1294/1353] Compiling AsyncAlgorithms Dictionary.swift
[1295/1353] Compiling AsyncAlgorithms AsyncInterspersedSequence.swift
[1304/1353] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[1305/1354] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[1306/1354] Compiling CryptoBoringWrapper EllipticCurve.swift
[1307/1354] Emitting module CryptoBoringWrapper
[1308/1354] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[1314/1354] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[1315/1354] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[1326/1357] Compiling Collections Collections.swift
[1327/1357] Emitting module Collections
[1329/1429] Compiling Crypto ASN1Strings.swift
[1330/1429] Compiling Crypto ArraySliceBigint.swift
[1331/1429] Compiling Crypto GeneralizedTime.swift
[1332/1429] Compiling Crypto ObjectIdentifier.swift
[1333/1429] Compiling Crypto ECDSASignature.swift
[1334/1429] Compiling Crypto PEMDocument.swift
[1335/1429] Compiling Crypto PKCS8PrivateKey.swift
[1336/1429] Compiling Crypto SEC1PrivateKey.swift
[1337/1429] Compiling Crypto SubjectPublicKeyInfo.swift
[1338/1429] Compiling Crypto CryptoKitErrors.swift
[1339/1429] Compiling Crypto Digest_boring.swift
[1340/1429] Compiling Crypto Digest.swift
[1341/1429] Compiling Crypto AES-GCM.swift
[1342/1429] Compiling Crypto AES-GCM_boring.swift
[1343/1429] Compiling Crypto ChaChaPoly_boring.swift
[1344/1429] Compiling Crypto ChaChaPoly.swift
[1345/1429] Compiling Crypto HPKE-Utils.swift
[1346/1429] Compiling Crypto DHKEM.swift
[1347/1429] Compiling Crypto HPKE-KEM-Curve25519.swift
[1348/1429] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[1349/1429] Compiling Crypto HPKE-KEM.swift
[1350/1429] Compiling Crypto HPKE-Errors.swift
[1353/1430] Compiling Crypto Cipher.swift
[1354/1430] Compiling Crypto Nonces.swift
[1358/1430] Emitting module Atomics
[1360/1499] Compiling ServiceLifecycle ServiceGroupConfiguration.swift
[1361/1500] Emitting module ServiceLifecycle
[1362/1500] Compiling ServiceLifecycle AsyncCancelOnGracefulShutdownSequence.swift
[1363/1500] Compiling ServiceLifecycle AsyncGracefulShutdownSequence.swift
[1364/1500] Compiling ServiceLifecycle GracefulShutdown.swift
[1365/1500] Emitting module Algorithms
[1367/1501] Compiling ServiceLifecycle ServiceRunnerError.swift
[1368/1501] Emitting module Crypto
[1369/1510] Compiling Crypto SymmetricKeys.swift
[1370/1510] Compiling Crypto HMAC.swift
[1371/1510] Compiling Crypto MACFunctions.swift
[1372/1510] Compiling Crypto MessageAuthenticationCode.swift
[1373/1510] Compiling Crypto AES.swift
[1374/1510] Compiling Crypto ECDSASignature_boring.swift
[1375/1510] Compiling Crypto ECDSA_boring.swift
[1376/1510] Compiling Crypto EdDSA_boring.swift
[1377/1510] Compiling Crypto ECDSA.swift
[1378/1510] Compiling Crypto Ed25519.swift
[1379/1510] Compiling NIOCore EventLoop.swift
[1380/1510] Compiling NIOCore IO.swift
[1381/1510] Compiling NIOCore IOData.swift
[1382/1510] Compiling NIOCore IPProtocol.swift
[1383/1510] Compiling NIOCore IntegerBitPacking.swift
[1384/1510] Compiling NIOCore IntegerTypes.swift
[1385/1510] Compiling NIOCore Interfaces.swift
[1386/1510] Compiling NIOCore Linux.swift
[1387/1510] Compiling NIOCore MarkedCircularBuffer.swift
[1388/1510] Compiling Crypto X25519Keys.swift
[1389/1510] Compiling NIOCore ByteBuffer-aux.swift
[1390/1510] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[1391/1510] Compiling NIOCore ByteBuffer-conversions.swift
[1392/1510] Compiling NIOCore ByteBuffer-core.swift
[1393/1510] Compiling NIOCore ByteBuffer-hex.swift
[1394/1510] Compiling NIOCore ByteBuffer-int.swift
[1395/1510] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[1396/1510] Compiling NIOCore MulticastChannel.swift
[1397/1510] Compiling NIOCore NIOAny.swift
[1398/1510] Compiling NIOCore NIOCloseOnErrorHandler.swift
[1399/1510] Compiling ServiceLifecycle Service.swift
[1400/1510] Compiling ServiceLifecycle CancellationWaiter.swift
[1401/1510] Compiling ServiceLifecycle ServiceGroup.swift
[1405/1511] Compiling NIOCore NIOLoopBound.swift
[1406/1511] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[1407/1511] Compiling NIOCore NIOScheduledCallback.swift
[1408/1511] Compiling NIOCore NIOSendable.swift
[1409/1511] Compiling NIOCore RecvByteBufferAllocator.swift
[1410/1519] Compiling NIOCore FileHandle.swift
[1411/1519] Compiling NIOCore FileRegion.swift
[1412/1519] Compiling NIOCore GlobalSingletons.swift
[1413/1519] Compiling NIOCore CircularBuffer.swift
[1414/1519] Compiling NIOCore Codec.swift
[1415/1519] Compiling NIOCore ConvenienceOptionSupport.swift
[1416/1519] Compiling NIOCore DeadChannel.swift
[1417/1519] Compiling NIOCore DispatchQueue+WithFuture.swift
[1418/1519] Compiling NIOCore EventLoop+Deprecated.swift
[1419/1519] Compiling NIOCore EventLoop+SerialExecutor.swift
[1425/1519] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[1426/1519] Compiling NIOCore EventLoopFuture+Deprecated.swift
[1427/1519] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[1428/1519] Compiling NIOCore EventLoopFuture.swift
[1429/1519] Compiling NIOCore FileDescriptor.swift
[1431/1519] Compiling NIOCore AddressedEnvelope.swift
[1432/1519] Compiling NIOCore AsyncAwaitSupport.swift
[1433/1519] Compiling NIOCore AsyncChannel.swift
[1434/1519] Compiling NIOCore AsyncChannelHandler.swift
[1435/1519] Compiling NIOCore AsyncChannelInboundStream.swift
[1436/1519] Compiling NIOCore AsyncChannelOutboundWriter.swift
[1437/1519] Compiling NIOCore NIOAsyncSequenceProducer.swift
[1438/1519] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[1439/1519] Compiling NIOCore NIOAsyncWriter.swift
[1440/1519] Compiling NIOCore ByteBuffer-multi-int.swift
[1441/1519] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[1442/1519] Compiling NIOCore ByteBuffer-views.swift
[1443/1519] Compiling NIOCore Channel.swift
[1444/1519] Compiling NIOCore ChannelHandler.swift
[1445/1519] Compiling NIOCore ChannelHandlers.swift
[1446/1519] Compiling NIOCore ChannelInvoker.swift
[1447/1519] Compiling NIOCore ChannelOption.swift
[1448/1519] Compiling NIOCore ChannelPipeline.swift
[1449/1519] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[1450/1519] Compiling NIOCore BSDSocketAPI.swift
[1459/1519] Compiling Crypto Signature.swift
[1460/1519] Compiling Crypto CryptoKitErrors_boring.swift
[1461/1519] Compiling Crypto RNG_boring.swift
[1462/1519] Compiling Crypto SafeCompare_boring.swift
[1463/1519] Compiling Crypto Zeroization_boring.swift
[1464/1519] Compiling Crypto PrettyBytes.swift
[1465/1519] Compiling Crypto SafeCompare.swift
[1466/1519] Compiling Crypto SecureBytes.swift
[1467/1519] Compiling Crypto Zeroization.swift
[1485/1522] Compiling HummingbirdOTP OTP.swift
[1486/1522] Emitting module HummingbirdOTP
[1487/1523] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[1488/1523] Compiling NIOCore SocketAddresses.swift
[1489/1523] Compiling NIOCore SocketOptionProvider.swift
[1490/1523] Compiling NIOCore SystemCallHelpers.swift
[1491/1523] Compiling NIOCore TimeAmount+Duration.swift
[1492/1523] Compiling NIOCore TypeAssistedChannelHandler.swift
[1493/1523] Compiling NIOCore UniversalBootstrapSupport.swift
[1494/1523] Compiling NIOCore Utilities.swift
[1523/1523] Emitting module NIOCore
[1525/1576] Compiling NIOHTTPTypes NIOHTTPTypes.swift
[1526/1576] Emitting module NIOHTTPTypes
[1528/1577] Emitting module NIOEmbedded
[1529/1577] Compiling NIOEmbedded AsyncTestingChannel.swift
[1530/1577] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[1531/1577] Compiling NIOEmbedded Embedded.swift
[1533/1578] Compiling NIOPosix ServerSocket.swift
[1534/1578] Compiling NIOPosix Socket.swift
[1535/1578] Compiling NIOPosix SocketChannel.swift
[1536/1578] Compiling NIOPosix SocketProtocols.swift
[1537/1578] Compiling NIOPosix System.swift
[1538/1578] Compiling NIOPosix Thread.swift
[1539/1584] Emitting module NIOPosix
[1540/1584] Compiling NIOPosix ThreadPosix.swift
[1541/1584] Compiling NIOPosix ThreadWindows.swift
[1542/1584] Compiling NIOPosix UnsafeTransfer.swift
[1543/1584] Compiling NIOPosix Utilities.swift
[1544/1584] Compiling NIOPosix VsockAddress.swift
[1545/1584] Compiling NIOPosix VsockChannelEvents.swift
[1546/1584] Compiling NIOPosix SelectableChannel.swift
[1547/1584] Compiling NIOPosix SelectableEventLoop.swift
[1548/1584] Compiling NIOPosix SelectorEpoll.swift
[1549/1584] Compiling NIOPosix SelectorGeneric.swift
[1550/1584] Compiling NIOPosix SelectorKqueue.swift
[1551/1584] Compiling NIOPosix SelectorUring.swift
[1552/1584] Compiling NIOPosix Pool.swift
[1553/1584] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[1554/1584] Compiling NIOPosix PosixSingletons.swift
[1555/1584] Compiling NIOPosix RawSocketBootstrap.swift
[1556/1584] Compiling NIOPosix Resolver.swift
[1557/1584] Compiling NIOPosix Selectable.swift
[1558/1584] Compiling NIOPosix NIOThreadPool.swift
[1559/1584] Compiling NIOPosix NonBlockingFileIO.swift
[1560/1584] Compiling NIOPosix PendingDatagramWritesManager.swift
[1561/1584] Compiling NIOPosix PendingWritesManager.swift
[1562/1584] Compiling NIOPosix PipeChannel.swift
[1563/1584] Compiling NIOPosix PipePair.swift
[1564/1584] Compiling NIOPosix IO.swift
[1565/1584] Compiling NIOPosix IntegerBitPacking.swift
[1566/1584] Compiling NIOPosix IntegerTypes.swift
[1567/1584] Compiling NIOPosix Linux.swift
[1568/1584] Compiling NIOPosix LinuxCPUSet.swift
[1569/1584] Compiling NIOPosix LinuxUring.swift
[1570/1584] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[1571/1584] Compiling NIOPosix BSDSocketAPICommon.swift
[1572/1584] Compiling NIOPosix BSDSocketAPIPosix.swift
[1573/1584] Compiling NIOPosix BSDSocketAPIWindows.swift
[1574/1584] Compiling NIOPosix BaseSocket.swift
[1575/1584] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[1576/1584] Compiling NIOPosix BaseSocketChannel.swift
[1577/1584] Compiling NIOPosix BaseStreamSocketChannel.swift
[1578/1584] Compiling NIOPosix Bootstrap.swift
[1579/1584] Compiling NIOPosix ControlMessage.swift
[1580/1584] Compiling NIOPosix DatagramVectorReadManager.swift
[1581/1584] Compiling NIOPosix Errors+Any.swift
[1582/1584] Compiling NIOPosix FileDescriptor.swift
[1583/1584] Compiling NIOPosix GetaddrinfoResolver.swift
[1584/1584] Compiling NIOPosix HappyEyeballs.swift
[1586/1587] Compiling NIO Exports.swift
[1587/1587] Emitting module NIO
[1589/1627] Compiling NIOTLS TLSEvents.swift
[1590/1627] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[1591/1627] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[1592/1627] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[1593/1627] Compiling NIOHTTP1 HTTPEncoder.swift
[1594/1627] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[1595/1628] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[1596/1628] Emitting module NIOTLS
[1597/1628] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[1598/1628] Compiling NIOSOCKS ClientStateMachine.swift
[1599/1628] Compiling NIOSOCKS SOCKSResponse.swift
[1600/1628] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[1601/1628] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[1602/1628] Emitting module NIOSOCKS
[1603/1628] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[1604/1628] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[1605/1628] Compiling NIOHTTP1 ByteCollectionUtils.swift
[1606/1628] Compiling NIOHTTP1 HTTPDecoder.swift
[1607/1628] Compiling NIOSOCKS ServerStateMachine.swift
[1608/1629] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[1609/1629] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[1610/1629] Compiling NIOTLS SNIHandler.swift
[1613/1630] Emitting module NIOHTTP1
[1614/1632] Emitting module NIOFoundationCompat
[1615/1632] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[1616/1633] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[1617/1633] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[1620/1633] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[1621/1684] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1622/1684] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[1623/1684] Compiling NIOTransportServices NIOTSListenerChannel.swift
[1624/1686] Compiling NIOTransportServices NIOTSBootstraps.swift
[1625/1686] Compiling NIOTransportServices NIOTSChannelOptions.swift
[1626/1686] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[1627/1686] Compiling NIOTransportServices StateManagedChannel.swift
[1628/1686] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1629/1686] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1630/1686] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[1631/1686] Compiling NIOTransportServices NIOTSSingletons.swift
[1632/1686] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[1633/1686] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[1634/1686] Compiling NIOTransportServices NIOTSErrors.swift
[1635/1686] Compiling NIOTransportServices NIOTSEventLoop.swift
[1636/1686] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1637/1686] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1638/1686] Compiling NIOTransportServices AcceptHandler.swift
[1639/1686] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[1640/1686] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[1641/1686] Compiling NIOTransportServices NIOTSDatagramListener.swift
[1642/1686] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[1643/1686] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[1644/1686] Emitting module NIOTransportServices
[1660/1728] Emitting module NIOHTTPTypesHTTP1
[1661/1728] Compiling NIOHTTPTypesHTTP1 HTTP1ToHTTPCodec.swift
[1662/1728] Compiling NIOExtras JSONRPCFraming+ContentLengthHeader.swift
[1663/1728] Compiling NIOExtras JSONRPCFraming.swift
[1664/1728] Compiling NIOExtras PCAPRingBuffer.swift
[1665/1728] Compiling NIOExtras QuiescingHelper.swift
[1666/1728] Emitting module NIOSSL
[1667/1728] Compiling NIOExtras DebugInboundEventsHandler.swift
[1668/1728] Compiling NIOExtras DebugOutboundEventsHandler.swift
[1669/1728] Compiling NIOExtras FixedLengthFrameDecoder.swift
[1670/1728] Compiling NIOExtras HTTP1ProxyConnectHandler.swift
[1671/1732] Compiling NIOHPACK IntegerCoding.swift
[1672/1732] Compiling NIOHPACK IndexedHeaderTable.swift
[1673/1733] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1677/1733] Compiling NIOSSL String+unsafeUninitializedCapacity.swift
[1678/1733] Compiling NIOSSL SubjectAlternativeName.swift
[1679/1733] Compiling NIOSSL NIOSSLSecureBytes.swift
[1680/1733] Compiling NIOSSL RNG.swift
[1681/1733] Compiling NIOSSL SafeCompare.swift
[1682/1733] Emitting module NIOHTTPCompression
[1683/1733] Compiling NIOHPACK StaticHeaderTable.swift
[1684/1733] Compiling NIOHPACK HuffmanTables.swift
[1685/1733] Compiling NIOHTTPCompression HTTPDecompression.swift
[1686/1733] Compiling NIOHTTPCompression HTTPCompression.swift
[1687/1733] Compiling NIOHTTPTypesHTTP1 HTTPTypeConversion.swift
[1688/1733] Compiling NIOHTTPTypesHTTP1 HTTPToHTTP1Codec.swift
[1689/1734] Compiling NIOHPACK HuffmanCoding.swift
[1690/1734] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
[1691/1734] Compiling NIOExtras NIOExtrasError.swift
[1692/1736] Compiling NIOExtras NIOLengthFieldBitLength.swift
[1693/1736] Compiling NIOExtras NIORequestIdentifiable.swift
[1694/1736] Compiling NIOExtras RequestResponseHandler.swift
[1695/1736] Compiling NIOExtras RequestResponseWithIDHandler.swift
[1699/1736] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1700/1736] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1701/1736] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1703/1737] Emitting module NIOExtras
[1716/1737] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
[1717/1737] Compiling NIOExtras LengthFieldPrepender.swift
[1720/1737] Compiling NIOExtras LineBasedFrameDecoder.swift
[1722/1737] Compiling NIOExtras UnsafeTransfer.swift
[1723/1737] Compiling NIOExtras WritePCAPHandler.swift
[1725/1737] Emitting module NIOHPACK
[1733/1796] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[1734/1796] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[1735/1796] Compiling NIOHTTP2 HTTP2Error.swift
[1736/1796] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1738/1797] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1739/1797] Compiling NIOHTTP2 DOSHeuristics.swift
[1741/1822] Emitting module NIOHTTP2
[1742/1830] Compiling HummingbirdCore ResponseBodyWriter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1743/1830] Compiling HummingbirdCore ResponseWriter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1744/1830] Compiling HummingbirdCore AvailableConnectionsHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1745/1833] Compiling HummingbirdCore BindAddress.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1746/1833] Compiling HummingbirdCore HTTP1Channel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1747/1833] Compiling HummingbirdCore HTTPChannelHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1748/1833] Compiling HummingbirdCore RequestBodyMergedWithUnderlyingRequestPartIterator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1749/1833] Compiling HummingbirdCore URI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1750/1833] Compiling HummingbirdCore Response.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1751/1833] Compiling HummingbirdCore ResponseBody.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1752/1833] Compiling HummingbirdCore HTTPServerBuilder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1753/1833] Compiling HummingbirdCore HTTPUserEventHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1754/1833] Compiling HummingbirdCore Server.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1755/1833] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1756/1833] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1757/1833] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1758/1833] Compiling NIOHTTP2 HTTP2StreamID.swift
[1759/1833] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1760/1833] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1761/1833] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1762/1833] Compiling NIOHTTP2 InboundEventBuffer.swift
[1763/1833] Compiling HummingbirdCore Deprecations.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1764/1833] Compiling HummingbirdCore Request.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1765/1833] Compiling HummingbirdCore RequestBody+inboundClose.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1766/1833] Compiling HummingbirdCore RequestBody.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1767/1833] Emitting module HummingbirdCore
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1768/1833] Compiling HummingbirdCore ServerChildChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1769/1833] Compiling HummingbirdCore ServerConfiguration.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1770/1833] Compiling HummingbirdCore TSTLSOptions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1771/1833] Compiling HummingbirdCore AnyAsyncSequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1772/1833] Compiling HummingbirdCore FlatDictionary.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1773/1833] Compiling HummingbirdCore HBParser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1774/1833] Compiling HummingbirdCore OutputBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1775/1833] Compiling HummingbirdCore String+percentEncode.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1776/1833] Compiling HummingbirdCore 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
[1778/1834] Compiling NIOHTTP2 InboundWindowManager.swift
[1779/1834] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1780/1834] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1781/1834] Compiling NIOHTTP2 StreamChannelList.swift
[1782/1834] Compiling NIOHTTP2 StreamMap.swift
[1783/1834] Compiling NIOHTTP2 StreamStateMachine.swift
[1784/1834] Compiling NIOHTTP2 UnsafeTransfer.swift
[1785/1834] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1786/1898] Compiling Hummingbird RouterTrie.swift
[1787/1898] Compiling Hummingbird Trie+resolve.swift
[1788/1898] Compiling Hummingbird Trie+serialize.swift
[1789/1898] Compiling Hummingbird TrieRouter.swift
[1790/1898] Compiling Hummingbird _SpreadMiddleware.swift
[1791/1898] Compiling Hummingbird TracingMiddleware.swift
[1792/1898] Compiling Hummingbird EndpointResponder.swift
[1793/1898] Compiling Hummingbird Parameters+UUID.swift
[1794/1898] Compiling Hummingbird CacheControl.swift
[1795/1898] Compiling Hummingbird Application.swift
[1796/1898] Compiling Hummingbird CodableProtocols.swift
[1797/1898] Compiling Hummingbird JSONCoding.swift
[1798/1898] Compiling Hummingbird ResponseEncodable.swift
[1799/1898] Compiling Hummingbird URLEncodedForm+Request.swift
[1800/1898] Compiling Hummingbird URLEncodedForm.swift
[1801/1898] Compiling Hummingbird URLEncodedFormDecoder.swift
[1802/1898] Compiling Hummingbird MediaType+FileExtension.swift
[1803/1898] Compiling Hummingbird MediaType.swift
[1804/1898] Compiling Hummingbird Request+Cookies.swift
[1805/1898] Compiling Hummingbird Response+Cookies.swift
[1806/1898] Compiling Hummingbird RouterGroup.swift
[1807/1898] Compiling Hummingbird RouterMethods.swift
[1808/1898] Compiling Hummingbird RouterPath.swift
[1809/1898] Compiling Hummingbird RouterResponder.swift
[1810/1898] Compiling Hummingbird TransformingRouterGroup.swift
[1811/1898] Compiling Hummingbird Configuration.swift
[1812/1898] Compiling Hummingbird Deprecations.swift
[1813/1898] Compiling Hummingbird Environment.swift
[1814/1898] Compiling Hummingbird EditedHTTPError.swift
[1815/1898] Compiling Hummingbird HTTPError.swift
[1816/1898] Compiling Hummingbird HTTPResponseError.swift
[1817/1898] Compiling Hummingbird NIOCore+HTTPResponseError.swift
[1818/1898] Compiling Hummingbird Exports.swift
[1819/1898] Compiling Hummingbird URLEncodedFormEncoder.swift
[1820/1898] Compiling Hummingbird URLEncodedFormNode.swift
[1821/1898] Compiling Hummingbird CORSMiddleware.swift
[1822/1898] Compiling Hummingbird FileMiddleware.swift
[1823/1898] Compiling Hummingbird LogRequestMiddleware.swift
[1824/1898] Compiling Hummingbird MetricsMiddleware.swift
[1825/1898] Compiling Hummingbird Middleware.swift
[1826/1898] Compiling Hummingbird MiddlewareGroup.swift
[1827/1898] Compiling Hummingbird MiddlewareFixedTypeBuilder.swift
[1828/1898] Compiling Hummingbird _Middleware2.swift
[1829/1898] Compiling Hummingbird _OptionalMiddleware.swift
[1830/1898] Compiling Hummingbird FileIO.swift
[1831/1898] Compiling Hummingbird FileProvider.swift
[1832/1898] Compiling Hummingbird LocalFileSystem.swift
[1833/1898] Compiling Hummingbird Cookie.swift
[1834/1898] Compiling Hummingbird Cookies.swift
[1836/1959] Compiling AsyncHTTPClient NWErrorHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1837/1959] Compiling AsyncHTTPClient NWWaitingHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1838/1959] Compiling AsyncHTTPClient TLSConfiguration.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1839/1959] Compiling AsyncHTTPClient RedirectState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1840/1959] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1841/1959] Compiling Hummingbird RequestResponder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1842/1959] Compiling Hummingbird Response.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1843/1959] Compiling Hummingbird URI+decodeQuery.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1844/1959] Compiling Hummingbird MemoryPersistDriver.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1845/1968] Compiling AsyncHTTPClient AnyAsyncSequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1846/1968] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1847/1968] Compiling AsyncHTTPClient AsyncLazySequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1848/1968] Compiling AsyncHTTPClient HTTPClient+execute.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1849/1968] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1850/1968] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1851/1968] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1852/1968] Compiling AsyncHTTPClient HTTPClientRequest.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1853/1968] Compiling AsyncHTTPClient HTTPClientResponse.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1854/1968] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1855/1968] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1856/1968] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1857/1968] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1858/1968] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1859/1968] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1860/1968] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1861/1968] Compiling AsyncHTTPClient ConnectionTarget.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1862/1968] Compiling AsyncHTTPClient DeconstructedURL.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1863/1968] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1864/1968] Compiling AsyncHTTPClient TLSEventsHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1865/1968] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1866/1968] Compiling AsyncHTTPClient HTTP1Connection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1867/1968] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1868/1968] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1869/1968] Compiling AsyncHTTPClient HTTP2Connection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1870/1968] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1871/1968] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1872/1968] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1873/1968] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1874/1968] Compiling AsyncHTTPClient HTTPConnectionPool.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1875/1968] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1876/1968] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1877/1968] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1878/1968] Compiling AsyncHTTPClient RequestBodyLength.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1879/1968] Compiling AsyncHTTPClient RequestFramingMetadata.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1880/1968] Compiling AsyncHTTPClient RequestOptions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1881/1968] Compiling AsyncHTTPClient FileDownloadDelegate.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1882/1968] Compiling AsyncHTTPClient FoundationExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1883/1968] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1884/1968] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1885/1968] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1886/1968] Compiling AsyncHTTPClient HTTPClient.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1887/1968] Compiling AsyncHTTPClient HTTPHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1888/1968] Compiling AsyncHTTPClient LRUCache.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1889/1968] Compiling AsyncHTTPClient NIOLoopBound+Execute.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1890/1968] Emitting module AsyncHTTPClient
[1900/1976] Compiling AsyncHTTPClient Singleton.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1901/1976] Compiling AsyncHTTPClient StringConvertibleInstances.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1902/1976] Compiling AsyncHTTPClient 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
[1903/1976] Compiling AsyncHTTPClient Utils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1904/1976] Compiling Hummingbird HTTPHeaderDateFormatStyle.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1905/1976] Compiling Hummingbird HexDigest.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1906/1976] Compiling Hummingbird InitializableFromSource.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1907/1976] Compiling Hummingbird PreludeService.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1908/1976] Compiling Hummingbird StringProtocol.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1917/1976] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1918/1976] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1919/1976] Compiling AsyncHTTPClient Transaction.swift
[1920/1976] Compiling AsyncHTTPClient Base64.swift
[1921/1976] Compiling AsyncHTTPClient BasicAuth.swift
[1922/1976] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1923/1976] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1924/1976] Compiling AsyncHTTPClient ConnectionPool.swift
[1925/1976] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1951/1976] Emitting module Hummingbird
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1970/1977] Compiling AsyncHTTPClient RequestBag.swift
[1971/1977] Compiling AsyncHTTPClient RequestValidation.swift
[1972/1977] Compiling AsyncHTTPClient SSLContextCache.swift
[1973/1977] Compiling AsyncHTTPClient Scheme.swift
[1979/1990] Compiling HummingbirdAuth BearerAuthentication.swift
[1980/1990] Compiling HummingbirdAuth Deprecated.swift
[1981/2000] Emitting module HummingbirdAuth
[1982/2000] Compiling HummingbirdAuth ClosureAuthenticator.swift
[1983/2000] Compiling HummingbirdAuth BasicAuthentication.swift
[1984/2000] Compiling HummingbirdTesting Application+Test.swift
[1985/2000] Compiling HummingbirdTesting ApplicationTester.swift
[1986/2000] Compiling HummingbirdAuth UserSessionRepository.swift
[1987/2000] Compiling HummingbirdAuth SessionStorage.swift
/host/spi-builder-workspace/Sources/HummingbirdAuth/Sessions/SessionStorage.swift:103:32: warning: type 'SessionType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
41 |
42 | /// Stores session data
43 | public struct SessionStorage<SessionType: Codable>: Sendable {
| `- note: consider making generic parameter 'SessionType' conform to the 'Sendable' protocol
44 | /// SessionStorage Errors
45 | public struct Error: Swift.Error, Equatable {
:
101 | let sessionId = Self.createSessionId()
102 | // prefix with "hbs."
103 | try await self.storage.set(
| `- warning: type 'SessionType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
104 | key: "hbs.\(sessionId)",
105 | value: session,
/host/spi-builder-workspace/Sources/HummingbirdAuth/Sessions/SessionStorage.swift:119:32: warning: type 'SessionType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
41 |
42 | /// Stores session data
43 | public struct SessionStorage<SessionType: Codable>: Sendable {
| `- note: consider making generic parameter 'SessionType' conform to the 'Sendable' protocol
44 | /// SessionStorage Errors
45 | public struct Error: Swift.Error, Equatable {
:
117 | }
118 | // prefix with "hbs."
119 | try await self.storage.set(
| `- warning: type 'SessionType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
120 | key: "hbs.\(sessionId)",
121 | value: session,
/host/spi-builder-workspace/Sources/HummingbirdAuth/Sessions/SessionStorage.swift:134:32: warning: type 'SessionType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
41 |
42 | /// Stores session data
43 | public struct SessionStorage<SessionType: Codable>: Sendable {
| `- note: consider making generic parameter 'SessionType' conform to the 'Sendable' protocol
44 | /// SessionStorage Errors
45 | public struct Error: Swift.Error, Equatable {
:
132 | }
133 | // prefix with "hbs."
134 | try await self.storage.set(
| `- warning: type 'SessionType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
135 | key: "hbs.\(sessionId)",
136 | value: session,
/host/spi-builder-workspace/Sources/HummingbirdAuth/Sessions/SessionStorage.swift:148:43: warning: type 'SessionType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
41 |
42 | /// Stores session data
43 | public struct SessionStorage<SessionType: Codable>: Sendable {
| `- note: consider making generic parameter 'SessionType' conform to the 'Sendable' protocol
44 | /// SessionStorage Errors
45 | public struct Error: Swift.Error, Equatable {
:
146 | do {
147 | // prefix with "hbs."
148 | return try await self.storage.get(
| `- warning: type 'SessionType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
149 | key: "hbs.\(sessionId)",
150 | as: SessionType.self
/host/spi-builder-workspace/Sources/HummingbirdAuth/Sessions/SessionStorage.swift:180:16: warning: 'init(base64Encoding:)' is deprecated: This API was unintentionally made public.
178 | static func createSessionId() -> String {
179 | let bytes: [UInt8] = (0..<32).map { _ in UInt8.random(in: 0...255) }
180 | return String(base64Encoding: bytes)
| `- warning: 'init(base64Encoding:)' is deprecated: This API was unintentionally made public.
181 | }
182 |
[1988/2000] Compiling HummingbirdAuth SessionContext.swift
[1989/2000] Compiling HummingbirdAuth IsAuthenticatedMiddleware.swift
[1990/2000] Compiling HummingbirdAuth SessionAuthenticator.swift
[1991/2000] Compiling HummingbirdAuth SessionMiddleware.swift
[1993/2005] Compiling HummingbirdBasicAuth PasswordVerifier.swift
[1994/2005] Compiling HummingbirdTesting Deprecations.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1995/2006] Compiling HummingbirdBasicAuth UserPasswordRepository.swift
[1996/2006] Compiling HummingbirdBasicAuth BasicAuthenticator.swift
[1997/2006] Emitting module HummingbirdBasicAuth
[1998/2007] Compiling HummingbirdTesting TestClient+types.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1999/2007] Compiling HummingbirdTesting TestApplication.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2000/2007] Emitting module HummingbirdTesting
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2002/2007] Compiling HummingbirdTesting RouterTestFramework.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2003/2007] Compiling HummingbirdTesting LiveTestFramework.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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
[2006/2007] Compiling HummingbirdTesting AsyncHTTPClientTestFramework.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2007/2007] Compiling HummingbirdTesting TestClient.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[2009/2010] Emitting module HummingbirdAuthTesting
[2010/2010] Compiling HummingbirdAuthTesting TestClient+Auth.swift
/host/spi-builder-workspace/Sources/HummingbirdAuthTesting/TestClient+Auth.swift:47:42: warning: 'init(base64Encoding:)' is deprecated: This API was unintentionally made public.
45 | var headers = headers
46 | let usernamePassword = "\(username):\(password)"
47 | let authorization = "Basic \(String(base64Encoding: usernamePassword.utf8))"
| `- warning: 'init(base64Encoding:)' is deprecated: This API was unintentionally made public.
48 | headers[.authorization] = authorization
49 | return (uri: uri, method: method, headers: headers, body: body)
Build complete! (513.19s)
Build complete.
{
"dependencies" : [
{
"identity" : "hummingbird",
"requirement" : {
"range" : [
{
"lower_bound" : "2.5.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/hummingbird-project/hummingbird.git"
},
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.63.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "swift-extras-base64",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-extras/swift-extras-base64.git"
}
],
"manifest_display_name" : "hummingbird-auth",
"name" : "hummingbird-auth",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "14.0"
},
{
"name" : "ios",
"version" : "17.0"
},
{
"name" : "tvos",
"version" : "17.0"
}
],
"products" : [
{
"name" : "HummingbirdAuth",
"targets" : [
"HummingbirdAuth"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HummingbirdBasicAuth",
"targets" : [
"HummingbirdBasicAuth"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HummingbirdBcrypt",
"targets" : [
"HummingbirdBcrypt"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HummingbirdOTP",
"targets" : [
"HummingbirdOTP"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HummingbirdAuthTesting",
"targets" : [
"HummingbirdAuthTesting"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "HummingbirdOTP",
"module_type" : "SwiftTarget",
"name" : "HummingbirdOTP",
"path" : "Sources/HummingbirdOTP",
"product_dependencies" : [
"Crypto",
"ExtrasBase64"
],
"product_memberships" : [
"HummingbirdOTP"
],
"sources" : [
"OTP.swift"
],
"type" : "library"
},
{
"c99name" : "HummingbirdBcrypt",
"module_type" : "SwiftTarget",
"name" : "HummingbirdBcrypt",
"path" : "Sources/HummingbirdBcrypt",
"product_memberships" : [
"HummingbirdBasicAuth",
"HummingbirdBcrypt"
],
"sources" : [
"Bcrypt.swift"
],
"target_dependencies" : [
"CBcrypt"
],
"type" : "library"
},
{
"c99name" : "HummingbirdBasicAuth",
"module_type" : "SwiftTarget",
"name" : "HummingbirdBasicAuth",
"path" : "Sources/HummingbirdBasicAuth",
"product_dependencies" : [
"Hummingbird"
],
"product_memberships" : [
"HummingbirdBasicAuth"
],
"sources" : [
"BasicAuthenticator.swift",
"PasswordVerifier.swift",
"UserPasswordRepository.swift"
],
"target_dependencies" : [
"HummingbirdAuth",
"HummingbirdBcrypt"
],
"type" : "library"
},
{
"c99name" : "HummingbirdAuthTests",
"module_type" : "SwiftTarget",
"name" : "HummingbirdAuthTests",
"path" : "Tests/HummingbirdAuthTests",
"product_dependencies" : [
"HummingbirdTesting",
"NIOPosix"
],
"sources" : [
"AuthTests.swift",
"BcryptTests.swift",
"OTPTests.swift",
"SessionTests.swift"
],
"target_dependencies" : [
"HummingbirdAuth",
"HummingbirdBasicAuth",
"HummingbirdBcrypt",
"HummingbirdOTP",
"HummingbirdAuthTesting"
],
"type" : "test"
},
{
"c99name" : "HummingbirdAuthTesting",
"module_type" : "SwiftTarget",
"name" : "HummingbirdAuthTesting",
"path" : "Sources/HummingbirdAuthTesting",
"product_dependencies" : [
"HummingbirdTesting"
],
"product_memberships" : [
"HummingbirdAuthTesting"
],
"sources" : [
"TestClient+Auth.swift"
],
"target_dependencies" : [
"HummingbirdAuth"
],
"type" : "library"
},
{
"c99name" : "HummingbirdAuth",
"module_type" : "SwiftTarget",
"name" : "HummingbirdAuth",
"path" : "Sources/HummingbirdAuth",
"product_dependencies" : [
"Hummingbird",
"ExtrasBase64"
],
"product_memberships" : [
"HummingbirdAuth",
"HummingbirdBasicAuth",
"HummingbirdAuthTesting"
],
"sources" : [
"Authenticator/AuthRequestContext.swift",
"Authenticator/Authenticator.swift",
"Authenticator/ClosureAuthenticator.swift",
"BasicAuthentication.swift",
"BearerAuthentication.swift",
"Deprecated.swift",
"Middleware/IsAuthenticatedMiddleware.swift",
"Sessions/SessionAuthenticator.swift",
"Sessions/SessionContext.swift",
"Sessions/SessionMiddleware.swift",
"Sessions/SessionStorage.swift",
"Sessions/UserSessionRepository.swift"
],
"type" : "library"
},
{
"c99name" : "CBcrypt",
"module_type" : "ClangTarget",
"name" : "CBcrypt",
"path" : "Sources/CBcrypt",
"product_memberships" : [
"HummingbirdBasicAuth",
"HummingbirdBcrypt"
],
"sources" : [
"bcrypt.c",
"blf.c"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:2e2b3aca8600f890617c2faa770b70e33c1dfd303d6f92b308423b89ef6bde64
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.