The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of vapor-oauth, reference main (e4c459), with Swift 6.0 for Linux on 1 Jan 2025 21:02:57 UTC.

Swift 6 data race errors: 9

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-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.60.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brokenhandsio/vapor-oauth.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/brokenhandsio/vapor-oauth
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at e4c4590 Merge pull request #31 from brokenhandsio/swift-format
Cloned https://github.com/brokenhandsio/vapor-oauth.git
Revision (git rev-parse @):
e4c4590808c95ab604a1f294e034e405672fbdb9
SUCCESS checkout https://github.com/brokenhandsio/vapor-oauth.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/brokenhandsio/vapor-oauth.git
https://github.com/brokenhandsio/vapor-oauth.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "vapor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.111.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/vapor.git"
    }
  ],
  "manifest_display_name" : "vapor-oauth",
  "name" : "vapor-oauth",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "OAuth",
      "targets" : [
        "VaporOAuth"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "VaporOAuthTests",
      "module_type" : "SwiftTarget",
      "name" : "VaporOAuthTests",
      "path" : "Tests/VaporOAuthTests",
      "product_dependencies" : [
        "XCTVapor"
      ],
      "sources" : [
        "Application+testable.swift",
        "AuthorizationTests/AuthorizationRequestTests.swift",
        "AuthorizationTests/AuthorizationResponseTests.swift",
        "DefaultImplementationTests/DefaultImplementationTests.swift",
        "Fakes/AccessToken.swift",
        "Fakes/CapturingAuthorizeHandler.swift",
        "Fakes/CapturingLogger.swift",
        "Fakes/FakeAuthenticationMiddleware.swift",
        "Fakes/FakeClientGetter.swift",
        "Fakes/FakeCodeManager.swift",
        "Fakes/FakeResourceServerRetriever.swift",
        "Fakes/FakeSessions.swift",
        "Fakes/FakeTokenManager.swift",
        "Fakes/FakeUserManager.swift",
        "Fakes/RefreshToken.swift",
        "Fakes/StubCodeManager.swift",
        "Fakes/StubTokenManager.swift",
        "Fakes/StubUserManager.swift",
        "GrantTests/AuthorizationCodeTokenTests.swift",
        "GrantTests/ClientCredentialsTokenTests.swift",
        "GrantTests/ImplicitGrantTests.swift",
        "GrantTests/PasswordGrantTokenTests.swift",
        "GrantTests/TokenRefreshTests.swift",
        "Helpers/HTTPHeaders+location.swift",
        "Helpers/Responses.swift",
        "Helpers/TestDataBuilder.swift",
        "IntegrationTests/AuthCodeResourceServerTests.swift",
        "TokenIntrospectionTests/TokenIntrospectionTests.swift"
      ],
      "target_dependencies" : [
        "VaporOAuth"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VaporOAuth",
      "module_type" : "SwiftTarget",
      "name" : "VaporOAuth",
      "path" : "Sources/VaporOAuth",
      "product_dependencies" : [
        "Vapor"
      ],
      "product_memberships" : [
        "OAuth"
      ],
      "sources" : [
        "DefaultImplementations/EmptyAuthorizationHandler.swift",
        "DefaultImplementations/EmptyCodeManager.swift",
        "DefaultImplementations/EmptyResourceServerRetriever.swift",
        "DefaultImplementations/EmptyUserManager.swift",
        "DefaultImplementations/StaticClientRetriever.swift",
        "Helper/OAuthHelper+local.swift",
        "Helper/OAuthHelper+remote.swift",
        "Helper/OAuthHelper.swift",
        "Middleware/OAuth2ScopeMiddleware.swift",
        "Middleware/OAuth2TokenIntrospectionMiddleware.swift",
        "Middleware/TokenIntrospectionAuthenticationMiddleware.swift",
        "Models/OAuthClient.swift",
        "Models/OAuthCode.swift",
        "Models/OAuthResourceServer.swift",
        "Models/OAuthUser.swift",
        "Models/Tokens/AccessToken.swift",
        "Models/Tokens/RefreshToken.swift",
        "OAuth2.swift",
        "Protocols/AuthorizeHandler.swift",
        "Protocols/ClientRetriever.swift",
        "Protocols/CodeManager.swift",
        "Protocols/ResourceServerRetriever.swift",
        "Protocols/TokenManager.swift",
        "Protocols/UserManager.swift",
        "RouteHandlers/AuthorizeGetHandler.swift",
        "RouteHandlers/AuthorizePostHandler.swift",
        "RouteHandlers/TokenHandler.swift",
        "RouteHandlers/TokenHandlers/AuthCodeTokenHandler.swift",
        "RouteHandlers/TokenHandlers/ClientCredentialsTokenHandler.swift",
        "RouteHandlers/TokenHandlers/PasswordTokenHandler.swift",
        "RouteHandlers/TokenHandlers/RefreshTokenHandler.swift",
        "RouteHandlers/TokenHandlers/TokenResponseGenerator.swift",
        "RouteHandlers/TokenIntrospectionHandler.swift",
        "Utilities/OAuthFlowType.swift",
        "Utilities/StringDefines.swift",
        "Utilities/TokenAuthenticator.swift",
        "Validators/ClientValidator.swift",
        "Validators/CodeValidator.swift",
        "Validators/ResourceServerAuthenticator.swift",
        "Validators/ScopeValidator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-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.0-latest: Pulling from finestructure/spi-images
Digest: sha256:081dcf4fb829aea9d08447f4790431afbdfbcc335bfeed728ca69c6f181ae2aa
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/vapor/vapor.git
[1/70655] Fetching vapor
Fetched https://github.com/vapor/vapor.git from cache (1.51s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.111.0 (0.57s)
Fetching https://github.com/apple/swift-service-context.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/vapor/multipart-kit.git
Fetching https://github.com/apple/swift-distributed-tracing.git
Fetching https://github.com/vapor/websocket-kit.git
Fetching https://github.com/apple/swift-atomics.git
[1/2172] Fetching multipart-kit
[501/3176] Fetching multipart-kit, swift-service-context
[712/8790] Fetching multipart-kit, swift-service-context, swift-algorithms
[1842/11314] Fetching multipart-kit, swift-service-context, swift-algorithms, websocket-kit
[7398/12883] Fetching multipart-kit, swift-service-context, swift-algorithms, websocket-kit, swift-atomics
[7526/17807] Fetching multipart-kit, swift-service-context, swift-algorithms, websocket-kit, swift-atomics, swift-distributed-tracing
Fetched https://github.com/apple/swift-service-context.git from cache (0.29s)
[13260/16803] Fetching multipart-kit, swift-algorithms, websocket-kit, swift-atomics, swift-distributed-tracing
Fetching https://github.com/apple/swift-metrics.git
Fetched https://github.com/apple/swift-atomics.git from cache (0.48s)
Fetched https://github.com/apple/swift-algorithms.git from cache (0.48s)
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio-extras.git
[7949/11740] Fetching multipart-kit, websocket-kit, swift-distributed-tracing, swift-metrics
[10069/17002] Fetching multipart-kit, websocket-kit, swift-distributed-tracing, swift-metrics, swift-nio-extras
Fetched https://github.com/apple/swift-metrics.git from cache (0.35s)
[10001/14882] Fetching multipart-kit, websocket-kit, swift-distributed-tracing, swift-nio-extras
[10107/18614] Fetching multipart-kit, websocket-kit, swift-distributed-tracing, swift-nio-extras, swift-log
Fetching https://github.com/apple/swift-nio-http2.git
Fetched https://github.com/apple/swift-nio-extras.git from cache (0.32s)
Fetching https://github.com/apple/swift-nio-ssl.git
Fetched https://github.com/apple/swift-log.git from cache (0.34s)
Fetching https://github.com/apple/swift-nio.git
[7970/9620] Fetching multipart-kit, websocket-kit, swift-distributed-tracing
[9621/20855] Fetching multipart-kit, websocket-kit, swift-distributed-tracing, swift-nio-http2
[12206/34643] Fetching multipart-kit, websocket-kit, swift-distributed-tracing, swift-nio-http2, swift-nio-ssl
[13947/107206] Fetching multipart-kit, websocket-kit, swift-distributed-tracing, swift-nio-http2, swift-nio-ssl, swift-nio
Fetched https://github.com/vapor/websocket-kit.git from cache (1.33s)
[26634/104682] Fetching multipart-kit, swift-distributed-tracing, swift-nio-http2, swift-nio-ssl, swift-nio
Fetching https://github.com/vapor/routing-kit.git
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (1.34s)
[21960/99758] Fetching multipart-kit, swift-nio-http2, swift-nio-ssl, swift-nio
Fetching https://github.com/apple/swift-crypto.git
Fetched https://github.com/vapor/multipart-kit.git from cache (1.42s)
[26082/97586] Fetching swift-nio-http2, swift-nio-ssl, swift-nio
Fetching https://github.com/vapor/console-kit.git
[38551/118276] Fetching swift-nio-http2, swift-nio-ssl, swift-nio, routing-kit
[57605/123746] Fetching swift-nio-http2, swift-nio-ssl, swift-nio, routing-kit, console-kit
[71125/135872] Fetching swift-nio-http2, swift-nio-ssl, swift-nio, routing-kit, console-kit, swift-crypto
Fetched https://github.com/vapor/console-kit.git from cache (0.45s)
[82530/130402] Fetching swift-nio-http2, swift-nio-ssl, swift-nio, routing-kit, swift-crypto
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.23s)
[71416/119167] Fetching swift-nio-ssl, swift-nio, routing-kit, swift-crypto
Fetching https://github.com/vapor/async-kit.git
[82139/121537] Fetching swift-nio-ssl, swift-nio, routing-kit, swift-crypto, async-kit
Fetching https://github.com/swift-server/async-http-client.git
Fetched https://github.com/vapor/async-kit.git from cache (0.40s)
[83713/119167] Fetching swift-nio-ssl, swift-nio, routing-kit, swift-crypto
Fetched https://github.com/vapor/routing-kit.git from cache (1.10s)
[66050/98477] Fetching swift-nio-ssl, swift-nio, swift-crypto
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.72s)
[55291/84689] Fetching swift-nio, swift-crypto
[61107/98032] Fetching swift-nio, swift-crypto, async-http-client
Fetched https://github.com/apple/swift-crypto.git from cache (1.68s)
[70668/85906] Fetching swift-nio, async-http-client
Fetched https://github.com/swift-server/async-http-client.git from cache (0.80s)
[61679/72563] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (4.25s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.5.0 (0.46s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.77.0 (0.66s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
[1/15603] Fetching swift-collections
[782/19563] Fetching swift-collections, swift-system
Fetched https://github.com/apple/swift-system.git from cache (0.37s)
[4369/15603] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (0.86s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.24.0 (0.48s)
Fetching https://github.com/apple/swift-nio-transport-services.git
[1/2297] Fetching swift-nio-transport-services
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (0.28s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.0 (0.46s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (0.51s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.1.0 (0.51s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.24.1 (0.50s)
Fetching https://github.com/apple/swift-http-types
[1/734] Fetching swift-http-types
Fetched https://github.com/apple/swift-http-types from cache (0.20s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.1 (0.46s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.15.0 (0.52s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.0 (0.51s)
Fetching https://github.com/apple/swift-numerics.git
[1/5576] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.37s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.1.2 (0.50s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.2 (0.53s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.29.0 (0.56s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.2 (0.46s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.1 (0.48s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.23.0 (0.47s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.20.0 (0.51s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (0.68s)
Computing version for https://github.com/apple/swift-http-types
Computed https://github.com/apple/swift-http-types at 1.3.1 (0.51s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.35.0 (0.50s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.1 (0.47s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.10.0 (1.67s)
Fetching https://github.com/apple/swift-asn1.git
[1/1427] Fetching swift-asn1
Fetched https://github.com/apple/swift-asn1.git from cache (0.19s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.0 (0.53s)
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.35.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.2
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.4.0
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.1.2
Creating working copy for https://github.com/vapor/async-kit.git
Working copy of https://github.com/vapor/async-kit.git resolved at 1.20.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.24.0
Creating working copy for https://github.com/vapor/console-kit.git
Working copy of https://github.com/vapor/console-kit.git resolved at 4.15.1
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.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.2
Creating working copy for https://github.com/apple/swift-metrics.git
Working copy of https://github.com/apple/swift-metrics.git resolved at 2.5.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.77.0
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.29.0
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 4.111.0
Creating working copy for https://github.com/vapor/websocket-kit.git
Working copy of https://github.com/vapor/websocket-kit.git resolved at 2.15.0
Creating working copy for https://github.com/vapor/routing-kit.git
Working copy of https://github.com/vapor/routing-kit.git resolved at 4.9.1
Creating working copy for https://github.com/vapor/multipart-kit.git
Working copy of https://github.com/vapor/multipart-kit.git resolved at 4.7.1
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.1.0
Creating working copy for https://github.com/apple/swift-http-types
Working copy of https://github.com/apple/swift-http-types resolved at 1.3.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.1.4
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.0
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.24.1
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.23.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.10.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.2.0
warning: 'swift-algorithms': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/.build/checkouts/swift-algorithms/Sources/Algorithms/Documentation.docc
Building for debugging...
[0/845] Write sources
[46/845] Compiling CNIOWindows shim.c
[47/845] Compiling CNIOWindows WSAStartup.c
[48/845] Compiling _NumericsShims _NumericsShims.c
[49/845] Compiling _AtomicsShims.c
[50/845] Compiling CNIOWASI CNIOWASI.c
[51/845] Compiling CVaporBcrypt bcrypt.c
[52/845] Compiling CNIOLinux liburing_shims.c
[53/845] Compiling CSystem shims.c
[54/845] Compiling CVaporBcrypt blf.c
[55/845] Compiling CNIOSHA1 c_nio_sha1.c
[56/845] Compiling CNIODarwin shim.c
[56/845] Compiling CNIOExtrasZlib empty.c
[58/845] Compiling CNIOLLHTTP c_nio_http.c
[59/845] Compiling CNIOLinux shim.c
[60/845] Compiling fiat_p256_adx_sqr.S
[61/845] Compiling fiat_curve25519_adx_square.S
[61/845] Compiling fiat_p256_adx_mul.S
[63/845] Compiling CNIOLLHTTP c_nio_api.c
[64/845] Compiling fiat_curve25519_adx_mul.S
[65/845] Compiling CNIOLLHTTP c_nio_llhttp.c
[66/845] Write swift-version-24593BA9C3E375BF.txt
[67/845] Compiling CNIOBoringSSLShims shims.c
[68/849] Compiling tls_record.cc
[68/849] Compiling tls_method.cc
[70/849] Compiling tls13_enc.cc
[71/849] Compiling tls13_server.cc
[72/849] Compiling tls13_client.cc
[73/849] Compiling t1_enc.cc
[74/849] Compiling tls13_both.cc
[76/917] Emitting module _NIOBase64
[77/917] Emitting module SystemPackage
[78/920] Compiling ServiceContextModule ServiceContextKey.swift
[79/920] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[80/920] Compiling InternalCollectionsUtilities Specialize.swift
[81/922] Emitting module InternalCollectionsUtilities
[82/922] Compiling RealModule Real.swift
[83/922] Compiling SystemPackage Util+StringArray.swift
[84/922] Compiling SystemPackage Util.swift
[85/922] Compiling SystemPackage UtilConsumers.swift
[86/923] Emitting module RealModule
[87/923] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[88/923] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[89/923] Compiling InternalCollectionsUtilities UInt+reversed.swift
[90/923] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[91/923] Compiling RealModule ElementaryFunctions.swift
[92/923] Compiling RealModule Float+Real.swift
[93/923] Compiling InternalCollectionsUtilities Debugging.swift
[94/923] Compiling InternalCollectionsUtilities Descriptions.swift
[97/923] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[98/923] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[99/923] Compiling InternalCollectionsUtilities Integer rank.swift
[100/923] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[101/923] Compiling _NIOBase64 Base64.swift
[102/923] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[103/923] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[104/923] Compiling InternalCollectionsUtilities _SortedCollection.swift
[105/923] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[106/924] Compiling RealModule Float16+Real.swift
[107/924] Compiling RealModule Float80+Real.swift
[108/924] Compiling CoreMetrics Metrics.swift
[109/924] Emitting module ServiceContextModule
[110/924] Compiling ServiceContextModule ServiceContext.swift
[111/924] Compiling _NIODataStructures PriorityQueue.swift
[112/924] Compiling SystemPackage MachPort.swift
[113/924] Compiling SystemPackage PlatformString.swift
[114/924] Compiling SystemPackage SystemString.swift
[115/924] Compiling _NIODataStructures _TinyArray.swift
[118/925] Compiling RealModule RealFunctions.swift
[123/926] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[124/926] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[137/1001] Compiling _RopeModule BigString+Insert.swift
[138/1001] Compiling _RopeModule BigString+Managing Breaks.swift
[139/1001] Compiling _RopeModule BigString+RemoveSubrange.swift
[140/1001] Compiling _RopeModule BigString+ReplaceSubrange.swift
[141/1001] Emitting module Logging
[142/1001] Compiling Logging Locks.swift
[143/1001] Compiling Logging MetadataProvider.swift
[144/1001] Compiling _NIODataStructures Heap.swift
[145/1001] Emitting module _NIODataStructures
[146/1001] Compiling _RopeModule BigString+Comparable.swift
[147/1001] Compiling _RopeModule BigString+CustomDebugStringConvertible.swift
[148/1001] Compiling _RopeModule BigString+CustomStringConvertible.swift
[149/1001] Compiling _RopeModule BigString+Equatable.swift
[150/1001] Compiling _RopeModule BigString+Split.swift
[151/1001] Compiling _RopeModule Range+BigString.swift
[152/1001] Compiling _RopeModule BigString+UTF16View.swift
[153/1001] Compiling _RopeModule BigString+UTF8View.swift
[154/1003] Compiling Instrumentation Instrument.swift
[155/1003] Compiling Instrumentation InstrumentationSystem.swift
[156/1003] Emitting module Instrumentation
[157/1003] Emitting module CoreMetrics
[158/1003] Compiling CoreMetrics Locks.swift
[160/1004] Compiling Instrumentation NoOpInstrument.swift
[161/1004] Compiling Logging LogHandler.swift
[162/1004] Compiling Logging Logging.swift
[164/1005] Compiling Instrumentation MultiplexInstrument.swift
[166/1005] Compiling Instrumentation Locks.swift
[168/1064] Compiling ssl_versions.cc
[170/1083] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[171/1119] Compiling HeapModule Heap+Descriptions.swift
[172/1160] Compiling HeapModule _HeapNode.swift
[172/1160] Compiling ssl_x509.cc
[174/1160] Compiling HeapModule Heap.swift
[175/1160] Compiling HeapModule Heap+Invariants.swift
[176/1160] Compiling HeapModule Heap+UnsafeHandle.swift
[177/1160] Compiling Tracing TracingTime.swift
[178/1160] Emitting module HeapModule
[180/1176] Compiling HashTreeCollections TreeSet+Hashable.swift
[181/1176] Compiling HashTreeCollections TreeSet+Sendable.swift
[182/1176] Compiling HashTreeCollections TreeSet+Sequence.swift
[183/1176] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[184/1176] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[185/1176] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[186/1176] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[187/1176] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[188/1176] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[189/1176] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[190/1186] Compiling Tracing InstrumentationSystem+Tracing.swift
[191/1186] Compiling Tracing NoOpTracer.swift
[192/1186] Compiling Tracing TracerProtocol.swift
[193/1186] Compiling HashTreeCollections TreeDictionary+Collection.swift
[194/1186] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[195/1186] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[196/1186] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[197/1186] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[198/1186] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[199/1186] Compiling HashTreeCollections TreeDictionary+Filter.swift
[200/1186] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[201/1186] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[202/1186] Compiling HashTreeCollections TreeDictionary+Keys.swift
[203/1186] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[204/1186] Compiling HashTreeCollections TreeDictionary+Merge.swift
[205/1186] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[206/1186] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[207/1193] Emitting module Tracing
[208/1193] Compiling DequeModule Deque+Equatable.swift
[209/1193] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[210/1195] Compiling Tracing Tracer.swift
[211/1195] Compiling Tracing TracerProtocol+Legacy.swift
[212/1195] Compiling HashTreeCollections _HashNode+Structural union.swift
[213/1195] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[214/1195] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[215/1195] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[216/1195] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[217/1195] Compiling HashTreeCollections _HashNode.swift
[218/1195] Compiling HashTreeCollections _HashNodeHeader.swift
[219/1195] Compiling HashTreeCollections _HashSlot.swift
[220/1195] Compiling HashTreeCollections _HashStack.swift
[221/1195] Compiling HashTreeCollections _HashTreeIterator.swift
[222/1195] Compiling HashTreeCollections _HashTreeStatistics.swift
[223/1195] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[224/1195] Compiling HashTreeCollections _RawHashNode.swift
[225/1195] Compiling HashTreeCollections _UnmanagedHashNode.swift
[226/1195] Compiling HashTreeCollections _UnsafePath.swift
[227/1195] Compiling HashTreeCollections TreeDictionary+Codable.swift
[228/1195] Compiling DequeModule Deque+CustomReflectable.swift
[229/1195] Compiling DequeModule Deque+Descriptions.swift
[230/1195] Compiling Tracing SpanProtocol.swift
[231/1196] Compiling DequeModule Deque+Extras.swift
[232/1196] Compiling DequeModule Deque+Hashable.swift
[233/1196] Compiling DequeModule Deque._UnsafeHandle.swift
[234/1196] Compiling DequeModule Deque.swift
[235/1196] Compiling DequeModule _DequeBuffer.swift
[236/1196] Compiling DequeModule _DequeBufferHeader.swift
[237/1196] Compiling DequeModule _DequeSlot.swift
[238/1196] Compiling DequeModule _UnsafeWrappedBuffer.swift
[239/1196] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[240/1196] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[241/1196] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[242/1196] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[243/1196] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[244/1196] Compiling HashTreeCollections _HashNode+Structural merge.swift
[245/1196] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[246/1196] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[247/1196] Compiling DequeModule Deque+Testing.swift
[248/1196] Compiling DequeModule Deque._Storage.swift
[249/1196] Compiling OrderedCollections OrderedSet+SubSequence.swift
[250/1196] Compiling OrderedCollections OrderedSet+Testing.swift
[251/1196] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[252/1196] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[253/1196] Compiling OrderedCollections OrderedSet.swift
[254/1196] Compiling OrderedCollections _UnsafeBitset.swift
[255/1196] Compiling HashTreeCollections TreeSet+Equatable.swift
[256/1196] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[257/1196] Compiling HashTreeCollections TreeSet+Extras.swift
[258/1196] Compiling HashTreeCollections TreeSet+Filter.swift
[269/1196] Compiling OrderedCollections OrderedSet+Sendable.swift
[293/1205] Compiling _RopeModule _CharacterRecognizer.swift
[294/1205] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[295/1205] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[296/1205] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[297/1205] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[298/1205] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[299/1205] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[300/1205] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[301/1205] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[302/1205] Compiling HashTreeCollections TreeSet.swift
[309/1205] Compiling DequeModule Deque+Codable.swift
[310/1205] Compiling DequeModule Deque+Collection.swift
[326/1205] Compiling ssl_transcript.cc
[330/1205] Emitting module RoutingKit
[331/1205] Compiling RoutingKit PathComponent.swift
[354/1205] Emitting module DequeModule
[355/1206] Compiling RoutingKit Router.swift
[356/1206] Compiling RoutingKit TrieRouter.swift
[364/1206] Compiling ssl_stat.cc
[377/1206] Emitting module _RopeModule
[378/1206] Emitting module OrderedCollections
[378/1207] Compiling ssl_session.cc
[381/1207] Compiling _RopeModule Rope+Join.swift
[382/1207] Compiling _RopeModule Rope+MutatingForEach.swift
[383/1207] Compiling _RopeModule Rope+Remove.swift
[384/1207] Compiling _RopeModule Rope+RemoveSubrange.swift
[385/1207] Compiling _RopeModule Rope+Split.swift
[386/1207] Compiling _RopeModule Optional Utilities.swift
[387/1207] Compiling _RopeModule String Utilities.swift
[388/1207] Compiling _RopeModule String.Index+ABI.swift
[389/1207] Compiling ssl_privkey.cc
[440/1208] Compiling RoutingKit AnyRouter.swift
[441/1208] Compiling RoutingKit Parameters.swift
[443/1209] Emitting module Metrics
[444/1209] Compiling Metrics Metrics.swift
[445/1210] Compiling ssl_lib.cc
[446/1210] Compiling ssl_key_share.cc
[447/1210] Compiling ssl_file.cc
[448/1210] Compiling ssl_credential.cc
[449/1210] Compiling ssl_cipher.cc
[450/1210] Compiling ssl_buffer.cc
[452/1210] Emitting module HashTreeCollections
[452/1211] Compiling ssl_cert.cc
[454/1211] Compiling ssl_asn1.cc
[455/1211] Compiling s3_pkt.cc
[456/1211] Compiling ssl_aead_ctx.cc
[457/1211] Compiling s3_lib.cc
[458/1211] Compiling s3_both.cc
[459/1211] Compiling handshake_server.cc
[460/1211] Compiling handshake_client.cc
[461/1211] Compiling handshake.cc
[462/1211] Compiling handoff.cc
[463/1211] Compiling encrypted_client_hello.cc
[464/1211] Compiling dtls_record.cc
[465/1211] Compiling md5-x86_64-linux.S
[466/1211] Compiling md5-x86_64-apple.S
[467/1211] Compiling dtls_method.cc
[468/1211] Compiling extensions.cc
[469/1211] Compiling md5-586-linux.S
[470/1211] Compiling md5-586-apple.S
[471/1211] Compiling err_data.c
[472/1211] Compiling chacha20_poly1305_x86_64-apple.S
[473/1211] Compiling chacha20_poly1305_armv8-win.S
[474/1211] Compiling chacha20_poly1305_x86_64-linux.S
[475/1211] Compiling chacha20_poly1305_armv8-linux.S
[476/1211] Compiling chacha20_poly1305_armv8-apple.S
[477/1211] Compiling chacha-x86_64-linux.S
[478/1211] Compiling chacha-x86_64-apple.S
[479/1211] Compiling chacha-x86-linux.S
[480/1211] Compiling chacha-x86-apple.S
[481/1211] Compiling chacha-armv8-win.S
[482/1211] Compiling chacha-armv8-linux.S
[483/1211] Compiling chacha-armv8-apple.S
[484/1211] Compiling chacha-armv4-linux.S
[485/1211] Compiling aes128gcmsiv-x86_64-apple.S
[486/1211] Compiling aes128gcmsiv-x86_64-linux.S
[487/1211] Compiling x86_64-mont5-apple.S
[488/1211] Compiling x86_64-mont5-linux.S
[489/1211] Compiling x86_64-mont-linux.S
[490/1211] Compiling x86_64-mont-apple.S
[491/1211] Compiling x86-mont-linux.S
[492/1211] Compiling x86-mont-apple.S
[493/1211] Compiling vpaes-x86_64-apple.S
[494/1211] Compiling vpaes-x86-linux.S
[495/1211] Compiling vpaes-x86_64-linux.S
[496/1211] Compiling d1_pkt.cc
[497/1211] Compiling d1_srtp.cc
[498/1211] Compiling vpaes-x86-apple.S
[499/1211] Compiling vpaes-armv8-win.S
[500/1211] Compiling vpaes-armv8-linux.S
[501/1211] Compiling bio_ssl.cc
[502/1211] Compiling vpaes-armv8-apple.S
[503/1211] Compiling vpaes-armv7-linux.S
[504/1211] Compiling sha512-x86_64-apple.S
[505/1211] Compiling sha512-armv8-win.S
[506/1211] Compiling sha512-x86_64-linux.S
[507/1211] Compiling sha512-armv8-linux.S
[508/1211] Compiling d1_lib.cc
[509/1211] Compiling sha512-armv8-apple.S
[510/1211] Compiling sha512-armv4-linux.S
[511/1211] Compiling sha512-586-linux.S
[512/1211] Compiling sha512-586-apple.S
[513/1211] Compiling sha256-armv8-linux.S
[514/1211] Compiling sha256-x86_64-apple.S
[515/1211] Compiling sha256-x86_64-linux.S
[516/1211] Compiling sha256-armv8-win.S
[517/1211] Compiling sha256-armv8-apple.S
[518/1211] Compiling sha256-armv4-linux.S
[519/1211] Compiling sha256-586-linux.S
[520/1211] Compiling d1_both.cc
[521/1211] Compiling sha256-586-apple.S
[522/1211] Compiling sha1-x86_64-apple.S
[523/1211] Compiling sha1-armv8-win.S
[524/1211] Compiling sha1-armv8-linux.S
[525/1211] Compiling sha1-armv8-apple.S
[526/1211] Compiling sha1-x86_64-linux.S
[527/1211] Compiling sha1-armv4-large-linux.S
[528/1211] Compiling sha1-586-linux.S
[529/1211] Compiling sha1-586-apple.S
[530/1211] Compiling rsaz-avx2-linux.S
[531/1211] Compiling rsaz-avx2-apple.S
[532/1211] Compiling rdrand-x86_64-linux.S
[533/1211] Compiling rdrand-x86_64-apple.S
[534/1211] Compiling p256_beeu-x86_64-asm-linux.S
[535/1211] Compiling p256_beeu-x86_64-asm-apple.S
[536/1211] Compiling p256_beeu-armv8-asm-win.S
[537/1211] Compiling p256_beeu-armv8-asm-linux.S
[538/1211] Compiling p256_beeu-armv8-asm-apple.S
[539/1211] Compiling p256-armv8-asm-win.S
[540/1211] Compiling p256-armv8-asm-linux.S
[541/1211] Compiling p256-x86_64-asm-apple.S
[542/1211] Compiling p256-x86_64-asm-linux.S
[543/1211] Compiling ghashv8-armv8-win.S
[544/1211] Compiling p256-armv8-asm-apple.S
[545/1211] Compiling ghashv8-armv8-linux.S
[546/1211] Compiling ghashv8-armv8-apple.S
[547/1211] Compiling ghashv8-armv7-linux.S
[548/1211] Compiling ghash-x86_64-apple.S
[548/1211] Compiling ghash-x86_64-linux.S
[550/1211] Compiling ghash-x86-linux.S
[551/1211] Compiling ghash-x86-apple.S
[552/1211] Compiling ghash-ssse3-x86_64-linux.S
[553/1211] Compiling ghash-ssse3-x86_64-apple.S
[554/1211] Compiling ghash-ssse3-x86-linux.S
[555/1211] Compiling ghash-ssse3-x86-apple.S
[556/1211] Compiling ghash-neon-armv8-win.S
[557/1211] Compiling ghash-neon-armv8-linux.S
[558/1211] Compiling ghash-neon-armv8-apple.S
[559/1211] Compiling ghash-armv4-linux.S
[560/1211] Compiling co-586-linux.S
[561/1211] Compiling co-586-apple.S
[562/1211] Compiling bsaes-armv7-linux.S
[563/1211] Compiling bn-armv8-linux.S
[564/1211] Compiling bn-armv8-win.S
[565/1211] Compiling bn-586-linux.S
[566/1211] Compiling bn-armv8-apple.S
[567/1211] Compiling bn-586-apple.S
[568/1211] Compiling armv8-mont-win.S
[569/1211] Compiling armv8-mont-linux.S
[570/1211] Compiling armv8-mont-apple.S
[571/1211] Compiling armv4-mont-linux.S
[572/1211] Compiling aesv8-gcm-armv8-apple.S
[573/1211] Compiling aesv8-gcm-armv8-linux.S
[574/1211] Compiling aesv8-gcm-armv8-win.S
[575/1211] Compiling aesv8-armv8-win.S
[576/1211] Compiling aesv8-armv8-linux.S
[577/1211] Compiling aesv8-armv8-apple.S
[578/1211] Compiling aesv8-armv7-linux.S
[579/1211] Compiling aesni-x86_64-apple.S
[579/1211] Compiling aesni-x86-linux.S
[581/1211] Compiling aesni-x86-apple.S
[582/1211] Compiling aesni-x86_64-linux.S
[583/1211] Compiling aesni-gcm-x86_64-apple.S
[584/1211] Compiling aesni-gcm-x86_64-linux.S
[585/1211] Compiling x_sig.c
[586/1211] Compiling x_x509a.c
[587/1211] Compiling x_spki.c
[587/1211] Compiling x_val.c
[589/1211] Compiling x_x509.c
[590/1211] Compiling x_pubkey.c
[591/1211] Compiling x_req.c
[592/1211] Compiling x_name.c
[593/1211] Compiling x_exten.c
[594/1211] Compiling x509spki.c
[595/1211] Compiling x_algor.c
[596/1211] Compiling x_attrib.c
[597/1211] Compiling x_crl.c
[598/1211] Compiling x509rset.c
[599/1211] Compiling x_all.c
[600/1211] Compiling x509name.c
[601/1211] Compiling x509_txt.c
[601/1211] Compiling x509cset.c
[603/1211] Compiling x509_vpm.c
[604/1211] Compiling x509_v3.c
[605/1211] Compiling x509_trs.c
[606/1211] Compiling x509_vfy.c
[607/1211] Compiling x509_set.c
[608/1211] Compiling x509_req.c
[609/1211] Compiling x509_def.c
[610/1211] Compiling x509_d2.c
[610/1211] Compiling x509_obj.c
[612/1211] Compiling x509_ext.c
[612/1211] Compiling x509_lu.c
[614/1211] Compiling x509.c
[615/1211] Compiling x509_att.c
[616/1211] Compiling x509_cmp.c
[617/1211] Compiling v3_prn.c
[618/1211] Compiling v3_skey.c
[619/1211] Compiling v3_purp.c
[620/1211] Compiling v3_pmaps.c
[621/1211] Compiling v3_ocsp.c
[622/1211] Compiling v3_pcons.c
[623/1211] Compiling v3_utl.c
[624/1211] Compiling v3_ncons.c
[625/1211] Compiling v3_int.c
[626/1211] Compiling v3_lib.c
[627/1211] Compiling v3_ia5.c
[628/1211] Compiling v3_info.c
[629/1211] Compiling v3_genn.c
[629/1211] Compiling v3_extku.c
[631/1211] Compiling v3_enum.c
[632/1211] Compiling v3_crld.c
[633/1211] Compiling v3_cpols.c
[634/1211] Compiling v3_bitst.c
[635/1211] Compiling v3_conf.c
[636/1211] Compiling v3_bcons.c
[637/1211] Compiling v3_akeya.c
[638/1211] Compiling v3_akey.c
[639/1211] Compiling v3_alt.c
[640/1211] Compiling t_x509a.c
[641/1211] Compiling i2d_pr.c
[642/1211] Compiling t_crl.c
[643/1211] Compiling t_x509.c
[644/1211] Compiling t_req.c
[645/1211] Compiling name_print.c
[646/1211] Compiling rsa_pss.c
[647/1211] Compiling policy.c
[648/1211] Compiling by_file.c
[649/1211] Compiling by_dir.c
[650/1211] Compiling algorithm.c
[651/1211] Compiling a_verify.c
[652/1211] Compiling asn1_gen.c
[653/1211] Compiling a_digest.c
[654/1211] Compiling a_sign.c
[655/1211] Compiling voprf.c
[656/1211] Compiling thread.c
[656/1211] Compiling thread_win.c
[658/1211] Compiling trust_token.c
[659/1211] Compiling thread_none.c
[660/1211] Compiling thread_pthread.c
[661/1211] Compiling spx_wots.c
[662/1211] Compiling spx_util.c
[663/1211] Compiling spx_thash.c
[664/1211] Compiling spx_merkle.c
[664/1211] Compiling spx_fors.c
[666/1211] Compiling stack.c
[667/1211] Compiling pmbtoken.c
[668/1211] Compiling spx.c
[669/1211] Compiling spx_address.c
[670/1211] Compiling wots.c
[671/1211] Compiling thash.c
[672/1211] Compiling sha512.c
[672/1211] Compiling fors.c
[674/1211] Compiling merkle.c
[675/1211] Compiling sha1.c
[676/1211] Compiling slhdsa.c
[677/1211] Compiling sha256.c
[677/1211] Compiling siphash.c
[679/1211] Compiling rsa_extra.c
[680/1211] Compiling rc4.c
[681/1211] Compiling rsa_print.c
[682/1211] Compiling refcount.c
[683/1211] Compiling trusty.c
[684/1211] Compiling windows.c
[685/1211] Compiling urandom.c
[686/1211] Compiling rand_extra.c
[686/1211] Compiling rsa_asn1.c
[688/1211] Compiling ios.c
[689/1211] Compiling rsa_crypt.c
[690/1211] Compiling passive.c
[690/1211] Compiling getentropy.c
[692/1211] Compiling deterministic.c
[693/1211] Compiling poly1305_arm_asm.S
[694/1211] Compiling forkunsafe.c
[695/1211] Compiling fork_detect.c
[695/1211] Compiling poly1305_arm.c
[697/1211] Compiling pool.c
[697/1211] Compiling poly1305.c
[699/1211] Compiling pkcs7.c
[700/1211] Compiling poly1305_vec.c
[701/1211] Compiling pkcs8.c
[702/1211] Compiling p5_pbev2.c
[703/1211] Compiling pem_xaux.c
[704/1211] Compiling pem_x509.c
[705/1211] Compiling pkcs8_x509.c
[706/1211] Compiling pkcs7_x509.c
[707/1211] Compiling pem_pkey.c
[708/1211] Compiling obj_xref.c
[709/1211] Compiling pem_pk8.c
[710/1211] Compiling pem_oth.c
[711/1211] Compiling pem_info.c
[712/1211] Compiling mem.c
[713/1211] Compiling pem_lib.c
[714/1211] Compiling obj.c
[715/1211] Compiling pem_all.c
[716/1211] Compiling md5.c
[717/1211] Compiling mldsa.c
[718/1211] Compiling md4.c
[719/1211] Compiling lhash.c
[720/1211] Compiling fips_shared_support.c
[721/1211] Compiling poly_rq_mul.S
[722/1211] Compiling keccak.c
[723/1211] Compiling kyber.c
[724/1211] Compiling hpke.c
[725/1211] Compiling sign.c
[726/1211] Compiling ex_data.c
[727/1211] Compiling scrypt.c
[728/1211] Compiling mlkem.cc
[729/1211] Compiling p_x25519.c
[730/1211] Compiling pbkdf.c
[730/1211] Compiling hrss.c
[730/1211] Compiling print.c
[733/1211] Compiling p_x25519_asn1.c
[734/1211] Compiling p_rsa_asn1.c
[735/1211] Compiling p_ed25519.c
[736/1211] Compiling p_hkdf.c
[737/1211] Compiling p_ec_asn1.c
[738/1211] Compiling p_ed25519_asn1.c
[739/1211] Compiling p_rsa.c
[740/1211] Compiling p_ec.c
[741/1211] Compiling p_dh.c
[742/1211] Compiling p_dsa_asn1.c
[743/1211] Compiling p_dh_asn1.c
[744/1211] Compiling evp_ctx.c
[745/1211] Compiling evp_asn1.c
[746/1211] Compiling evp.c
[747/1211] Compiling engine.c
[748/1211] Compiling err.c
[749/1211] Compiling ecdh_extra.c
[750/1211] Compiling ecdsa_asn1.c
[751/1211] Compiling ec_derive.c
[752/1211] Compiling hash_to_curve.c
[753/1211] Compiling dsa_asn1.c
[754/1211] Compiling ec_asn1.c
[755/1211] Compiling dsa.c
[756/1211] Compiling digest_extra.c
[757/1211] Compiling params.c
[758/1211] Compiling dh_asn1.c
[759/1211] Compiling dilithium.c
[760/1211] Compiling x25519-asm-arm.S
[760/1211] Compiling spake25519.c
[762/1211] Compiling des.c
[763/1211] Compiling crypto.c
[764/1211] Compiling cpu_intel.c
[765/1211] Compiling cpu_arm_linux.c
[765/1211] Compiling cpu_arm_freebsd.c
[767/1211] Compiling cpu_aarch64_openbsd.c
[768/1211] Compiling cpu_aarch64_sysreg.c
[769/1211] Compiling cpu_aarch64_win.c
[770/1211] Compiling cpu_aarch64_linux.c
[771/1211] Compiling cpu_aarch64_fuchsia.c
[772/1211] Compiling cpu_aarch64_apple.c
[773/1211] Compiling tls_cbc.c
[774/1211] Compiling e_rc4.c
[774/1211] Compiling curve25519.c
[776/1211] Compiling conf.c
[777/1211] Compiling e_tls.c
[778/1211] Compiling e_rc2.c
[779/1211] Compiling e_null.c
[780/1211] Compiling e_des.c
[781/1211] Compiling e_chacha20poly1305.c
[782/1211] Compiling derive_key.c
[783/1211] Compiling e_aesgcmsiv.c
[784/1211] Compiling e_aesctrhmac.c
[785/1211] Compiling unicode.c
[786/1211] Compiling cipher_extra.c
[787/1211] Compiling curve25519_64_adx.c
[788/1211] Compiling chacha.c
[789/1211] Compiling ber.c
[790/1211] Compiling asn1_compat.c
[791/1211] Compiling cbb.c
[792/1211] Compiling buf.c
[793/1211] Compiling bn_asn1.c
[794/1211] Compiling cbs.c
[795/1211] Compiling blake2.c
[796/1211] Compiling convert.c
[797/1211] Compiling printf.c
[798/1211] Compiling socket.c
[799/1211] Compiling socket_helper.c
[800/1211] Compiling pair.c
[801/1211] Compiling hexdump.c
[802/1211] Compiling file.c
[803/1211] Compiling errno.c
[804/1211] Compiling fd.c
[805/1211] Compiling bio_mem.c
[806/1211] Compiling connect.c
[807/1211] Compiling base64.c
[808/1211] Compiling tasn_typ.c
[809/1211] Compiling bio.c
[810/1211] Compiling tasn_utl.c
[811/1211] Compiling tasn_new.c
[812/1211] Compiling tasn_fre.c
[813/1211] Compiling f_string.c
[813/1211] Compiling tasn_enc.c
[815/1211] Compiling f_int.c
[816/1211] Compiling tasn_dec.c
[817/1211] Compiling asn_pack.c
[818/1211] Compiling posix_time.c
[819/1211] Compiling asn1_par.c
[820/1211] Compiling a_utctm.c
[821/1211] Compiling a_type.c
[821/1211] Compiling asn1_lib.c
[823/1211] Compiling a_time.c
[823/1211] Compiling a_octet.c
[825/1211] Compiling a_strnid.c
[826/1211] Compiling a_strex.c
[827/1211] Compiling a_i2d_fp.c
[828/1211] Compiling a_mbstr.c
[829/1211] Compiling a_dup.c
[830/1211] Compiling a_gentm.c
[831/1211] Compiling a_object.c
[832/1211] Compiling a_d2i_fp.c
[832/1211] Compiling a_int.c
[834/1211] Compiling fiat_p256_adx_sqr.S
[835/1211] Compiling fiat_p256_adx_mul.S
[836/1211] Compiling a_bool.c
[837/1211] Compiling a_bitstr.c
[838/1211] Compiling fiat_curve25519_adx_square.S
[839/1211] Compiling fiat_curve25519_adx_mul.S
[840/1211] Compiling md5-x86_64-linux.S
[841/1211] Compiling md5-x86_64-apple.S
[842/1211] Compiling md5-586-linux.S
[843/1211] Compiling md5-586-apple.S
[844/1211] Compiling err_data.c
[845/1211] Compiling chacha20_poly1305_x86_64-apple.S
[846/1211] Compiling chacha20_poly1305_armv8-win.S
[847/1211] Compiling chacha20_poly1305_armv8-linux.S
[848/1211] Compiling chacha20_poly1305_armv8-apple.S
[849/1211] Compiling chacha20_poly1305_x86_64-linux.S
[850/1211] Compiling chacha-x86_64-apple.S
[851/1211] Compiling chacha-x86_64-linux.S
[852/1211] Compiling bcm.c
[853/1211] Compiling chacha-x86-linux.S
[854/1211] Compiling chacha-x86-apple.S
[855/1211] Compiling chacha-armv8-win.S
[856/1211] Compiling chacha-armv8-linux.S
[857/1211] Compiling chacha-armv8-apple.S
[858/1211] Compiling chacha-armv4-linux.S
[859/1211] Compiling CCryptoBoringSSLShims shims.c
[860/1211] Compiling aes128gcmsiv-x86_64-linux.S
[861/1211] Compiling aes128gcmsiv-x86_64-apple.S
[862/1211] Compiling x86_64-mont5-apple.S
[863/1211] Compiling x86_64-mont5-linux.S
[864/1211] Compiling x86_64-mont-linux.S
[865/1211] Compiling x86_64-mont-apple.S
[866/1211] Compiling x86-mont-linux.S
[867/1211] Compiling x86-mont-apple.S
[868/1211] Compiling vpaes-x86_64-linux.S
[869/1211] Compiling vpaes-x86_64-apple.S
[870/1211] Compiling vpaes-x86-apple.S
[871/1211] Compiling vpaes-x86-linux.S
[872/1211] Compiling vpaes-armv8-win.S
[873/1211] Compiling vpaes-armv8-linux.S
[874/1211] Compiling vpaes-armv8-apple.S
[875/1211] Compiling vpaes-armv7-linux.S
[876/1211] Compiling sha512-x86_64-apple.S
[877/1211] Compiling sha512-x86_64-linux.S
[878/1211] Compiling sha512-armv8-linux.S
[879/1211] Compiling sha512-armv8-win.S
[880/1211] Compiling sha512-armv8-apple.S
[881/1211] Compiling sha512-armv4-linux.S
[882/1211] Compiling sha512-586-linux.S
[883/1211] Compiling sha512-586-apple.S
[884/1211] Compiling sha256-x86_64-apple.S
[885/1211] Compiling sha256-x86_64-linux.S
[886/1211] Compiling sha256-armv8-win.S
[887/1211] Compiling sha256-armv8-linux.S
[887/1211] Compiling sha256-armv8-apple.S
[889/1211] Compiling sha256-armv4-linux.S
[890/1211] Compiling sha256-586-linux.S
[891/1211] Compiling sha256-586-apple.S
[892/1211] Compiling sha1-armv8-win.S
[893/1211] Compiling sha1-x86_64-apple.S
[894/1211] Compiling sha1-armv8-linux.S
[895/1211] Compiling sha1-x86_64-linux.S
[896/1211] Compiling sha1-armv8-apple.S
[897/1211] Compiling sha1-armv4-large-linux.S
[898/1211] Compiling sha1-586-linux.S
[899/1211] Compiling sha1-586-apple.S
[900/1211] Compiling rsaz-avx2-apple.S
[901/1211] Compiling rsaz-avx2-linux.S
[902/1211] Compiling rdrand-x86_64-apple.S
[903/1211] Compiling rdrand-x86_64-linux.S
[904/1211] Compiling p256_beeu-x86_64-asm-apple.S
[905/1211] Compiling p256_beeu-x86_64-asm-linux.S
[906/1211] Compiling p256_beeu-armv8-asm-win.S
[907/1211] Compiling p256_beeu-armv8-asm-linux.S
[908/1211] Compiling p256_beeu-armv8-asm-apple.S
[909/1211] Compiling p256-x86_64-asm-apple.S
[910/1211] Compiling p256-x86_64-asm-linux.S
[911/1211] Compiling p256-armv8-asm-win.S
[912/1211] Compiling p256-armv8-asm-linux.S
[913/1211] Compiling p256-armv8-asm-apple.S
[914/1211] Compiling ghashv8-armv8-win.S
[915/1211] Compiling ghashv8-armv8-apple.S
[916/1211] Compiling ghashv8-armv8-linux.S
[917/1211] Compiling ghashv8-armv7-linux.S
[918/1211] Compiling ghash-x86_64-apple.S
[919/1211] Compiling ghash-x86_64-linux.S
[920/1211] Compiling ghash-x86-linux.S
[921/1211] Compiling ghash-ssse3-x86_64-apple.S
[922/1211] Compiling ghash-ssse3-x86_64-linux.S
[923/1211] Compiling ghash-x86-apple.S
[924/1211] Compiling ghash-ssse3-x86-linux.S
[925/1211] Compiling ghash-ssse3-x86-apple.S
[926/1211] Compiling ghash-neon-armv8-win.S
[927/1211] Compiling ghash-neon-armv8-linux.S
[928/1211] Compiling ghash-neon-armv8-apple.S
[929/1211] Compiling ghash-armv4-linux.S
[930/1211] Compiling co-586-linux.S
[931/1211] Compiling co-586-apple.S
[932/1211] Compiling bsaes-armv7-linux.S
[933/1211] Compiling bn-armv8-win.S
[934/1211] Compiling bn-armv8-linux.S
[935/1211] Compiling bn-586-linux.S
[936/1211] Compiling bn-armv8-apple.S
[937/1211] Compiling bn-586-apple.S
[938/1211] Compiling armv8-mont-win.S
[939/1211] Compiling armv8-mont-linux.S
[940/1211] Compiling armv8-mont-apple.S
[941/1211] Compiling aesv8-gcm-armv8-win.S
[942/1211] Compiling armv4-mont-linux.S
[943/1211] Compiling aesv8-gcm-armv8-linux.S
[944/1211] Compiling aesv8-gcm-armv8-apple.S
[945/1211] Compiling aesv8-armv8-linux.S
[946/1211] Compiling aesv8-armv8-win.S
[947/1211] Compiling aesv8-armv8-apple.S
[948/1211] Compiling aesv8-armv7-linux.S
[949/1211] Compiling aesni-x86_64-linux.S
[950/1211] Compiling aesni-x86_64-apple.S
[951/1211] Compiling aesni-x86-linux.S
[952/1211] Compiling aesni-x86-apple.S
[953/1211] Compiling aesni-gcm-x86_64-linux.S
[954/1211] Compiling aesni-gcm-x86_64-apple.S
[955/1211] Compiling x_val.c
[956/1211] Compiling x_sig.c
[957/1211] Compiling x_x509a.c
[958/1211] Compiling x_spki.c
[958/1211] Compiling x_req.c
[960/1211] Compiling x_x509.c
[961/1211] Compiling x_pubkey.c
[962/1211] Compiling x_attrib.c
[963/1211] Compiling x_exten.c
[964/1211] Compiling x_name.c
[965/1211] Compiling x_crl.c
[966/1211] Compiling x_all.c
[967/1211] Compiling x_algor.c
[968/1211] Compiling x509spki.c
[969/1211] Compiling x509rset.c
[970/1211] Compiling x509cset.c
[971/1211] Compiling x509name.c
[972/1211] Compiling x509_vpm.c
[973/1211] Compiling x509_v3.c
[974/1211] Compiling x509_txt.c
[975/1211] Compiling x509_vfy.c
[976/1211] Compiling x509_trs.c
[977/1211] Compiling x509_set.c
[978/1211] Compiling x509_req.c
[979/1211] Compiling x509_obj.c
[980/1211] Compiling x509_ext.c
[981/1211] Compiling x509_def.c
[982/1211] Compiling x509_lu.c
[983/1211] Compiling x509_d2.c
[984/1211] Compiling c-nioatomics.c
[985/1211] Compiling x509_cmp.c
[986/1211] Compiling x509_att.c
[987/1211] Compiling x509.c
[988/1211] Compiling v3_skey.c
[989/1211] Compiling v3_purp.c
[990/1211] Compiling v3_utl.c
[991/1211] Compiling v3_prn.c
[992/1211] Compiling v3_pcons.c
[993/1211] Compiling v3_ocsp.c
[993/1211] Compiling v3_pmaps.c
[995/1211] Compiling v3_ncons.c
[996/1211] Compiling v3_int.c
[997/1211] Compiling v3_lib.c
[998/1211] Compiling c-atomics.c
[999/1211] Compiling v3_info.c
[999/1211] Compiling v3_ia5.c
[1001/1211] Compiling v3_genn.c
[1001/1211] Compiling v3_extku.c
[1003/1211] Compiling v3_enum.c
[1004/1211] Compiling v3_bcons.c
[1005/1211] Compiling v3_crld.c
[1006/1211] Compiling v3_bitst.c
[1007/1211] Compiling v3_cpols.c
[1008/1211] Compiling v3_conf.c
[1009/1211] Compiling v3_alt.c
[1010/1217] Compiling v3_akeya.c
[1011/1217] Compiling t_x509a.c
[1012/1217] Compiling t_x509.c
[1013/1217] Compiling t_crl.c
[1014/1217] Compiling t_req.c
[1015/1217] Compiling v3_akey.c
[1016/1217] Compiling rsa_pss.c
[1017/1217] Compiling i2d_pr.c
[1018/1217] Compiling by_file.c
[1019/1217] Compiling name_print.c
[1020/1217] Compiling a_verify.c
[1020/1217] Compiling policy.c
[1022/1217] Compiling by_dir.c
[1023/1217] Compiling algorithm.c
[1025/1217] Compiling NIOConcurrencyHelpers NIOLock.swift
[1025/1217] Compiling asn1_gen.c
[1026/1217] Compiling thread_win.c
[1027/1217] Compiling a_digest.c
[1028/1217] Compiling a_sign.c
[1029/1217] Compiling voprf.c
[1030/1217] Compiling thread.c
[1031/1217] Compiling thread_none.c
[1033/1217] Compiling NIOConcurrencyHelpers lock.swift
[1033/1217] Compiling thread_pthread.c
[1033/1217] Compiling trust_token.c
[1035/1217] Compiling spx_wots.c
[1036/1217] Compiling stack.c
[1037/1217] Compiling pmbtoken.c
[1038/1217] Compiling spx_util.c
[1039/1217] Compiling spx_thash.c
[1040/1217] Compiling spx_fors.c
[1041/1217] Compiling spx_address.c
[1042/1217] Compiling spx_merkle.c
[1043/1217] Compiling spx.c
[1044/1217] Compiling wots.c
[1045/1217] Compiling thash.c
[1046/1217] Compiling slhdsa.c
[1047/1217] Compiling fors.c
[1048/1217] Compiling merkle.c
[1049/1217] Compiling sha256.c
[1050/1217] Compiling siphash.c
[1051/1217] Compiling sha512.c
[1052/1217] Compiling sha1.c
[1054/1217] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[1055/1217] Emitting module NIOConcurrencyHelpers
[1055/1217] Compiling rsa_print.c
[1057/1217] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[1058/1217] Compiling NIOConcurrencyHelpers atomics.swift
[1058/1217] Compiling rc4.c
[1059/1218] Compiling rsa_extra.c
[1060/1218] Compiling refcount.c
[1061/1218] Compiling windows.c
[1062/1218] Compiling trusty.c
[1063/1218] Compiling rsa_asn1.c
[1064/1218] Compiling rsa_crypt.c
[1065/1218] Compiling rand_extra.c
[1067/1218] Compiling getentropy.c
[1067/1218] Compiling ios.c
[1068/1218] Compiling urandom.c
[1070/1218] Compiling deterministic.c
[1071/1218] Compiling passive.c
[1072/1218] Compiling forkunsafe.c
[1073/1218] Compiling fork_detect.c
[1074/1218] Compiling poly1305_arm_asm.S
[1075/1218] Compiling poly1305_arm.c
[1076/1218] Compiling poly1305.c
[1077/1218] Compiling pool.c
[1078/1218] Compiling pkcs7.c
[1079/1218] Compiling poly1305_vec.c
[1080/1218] Compiling pkcs8.c
[1081/1218] Compiling p5_pbev2.c
[1082/1218] Compiling pkcs7_x509.c
[1083/1218] Compiling pkcs8_x509.c
[1084/1218] Compiling pem_xaux.c
[1085/1218] Compiling pem_x509.c
[1086/1235] Compiling pem_pkey.c
[1087/1244] Compiling pem_oth.c
[1088/1244] Compiling pem_pk8.c
[1089/1244] Compiling obj_xref.c
[1090/1244] Compiling pem_lib.c
[1091/1244] Compiling pem_info.c
[1092/1244] Compiling pem_all.c
[1093/1244] Compiling lhash.c
[1093/1244] Compiling md4.c
[1095/1244] Compiling md5.c
[1095/1244] Compiling mem.c
[1097/1244] Compiling mldsa.c
[1098/1244] Compiling kyber.c
[1099/1244] Compiling fips_shared_support.c
[1100/1244] Compiling keccak.c
[1101/1244] Compiling obj.c
[1102/1244] Compiling ex_data.c
[1103/1244] Compiling sign.c
[1104/1244] Compiling poly_rq_mul.S
[1105/1244] Compiling hrss.c
[1106/1244] Compiling scrypt.c
[1107/1244] Compiling print.c
[1108/1244] Compiling pbkdf.c
[1108/1244] Compiling hpke.c
[1110/1244] Compiling p_x25519.c
[1111/1244] Compiling p_x25519_asn1.c
[1112/1244] Compiling p_rsa_asn1.c
[1114/1244] Compiling ConsoleKitTerminal ActivityBar.swift
[1115/1244] Compiling ConsoleKitTerminal ActivityIndicator.swift
[1116/1244] Compiling ConsoleKitTerminal ActivityIndicatorRenderer.swift
[1117/1244] Compiling ConsoleKitTerminal ActivityIndicatorState.swift
[1118/1247] Compiling ConsoleKitTerminal CustomActivity.swift
[1119/1247] Compiling ConsoleKitTerminal LoadingBar.swift
[1120/1247] Compiling ConsoleKitTerminal ProgressBar.swift
[1121/1247] Compiling ConsoleKitTerminal Console+Clear.swift
[1121/1247] Compiling p_ec_asn1.c
[1122/1247] Compiling p_hkdf.c
[1123/1247] Compiling p_rsa.c
[1124/1247] Compiling p_ed25519_asn1.c
[1125/1247] Compiling p_ed25519.c
[1127/1247] Compiling ConsoleKitTerminal Console+Ephemeral.swift
[1128/1247] Compiling ConsoleKitTerminal ConsoleClear.swift
[1129/1247] Compiling ConsoleKitTerminal Console+Ask.swift
[1130/1247] Compiling ConsoleKitTerminal Console+Choose.swift
[1131/1247] Compiling ConsoleKitTerminal ConsoleText.swift
[1132/1247] Compiling ConsoleKitTerminal ConsoleTextFragment.swift
[1133/1247] Compiling ConsoleKitTerminal ANSI.swift
[1134/1247] Compiling ConsoleKitTerminal Console+Confirm.swift
[1135/1247] Compiling ConsoleKitTerminal Console+Input.swift
[1136/1247] Compiling ConsoleKitTerminal Console+Center.swift
[1137/1247] Compiling ConsoleKitTerminal Console+Output.swift
[1138/1247] Compiling ConsoleKitTerminal Console+Wait.swift
[1139/1247] Compiling ConsoleKitTerminal ConsoleColor.swift
[1140/1247] Compiling ConsoleKitTerminal ConsoleStyle.swift
[1141/1247] Compiling ConsoleKitTerminal Console.swift
[1142/1247] Compiling ConsoleKitTerminal Terminal.swift
[1143/1247] Compiling ConsoleKitTerminal readpassphrase_linux.swift
[1144/1247] Emitting module ConsoleKitTerminal
[1144/1247] Compiling p_dsa_asn1.c
[1145/1247] Compiling p_dh.c
[1146/1247] Compiling p_dh_asn1.c
[1146/1247] Compiling p_ec.c
[1148/1247] Compiling evp_asn1.c
[1149/1247] Compiling evp_ctx.c
[1150/1247] Compiling evp.c
[1151/1247] Compiling engine.c
[1152/1247] Compiling err.c
[1153/1247] Compiling ecdh_extra.c
[1154/1247] Compiling ecdsa_asn1.c
[1155/1247] Compiling hash_to_curve.c
[1156/1247] Compiling ec_derive.c
[1157/1247] Compiling dsa_asn1.c
[1158/1247] Compiling ec_asn1.c
[1159/1247] Compiling dsa.c
[1160/1247] Compiling dilithium.c
[1161/1247] Compiling params.c
[1161/1247] Compiling digest_extra.c
[1163/1247] Compiling dh_asn1.c
[1164/1247] Compiling x25519-asm-arm.S
[1165/1247] Compiling spake25519.c
[1166/1247] Compiling crypto.c
[1167/1247] Compiling des.c
[1168/1247] Compiling cpu_intel.c
[1169/1247] Compiling cpu_arm_linux.c
[1170/1247] Compiling cpu_arm_freebsd.c
[1171/1247] Compiling cpu_aarch64_win.c
[1172/1247] Compiling cpu_aarch64_openbsd.c
[1172/1247] Compiling cpu_aarch64_sysreg.c
[1174/1247] Compiling cpu_aarch64_linux.c
[1175/1247] Compiling cpu_aarch64_fuchsia.c
[1176/1247] Compiling cpu_aarch64_apple.c
[1177/1247] Compiling curve25519.c
[1178/1247] Compiling conf.c
[1179/1247] Compiling e_rc4.c
[1180/1247] Compiling tls_cbc.c
[1181/1247] Compiling e_tls.c
[1182/1247] Compiling e_rc2.c
[1183/1247] Compiling e_null.c
[1184/1247] Compiling e_des.c
[1185/1247] Compiling e_chacha20poly1305.c
[1186/1247] Compiling curve25519_64_adx.c
[1187/1247] Compiling derive_key.c
[1188/1247] Compiling e_aesgcmsiv.c
[1189/1247] Compiling e_aesctrhmac.c
[1190/1247] Compiling cipher_extra.c
[1191/1247] Compiling unicode.c
[1192/1247] Compiling chacha.c
[1193/1247] Compiling ber.c
[1195/1247] Compiling ConsoleKitTerminal AnySendableHashable.swift
[1196/1247] Compiling ConsoleKitTerminal ConsoleLogger.swift
[1197/1247] Compiling ConsoleKitTerminal LoggerFragment.swift
[1197/1248] Compiling asn1_compat.c
[1198/1248] Compiling cbb.c
[1199/1248] Compiling buf.c
[1200/1248] Compiling bn_asn1.c
[1200/1248] Compiling cbs.c
[1202/1248] Compiling convert.c
[1204/1248] Compiling printf.c
[1205/1248] Compiling blake2.c
[1206/1248] Compiling pair.c
[1207/1248] Compiling errno.c
[1208/1248] Compiling hexdump.c
[1209/1248] Compiling file.c
[1210/1248] Compiling fd.c
[1211/1248] Compiling bio_mem.c
[1212/1248] Compiling base64.c
[1213/1248] Compiling tasn_utl.c
[1214/1248] Compiling bio.c
[1215/1248] Compiling tasn_typ.c
[1216/1248] Compiling tasn_new.c
[1217/1248] Compiling tasn_fre.c
[1218/1248] Compiling tasn_enc.c
[1219/1248] Compiling f_string.c
[1220/1248] Compiling asn_pack.c
[1221/1248] Compiling posix_time.c
[1221/1248] Compiling f_int.c
[1223/1252] Compiling tasn_dec.c
[1224/1261] Compiling asn1_par.c
[1225/1270] Compiling a_utctm.c
[1226/1270] Compiling a_time.c
[1226/1270] Compiling a_type.c
[1226/1270] Compiling asn1_lib.c
[1229/1270] Compiling a_octet.c
[1230/1270] Compiling a_strex.c
[1231/1270] Compiling a_strnid.c
[1232/1270] Compiling a_i2d_fp.c
[1233/1270] Compiling bcm.c
[1234/1270] Compiling a_int.c
[1235/1270] Compiling a_mbstr.c
[1236/1270] Compiling a_object.c
[1237/1270] Write sources
[1239/1270] Compiling a_dup.c
[1240/1270] Compiling CAsyncHTTPClient CAsyncHTTPClient.c
[1241/1270] Write sources
[1244/1270] Compiling a_bool.c
[1244/1270] Compiling a_d2i_fp.c
[1246/1270] Compiling a_gentm.c
[1247/1270] Compiling a_bitstr.c
[1249/1270] Compiling ConsoleKitCommands CommandSignature.swift
[1250/1270] Compiling ConsoleKitCommands Flag.swift
[1251/1270] Compiling ConsoleKitCommands Option.swift
[1252/1272] Compiling ConsoleKitCommands GenerateAutocompleteCommand.swift
[1253/1272] Compiling ConsoleKitCommands MergedAsyncCommandGroup.swift
[1254/1272] Compiling ConsoleKitCommands Argument.swift
[1255/1360] Compiling Algorithms AdjacentPairs.swift
[1256/1360] Compiling Algorithms Chain.swift
[1257/1360] Compiling Algorithms Chunked.swift
[1258/1360] Emitting module ConsoleKitCommands
[1259/1360] Compiling Algorithms Combinations.swift
[1260/1360] Compiling Algorithms FlattenCollection.swift
[1261/1361] Compiling Algorithms Grouped.swift
[1262/1361] Compiling Algorithms Indexed.swift
[1263/1361] Compiling Algorithms Intersperse.swift
[1264/1361] Compiling Algorithms Compacted.swift
[1265/1377] Compiling Algorithms Split.swift
[1266/1377] Compiling Algorithms Stride.swift
[1267/1377] Compiling Algorithms Cycle.swift
[1268/1377] Compiling Algorithms EitherSequence.swift
[1269/1377] Compiling Algorithms MinMax.swift
[1270/1377] Compiling Algorithms Partition.swift
[1271/1379] Compiling Algorithms Permutations.swift
[1272/1379] Compiling Algorithms Product.swift
[1276/1379] Compiling BitCollections BitSet+CustomDebugStringConvertible.swift
[1277/1379] Compiling BitCollections BitSet+CustomReflectable.swift
[1278/1379] Compiling BitCollections BitSet+CustomStringConvertible.swift
[1279/1379] Compiling BitCollections BitSet+Equatable.swift
[1280/1379] Compiling BitCollections BitSet+ExpressibleByArrayLiteral.swift
[1281/1379] Compiling BitCollections BitSet+Extras.swift
[1282/1379] Compiling BitCollections BitSet+Hashable.swift
[1283/1379] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[1284/1379] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[1285/1379] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[1286/1379] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[1287/1379] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[1288/1379] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[1289/1379] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[1290/1386] Compiling Atomics IntegerOperations.swift
[1291/1386] Compiling Atomics Unmanaged extensions.swift
[1292/1386] Compiling BitCollections BitSet+Initializers.swift
[1293/1386] Compiling BitCollections BitSet+Invariants.swift
[1294/1386] Compiling BitCollections BitSet+Random.swift
[1295/1386] Compiling BitCollections BitSet+SetAlgebra basics.swift
[1296/1386] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[1297/1386] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[1298/1386] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[1299/1386] Compiling Algorithms FirstNonNil.swift
[1300/1386] Compiling Algorithms Joined.swift
[1301/1386] Compiling Algorithms Keyed.swift
[1305/1386] Compiling CryptoBoringWrapper RandomBytes.swift
[1306/1386] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[1307/1386] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[1308/1386] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[1309/1386] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[1310/1386] Compiling BitCollections BitSet+SetAlgebra union.swift
[1311/1386] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[1312/1386] Compiling BitCollections BitSet.Counted.swift
[1313/1386] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[1314/1386] Compiling CryptoBoringWrapper EllipticCurve.swift
[1315/1386] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[1322/1387] Emitting module CryptoBoringWrapper
[1323/1387] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[1326/1387] Compiling Algorithms Rotate.swift
[1330/1387] Compiling Algorithms Suffix.swift
[1331/1390] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[1332/1390] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[1352/1391] Emitting module BitCollections
[1361/1391] Compiling BitCollections BitSet.Index.swift
[1362/1391] Compiling BitCollections BitSet._UnsafeHandle.swift
[1363/1391] Compiling BitCollections BitSet.swift
[1364/1391] Compiling BitCollections Range+Utilities.swift
[1365/1391] Compiling BitCollections Slice+Utilities.swift
[1366/1391] Compiling BitCollections UInt+Tricks.swift
[1367/1391] Compiling BitCollections _Word.swift
[1381/1394] Compiling ConsoleKit Exports.swift
[1382/1394] Emitting module ConsoleKit
[1384/1466] Compiling Crypto ASN1Strings.swift
[1385/1466] Compiling Crypto ArraySliceBigint.swift
[1386/1466] Compiling Crypto GeneralizedTime.swift
[1387/1468] Compiling Collections Collections.swift
[1388/1468] Compiling Crypto AES-GCM.swift
[1389/1468] Compiling Crypto AES-GCM_boring.swift
[1390/1468] Compiling Crypto ChaChaPoly_boring.swift
[1391/1468] Compiling Crypto ChaChaPoly.swift
[1392/1468] Emitting module Collections
[1394/1469] Emitting module Atomics
[1396/1469] Compiling Crypto Cipher.swift
[1397/1469] Compiling Crypto Nonces.swift
[1399/1470] Compiling Crypto SymmetricKeys.swift
[1400/1470] Compiling Crypto HMAC.swift
[1401/1470] Compiling Crypto MACFunctions.swift
[1402/1470] Compiling Crypto MessageAuthenticationCode.swift
[1403/1470] Compiling Crypto AES.swift
[1404/1470] Compiling Crypto ECDSASignature_boring.swift
[1405/1470] Compiling Crypto ECDSA_boring.swift
[1406/1470] Compiling Crypto EdDSA_boring.swift
[1407/1470] Compiling Crypto ECDSA.swift
[1408/1470] Compiling Crypto Ed25519.swift
[1409/1498] Compiling Crypto HKDF.swift
[1410/1498] Compiling Crypto AESWrap.swift
[1411/1498] Compiling Crypto AESWrap_boring.swift
[1412/1498] Compiling Crypto Ed25519_boring.swift
[1413/1498] Compiling Crypto NISTCurvesKeys_boring.swift
[1414/1498] Compiling Crypto X25519Keys_boring.swift
[1415/1498] Compiling Crypto Curve25519.swift
[1416/1498] Compiling Crypto Ed25519Keys.swift
[1417/1498] Compiling Crypto NISTCurvesKeys.swift
[1418/1498] Compiling Crypto X25519Keys.swift
[1419/1539] Emitting module Crypto
[1420/1539] Compiling NIOCore BSDSocketAPI.swift
[1421/1539] Compiling NIOCore ByteBuffer-aux.swift
[1422/1539] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[1423/1539] Compiling NIOCore ByteBuffer-conversions.swift
[1424/1539] Compiling NIOCore ByteBuffer-core.swift
[1425/1539] Compiling NIOCore ByteBuffer-hex.swift
[1426/1539] Compiling NIOCore ByteBuffer-int.swift
[1427/1539] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[1428/1539] Compiling NIOCore ByteBuffer-multi-int.swift
[1429/1539] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[1430/1539] Compiling NIOCore DeadChannel.swift
[1431/1539] Compiling NIOCore DispatchQueue+WithFuture.swift
[1432/1539] Compiling NIOCore EventLoop+Deprecated.swift
[1433/1539] Compiling NIOCore EventLoop+SerialExecutor.swift
[1434/1539] Compiling NIOCore EventLoop.swift
[1435/1539] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[1436/1539] Compiling NIOCore EventLoopFuture+Deprecated.swift
[1437/1539] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[1438/1539] Compiling NIOCore EventLoopFuture.swift
[1439/1539] Compiling NIOCore FileDescriptor.swift
[1440/1539] Compiling NIOCore MarkedCircularBuffer.swift
[1441/1539] Compiling NIOCore MulticastChannel.swift
[1442/1539] Compiling NIOCore NIOAny.swift
[1443/1539] Compiling NIOCore NIOCloseOnErrorHandler.swift
[1444/1539] Compiling NIOCore NIOLoopBound.swift
[1445/1539] Compiling NIOCore NIOScheduledCallback.swift
[1446/1539] Compiling NIOCore NIOSendable.swift
[1447/1539] Compiling NIOCore PointerHelpers.swift
[1448/1539] Compiling NIOCore RecvByteBufferAllocator.swift
[1449/1539] Compiling Crypto ECDH.swift
[1450/1539] Emitting module Algorithms
[1452/1540] Compiling NIOCore ByteBuffer-views.swift
[1453/1540] Compiling NIOCore Channel.swift
[1454/1540] Compiling NIOCore ChannelHandler.swift
[1455/1540] Compiling NIOCore ChannelHandlers.swift
[1456/1540] Compiling NIOCore ChannelInvoker.swift
[1457/1540] Compiling NIOCore ChannelOption.swift
[1458/1540] Compiling NIOCore ChannelPipeline.swift
[1459/1540] Compiling NIOCore CircularBuffer.swift
[1460/1540] Compiling NIOCore Codec.swift
[1461/1540] Compiling NIOCore ConvenienceOptionSupport.swift
[1462/1540] Compiling NIOCore AddressedEnvelope.swift
[1463/1540] Compiling NIOCore AsyncAwaitSupport.swift
[1464/1540] Compiling NIOCore AsyncChannel.swift
[1465/1540] Compiling NIOCore AsyncChannelHandler.swift
[1466/1540] Compiling NIOCore AsyncChannelInboundStream.swift
[1467/1540] Compiling NIOCore AsyncChannelOutboundWriter.swift
[1468/1540] Compiling NIOCore NIOAsyncSequenceProducer.swift
[1469/1540] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[1470/1540] Compiling NIOCore NIOAsyncWriter.swift
[1471/1540] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[1480/1548] Compiling Crypto Signature.swift
[1481/1548] Compiling Crypto CryptoKitErrors_boring.swift
[1482/1548] Compiling Crypto RNG_boring.swift
[1483/1548] Compiling Crypto SafeCompare_boring.swift
[1484/1548] Compiling Crypto Zeroization_boring.swift
[1485/1548] Compiling Crypto PrettyBytes.swift
[1486/1548] Compiling Crypto SafeCompare.swift
[1487/1548] Compiling Crypto SecureBytes.swift
[1488/1548] Compiling Crypto Zeroization.swift
[1489/1549] Compiling NIOCore IO.swift
[1490/1549] Compiling NIOCore IOData.swift
[1491/1549] Compiling NIOCore IPProtocol.swift
[1492/1549] Compiling NIOCore IntegerBitPacking.swift
[1493/1549] Compiling NIOCore IntegerTypes.swift
[1494/1549] Compiling NIOCore Interfaces.swift
[1495/1549] Compiling NIOCore Linux.swift
[1503/1549] Compiling NIOCore FileHandle.swift
[1504/1549] Compiling NIOCore FileRegion.swift
[1505/1549] Compiling NIOCore GlobalSingletons.swift
[1514/1549] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[1515/1549] Compiling NIOCore SocketAddresses.swift
[1516/1549] Compiling NIOCore SocketOptionProvider.swift
[1517/1549] Compiling NIOCore SystemCallHelpers.swift
[1518/1549] Compiling NIOCore TimeAmount+Duration.swift
[1519/1549] Compiling NIOCore TypeAssistedChannelHandler.swift
[1520/1549] Compiling NIOCore UniversalBootstrapSupport.swift
[1521/1549] Compiling NIOCore Utilities.swift
[1549/1549] Emitting module NIOCore
[1551/1602] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[1552/1602] Compiling NIOEmbedded AsyncTestingChannel.swift
[1553/1602] Emitting module NIOEmbedded
[1554/1602] Compiling NIOEmbedded Embedded.swift
[1556/1603] Compiling NIOPosix SelectableChannel.swift
[1557/1603] Compiling NIOPosix SelectableEventLoop.swift
[1558/1603] Compiling NIOPosix SelectorEpoll.swift
[1559/1603] Compiling NIOPosix SelectorGeneric.swift
[1560/1603] Compiling NIOPosix SelectorKqueue.swift
[1561/1603] Compiling NIOPosix SelectorUring.swift
[1562/1609] Emitting module NIOPosix
[1563/1609] Compiling NIOPosix NIOThreadPool.swift
[1564/1609] Compiling NIOPosix NonBlockingFileIO.swift
[1565/1609] Compiling NIOPosix PendingDatagramWritesManager.swift
[1566/1609] Compiling NIOPosix PendingWritesManager.swift
[1567/1609] Compiling NIOPosix PipeChannel.swift
[1568/1609] Compiling NIOPosix PipePair.swift
[1569/1609] Compiling NIOPosix PointerHelpers.swift
[1570/1609] Compiling NIOPosix BSDSocketAPICommon.swift
[1571/1609] Compiling NIOPosix BSDSocketAPIPosix.swift
[1572/1609] Compiling NIOPosix BSDSocketAPIWindows.swift
[1573/1609] Compiling NIOPosix BaseSocket.swift
[1574/1609] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[1575/1609] Compiling NIOPosix BaseSocketChannel.swift
[1576/1609] Compiling NIOPosix BaseStreamSocketChannel.swift
[1577/1609] Compiling NIOPosix ServerSocket.swift
[1578/1609] Compiling NIOPosix Socket.swift
[1579/1609] Compiling NIOPosix SocketChannel.swift
[1580/1609] Compiling NIOPosix SocketProtocols.swift
[1581/1609] Compiling NIOPosix System.swift
[1582/1609] Compiling NIOPosix Thread.swift
[1583/1609] Compiling NIOPosix Pool.swift
[1584/1609] Compiling NIOPosix PooledRecvBufferAllocator.swift
[1585/1609] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[1586/1609] Compiling NIOPosix PosixSingletons.swift
[1587/1609] Compiling NIOPosix RawSocketBootstrap.swift
[1588/1609] Compiling NIOPosix Resolver.swift
[1589/1609] Compiling NIOPosix Selectable.swift
[1590/1609] Compiling NIOPosix IO.swift
[1591/1609] Compiling NIOPosix IntegerBitPacking.swift
[1592/1609] Compiling NIOPosix IntegerTypes.swift
[1593/1609] Compiling NIOPosix Linux.swift
[1594/1609] Compiling NIOPosix LinuxCPUSet.swift
[1595/1609] Compiling NIOPosix LinuxUring.swift
[1596/1609] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[1597/1609] Compiling NIOPosix Bootstrap.swift
[1598/1609] Compiling NIOPosix ControlMessage.swift
[1599/1609] Compiling NIOPosix DatagramVectorReadManager.swift
[1600/1609] Compiling NIOPosix Errors+Any.swift
[1601/1609] Compiling NIOPosix FileDescriptor.swift
[1602/1609] Compiling NIOPosix GetaddrinfoResolver.swift
[1603/1609] Compiling NIOPosix HappyEyeballs.swift
[1604/1609] Compiling NIOPosix ThreadPosix.swift
[1605/1609] Compiling NIOPosix ThreadWindows.swift
[1606/1609] Compiling NIOPosix UnsafeTransfer.swift
[1607/1609] Compiling NIOPosix Utilities.swift
[1608/1609] Compiling NIOPosix VsockAddress.swift
[1609/1609] Compiling NIOPosix VsockChannelEvents.swift
[1611/1662] Emitting module NIO
[1612/1662] Compiling NIO Exports.swift
[1613/1667] Compiling _NIOFileSystem Array+FileSystem.swift
[1614/1667] Compiling _NIOFileSystem ArraySlice+FileSystem.swift
[1615/1667] Compiling _NIOFileSystem BufferedReader.swift
[1617/1669] Compiling _NIOFileSystem UnsafeTransfer.swift
[1618/1669] Compiling _NIOFileSystem ParallelDirCopy.swift
[1619/1669] Compiling AsyncKit Optional+StrictMap.swift
[1620/1669] Compiling AsyncKit Exports.swift
[1621/1677] Compiling _NIOFileSystem FileSystem.swift
[1622/1677] Compiling _NIOFileSystem FileSystemError+Syscall.swift
[1623/1677] Compiling _NIOFileSystem FileSystemError.swift
[1624/1677] Compiling _NIOFileSystem DirectoryEntry.swift
[1625/1677] Compiling _NIOFileSystem Exports.swift
[1626/1678] Compiling _NIOFileSystem FileChunks.swift
[1627/1678] Compiling _NIOFileSystem FileHandle.swift
[1628/1678] Compiling _NIOFileSystem FileHandleProtocol.swift
[1629/1678] Compiling _NIOFileSystem FileInfo.swift
[1630/1679] Compiling _NIOFileSystem FileSystemProtocol.swift
[1633/1712] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[1634/1712] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[1635/1712] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[1636/1712] Compiling NIOTLS TLSEvents.swift
[1637/1712] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[1638/1712] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[1639/1712] Emitting module NIOTLS
[1640/1712] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[1641/1712] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[1642/1712] Emitting module _NIOFileSystem
[1643/1712] Compiling NIOHTTP1 ByteCollectionUtils.swift
[1644/1712] Compiling NIOHTTP1 HTTPDecoder.swift
[1645/1712] Compiling NIOHTTP1 HTTPEncoder.swift
[1646/1712] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[1647/1712] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[1648/1712] Compiling NIOSOCKS SOCKSResponse.swift
[1649/1713] Compiling NIOSOCKS ClientStateMachine.swift
[1650/1713] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[1651/1713] Emitting module NIOSOCKS
[1652/1713] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[1653/1713] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[1654/1713] Compiling NIOTLS SNIHandler.swift
[1661/1714] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[1666/1714] Compiling NIOSOCKS ServerStateMachine.swift
[1668/1715] Compiling _NIOFileSystem Errno.swift
[1669/1715] Compiling _NIOFileSystem FileDescriptor+Syscalls.swift
[1670/1715] Compiling _NIOFileSystem Mocking.swift
[1671/1715] Compiling _NIOFileSystem Syscall.swift
[1672/1715] Emitting module NIOFoundationCompat
[1673/1715] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[1679/1746] Compiling NIOSSL NIOSSLClientHandler.swift
[1680/1746] Compiling NIOSSL NIOSSLHandler+Configuration.swift
[1681/1746] Emitting module NIOHTTP1
[1682/1746] Compiling NIOSSL SSLContext.swift
[1683/1746] Compiling NIOSSL LinuxCABundle.swift
[1684/1768] Compiling NIOTransportServices NIOTSChannelOptions.swift
[1685/1768] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[1686/1768] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[1687/1768] Compiling NIOTransportServices NIOTSErrors.swift
[1688/1768] Compiling NIOTransportServices NIOTSBootstraps.swift
[1693/1768] Compiling NIOTransportServices NIOTSEventLoop.swift
[1694/1770] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1695/1770] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[1696/1770] Compiling NIOTransportServices NIOTSListenerChannel.swift
[1697/1770] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[1698/1770] Compiling NIOTransportServices NIOTSSingletons.swift
[1699/1770] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[1700/1770] Compiling NIOTransportServices StateManagedChannel.swift
[1701/1770] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1702/1770] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1703/1770] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1704/1770] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1707/1770] Compiling _NIOFileSystem Syscalls.swift
[1708/1770] Compiling _NIOFileSystem SystemFileHandle.swift
[1709/1770] Compiling _NIOFileSystem Utilities.swift
[1710/1770] Compiling _NIOFileSystem OpenOptions.swift
[1711/1770] Compiling NIOTransportServices AcceptHandler.swift
[1712/1770] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[1713/1770] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[1714/1770] Compiling NIOTransportServices NIOTSDatagramListener.swift
[1715/1770] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[1716/1770] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[1717/1770] Emitting module NIOTransportServices
[1733/1772] Compiling NIOSSL SubjectAlternativeName.swift
[1734/1772] Compiling NIOSSL NIOSSLSecureBytes.swift
[1735/1772] Compiling NIOSSL RNG.swift
[1736/1772] Compiling NIOSSL SafeCompare.swift
[1744/1839] Compiling NIOWebSocket WebSocketErrorCodes.swift
[1745/1840] Compiling MultipartKit FormDataEncoder.swift
[1746/1840] Compiling MultipartKit Storage.swift
[1749/1840] Compiling NIOWebSocket WebSocketOpcode.swift
[1750/1840] Compiling NIOExtras RequestResponseHandler.swift
[1754/1841] Compiling NIOHPACK DynamicHeaderTable.swift
[1755/1841] Compiling NIOHPACK HPACKDecoder.swift
[1756/1841] Compiling NIOHPACK HPACKEncoder.swift
[1757/1841] Compiling NIOHPACK HPACKErrors.swift
[1758/1841] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1759/1841] Compiling NIOHPACK IndexedHeaderTable.swift
[1761/1842] Emitting module NIOHTTPCompression
[1762/1842] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1763/1842] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1764/1842] Compiling NIOHTTPCompression HTTPDecompression.swift
[1765/1842] Compiling NIOExtras LineBasedFrameDecoder.swift
[1766/1842] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
[1767/1842] Compiling NIOExtras NIOExtrasError.swift
[1768/1842] Compiling NIOExtras NIOLengthFieldBitLength.swift
[1769/1844] Compiling NIOHTTPCompression HTTPCompression.swift
[1770/1844] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
[1771/1844] Compiling NIOExtras LengthFieldPrepender.swift
[1776/1846] Compiling NIOHPACK IntegerCoding.swift
[1777/1846] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[1778/1846] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[1779/1846] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[1780/1846] Compiling NIOExtras QuiescingHelper.swift
[1784/1846] Compiling NIOHPACK HPACKHeader.swift
[1785/1846] Compiling NIOHPACK HeaderTables.swift
[1788/1846] Compiling NIOHPACK StaticHeaderTable.swift
[1792/1846] Compiling NIOExtras NIORequestIdentifiable.swift
[1793/1846] Compiling NIOExtras PCAPRingBuffer.swift
[1798/1846] Emitting module NIOWebSocket
[1799/1846] Emitting module MultipartKit
[1800/1846] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1804/1846] Compiling NIOHPACK HuffmanTables.swift
[1807/1847] Compiling NIOHPACK HuffmanCoding.swift
[1809/1850] Compiling NIOWebSocket WebSocketFrame.swift
[1818/1851] Compiling NIOExtras RequestResponseWithIDHandler.swift
[1819/1851] Compiling NIOExtras WritePCAPHandler.swift
[1823/1851] Emitting module _NIOFileSystemFoundationCompat
[1824/1851] Compiling MultipartKit MultipartSerializer.swift
[1825/1851] Compiling MultipartKit Utilities.swift
[1826/1852] Emitting module NIOExtras
[1827/1852] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[1828/1852] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[1830/1852] Emitting module NIOHPACK
[1836/1855] Compiling NIOFileSystem Exports.swift
[1837/1855] Emitting module NIOFileSystem
[1840/1857] Compiling NIOSSL Zeroization.swift
[1841/1857] Compiling NIOSSL TLSConfiguration.swift
[1842/1857] Compiling NIOSSL UniversalBootstrapSupport.swift
[1847/1857] Emitting module NIOSSL
[1853/1916] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1854/1916] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[1856/1917] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1857/1917] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1858/1917] Compiling NIOHTTP2 HasLocalSettings.swift
[1859/1917] Compiling NIOHTTP2 HasRemoteSettings.swift
[1860/1917] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1861/1917] Compiling NIOHTTP2 QuiescingState.swift
[1862/1917] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1864/1933] Emitting module AsyncKit
[1865/1933] Compiling WebSocketKit Exports.swift
[1866/1933] Compiling WebSocketKit WebSocketHandler.swift
[1867/1933] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[1868/1933] Compiling WebSocketKit WebSocket+Connect.swift
[1869/1933] Compiling WebSocketKit WebSocket.swift
[1870/1933] Emitting module WebSocketKit
[1871/1933] Compiling WebSocketKit WebSocket+Concurrency.swift
[1872/1933] Compiling WebSocketKit WebSocketClient.swift
[1874/1934] Compiling NIOHTTP2 StateMachineResult.swift
[1875/1934] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1876/1934] Compiling NIOHTTP2 DOSHeuristics.swift
[1877/1934] Compiling NIOHTTP2 Error+Any.swift
[1878/1934] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1879/1934] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1880/1934] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1881/1934] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1882/1934] Compiling NIOHTTP2 InboundWindowManager.swift
[1883/1934] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1884/1934] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1885/1934] Compiling NIOHTTP2 StreamChannelList.swift
[1886/1934] Compiling NIOHTTP2 StreamMap.swift
[1887/1934] Compiling NIOHTTP2 StreamStateMachine.swift
[1888/1934] Compiling NIOHTTP2 UnsafeTransfer.swift
[1889/1934] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1890/1934] Emitting module NIOHTTP2
[1891/1934] Compiling NIOHTTP2 MaySendFrames.swift
[1892/1934] Compiling NIOHTTP2 SendingDataState.swift
[1893/1934] Compiling NIOHTTP2 SendingGoawayState.swift
[1894/1934] Compiling NIOHTTP2 SendingHeadersState.swift
[1895/1934] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1896/1934] Compiling NIOHTTP2 SendingRstStreamState.swift
[1897/1934] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1898/1934] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1899/1934] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1900/1934] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1901/1934] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1902/1934] Compiling NIOHTTP2 HTTP2StreamID.swift
[1903/1934] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1904/1934] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1905/1934] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1906/1934] Compiling NIOHTTP2 InboundEventBuffer.swift
[1907/1934] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1908/1934] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1909/1934] Compiling NIOHTTP2 MayReceiveFrames.swift
[1910/1934] Compiling NIOHTTP2 ReceivingDataState.swift
[1911/1934] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1912/1934] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1913/1934] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1914/1934] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1915/1934] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1916/1934] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[1917/1934] Compiling NIOHTTP2 HTTP2Frame.swift
[1918/1934] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[1919/1934] Compiling NIOHTTP2 HTTP2FrameParser.swift
[1920/1934] Compiling NIOHTTP2 HTTP2PingData.swift
[1921/1934] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[1922/1934] Compiling NIOHTTP2 HTTP2Settings.swift
[1923/1934] Compiling NIOHTTP2 HTTP2Stream.swift
[1925/1934] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[1926/1934] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[1927/1934] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[1928/1934] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[1929/1934] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[1930/1934] Compiling NIOHTTP2 HTTP2Error.swift
[1931/1934] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1933/1992] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[1934/1992] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[1935/1992] Compiling AsyncHTTPClient AsyncLazySequence.swift
[1936/1992] Compiling AsyncHTTPClient HTTPClient+execute.swift
[1937/1992] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[1938/1992] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[1939/1992] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[1940/1992] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1941/2000] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1942/2000] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1943/2000] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1944/2000] Compiling AsyncHTTPClient Transaction.swift
[1945/2000] Compiling AsyncHTTPClient Base64.swift
[1946/2000] Compiling AsyncHTTPClient BasicAuth.swift
[1947/2000] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1948/2000] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1949/2000] Compiling AsyncHTTPClient ConnectionPool.swift
[1950/2000] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1951/2000] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1952/2000] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1953/2000] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1954/2000] Compiling AsyncHTTPClient HTTP1Connection.swift
[1955/2000] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1956/2000] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1957/2000] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1958/2000] Compiling AsyncHTTPClient HTTPClient.swift
[1959/2000] Compiling AsyncHTTPClient HTTPHandler.swift
[1960/2000] Compiling AsyncHTTPClient LRUCache.swift
[1961/2000] Compiling AsyncHTTPClient NWErrorHandler.swift
[1962/2000] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1963/2000] Compiling AsyncHTTPClient TLSConfiguration.swift
[1964/2000] Compiling AsyncHTTPClient RedirectState.swift
[1965/2000] Compiling AsyncHTTPClient HTTP2Connection.swift
[1966/2000] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1967/2000] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1968/2000] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1969/2000] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1970/2000] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1971/2000] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1972/2000] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1973/2000] Emitting module AsyncHTTPClient
[1974/2000] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1975/2000] Compiling AsyncHTTPClient RequestBodyLength.swift
[1976/2000] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1977/2000] Compiling AsyncHTTPClient RequestOptions.swift
[1978/2000] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1979/2000] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1980/2000] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1981/2000] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1982/2000] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1983/2000] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1984/2000] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1985/2000] Compiling AsyncHTTPClient ConnectionTarget.swift
[1986/2000] Compiling AsyncHTTPClient DeconstructedURL.swift
[1987/2000] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1988/2000] Compiling AsyncHTTPClient FoundationExtensions.swift
[1989/2000] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1990/2000] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1991/2000] Compiling AsyncHTTPClient RequestBag.swift
[1992/2000] Compiling AsyncHTTPClient RequestValidation.swift
[1993/2000] Compiling AsyncHTTPClient SSLContextCache.swift
[1994/2000] Compiling AsyncHTTPClient Scheme.swift
[1995/2000] Compiling AsyncHTTPClient Singleton.swift
[1996/2000] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1997/2000] Compiling AsyncHTTPClient Utils.swift
[2003/2171] Compiling Vapor Core.swift
[2004/2171] Compiling Vapor Running.swift
[2005/2171] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[2006/2171] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[2007/2171] Compiling Vapor DotEnvFile+load.swift
[2008/2171] Compiling Vapor Routes+caseInsenstive.swift
[2009/2171] Compiling Vapor Validatable+validate.swift
[2010/2171] Compiling Vapor Environment+Process.swift
[2011/2171] Compiling Vapor Environment+Secret.swift
[2012/2171] Compiling Vapor Environment.swift
[2013/2171] Compiling Vapor Abort.swift
[2014/2171] Compiling Vapor AbortError.swift
[2015/2171] Compiling Vapor DebuggableError.swift
[2016/2171] Compiling Vapor Demangler.swift
[2017/2171] Compiling Vapor ErrorSource.swift
[2018/2171] Compiling Vapor StackTrace.swift
[2019/2171] Compiling Vapor Exports.swift
[2020/2171] Compiling Vapor Application+HTTP.swift
[2021/2171] Compiling Vapor BasicResponder.swift
[2022/2171] Compiling Vapor BodyStream.swift
[2023/2171] Compiling Vapor Application+HTTP+Client.swift
[2024/2171] Compiling Vapor EventLoopHTTPClient.swift
[2025/2171] Compiling Vapor EndpointCache.swift
[2026/2171] Compiling Vapor HTTPMethod+String.swift
[2027/2195] Compiling Vapor HTTPServerResponseEncoder.swift
[2028/2195] Compiling Vapor HTTPServerUpgradeHandler.swift
[2029/2195] Compiling Vapor Logger+Report.swift
[2030/2195] Compiling Vapor LoggingSystem+Environment.swift
[2031/2195] Compiling Vapor Application+Middleware.swift
[2032/2195] Compiling Vapor CORSMiddleware.swift
[2033/2195] Compiling Vapor ErrorMiddleware.swift
[2034/2195] Compiling Vapor FileMiddleware.swift
[2035/2195] Compiling Vapor Middleware.swift
[2036/2195] Compiling Vapor MiddlewareConfiguration.swift
[2037/2195] Compiling Vapor ResponseCompressionMiddleware.swift
[2038/2195] Compiling Vapor RouteLoggingMiddleware.swift
[2039/2195] Compiling Vapor TracingMiddleware.swift
[2040/2195] Compiling Vapor File+Multipart.swift
[2041/2195] Compiling Vapor FormDataDecoder+Content.swift
[2042/2195] Compiling Vapor FormDataEncoder+Content.swift
[2043/2195] Compiling Vapor Application+Password.swift
[2044/2195] Compiling Vapor Application+Passwords.swift
[2045/2195] Compiling Vapor AsyncPasswordHasher.swift
[2046/2195] Compiling Vapor BcryptHasher.swift
[2047/2195] Compiling Vapor PasswordHasher.swift
[2048/2195] Compiling Vapor PlaintextHasher.swift
[2049/2195] Compiling Vapor Request+Password.swift
[2050/2195] Compiling Vapor Redirect.swift
[2051/2195] Compiling Vapor AsyncBasicResponder.swift
[2052/2195] Compiling Vapor AsyncMiddleware.swift
[2053/2195] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[2054/2195] Compiling Vapor AsyncSessionDriver.swift
[2055/2195] Compiling Vapor Authentication+Concurrency.swift
[2056/2195] Compiling Vapor Cache+Concurrency.swift
[2057/2195] Compiling Vapor Client+Concurrency.swift
[2058/2195] Compiling Vapor RequestBody+Concurrency.swift
[2059/2195] Compiling Vapor Responder+Concurrency.swift
[2060/2195] Compiling Vapor ResponseCodable+Concurrency.swift
[2061/2195] Compiling Vapor RoutesBuilder+Concurrency.swift
[2062/2195] Compiling Vapor ViewRenderer+Concurrency.swift
[2063/2195] Compiling Vapor WebSocket+Concurrency.swift
[2064/2195] Compiling Vapor ContainerGetPathExecutor.swift
[2065/2195] Compiling Vapor Content.swift
[2066/2195] Compiling Vapor ContentCoders.swift
[2067/2195] Compiling Vapor ContentConfiguration.swift
[2068/2195] Compiling Vapor ContentContainer.swift
[2069/2195] Compiling Vapor JSONCoder+Custom.swift
[2070/2195] Compiling Vapor JSONCoders+Content.swift
[2071/2195] Compiling Vapor PlaintextDecoder.swift
[2072/2195] Compiling Vapor PlaintextEncoder.swift
[2073/2195] Compiling Vapor URLQueryCoders.swift
[2074/2195] Compiling Vapor URLQueryContainer.swift
[2075/2219] Compiling Vapor Application.swift
[2076/2219] Compiling Vapor AuthenticationCache.swift
[2077/2219] Compiling Vapor Authenticator.swift
[2078/2219] Compiling Vapor BasicAuthorization.swift
[2079/2219] Compiling Vapor BearerAuthorization.swift
[2080/2219] Compiling Vapor GuardMiddleware.swift
[2081/2219] Compiling Vapor RedirectMiddleware.swift
[2082/2219] Compiling Vapor SessionAuthenticatable.swift
[2083/2219] Compiling Vapor Bcrypt.swift
[2084/2219] Compiling Vapor Application+Cache.swift
[2085/2219] Compiling Vapor Cache.swift
[2086/2219] Compiling Vapor CacheExpirationTime.swift
[2087/2219] Compiling Vapor MemoryCache.swift
[2088/2219] Compiling Vapor Request+Cache.swift
[2089/2219] Compiling Vapor Application+Clients.swift
[2090/2219] Compiling Vapor Client.swift
[2091/2219] Compiling Vapor ClientRequest.swift
[2092/2219] Compiling Vapor ClientResponse.swift
[2093/2219] Compiling Vapor Request+Client.swift
[2094/2219] Compiling Vapor BootCommand.swift
[2095/2219] Compiling Vapor CommandContext+Application.swift
[2096/2219] Compiling Vapor RoutesCommand.swift
[2097/2219] Compiling Vapor ServeCommand.swift
[2098/2219] Compiling Vapor AnyResponse+Concurrency.swift
[2099/2219] Compiling Vapor Validator.swift
[2100/2219] Compiling Vapor ValidatorResult.swift
[2101/2219] Compiling Vapor And.swift
[2102/2219] Compiling Vapor Case.swift
[2103/2219] Compiling Vapor CharacterSet.swift
[2104/2219] Compiling Vapor Count.swift
[2105/2219] Compiling Vapor Custom.swift
[2106/2219] Compiling Vapor Email.swift
[2107/2219] Compiling Vapor Empty.swift
[2108/2219] Compiling Vapor In.swift
[2109/2219] Compiling Vapor Nil.swift
[2110/2219] Compiling Vapor NilIgnoring.swift
[2111/2219] Compiling Vapor Not.swift
[2112/2219] Compiling Vapor Or.swift
[2113/2219] Compiling Vapor Pattern.swift
[2114/2219] Compiling Vapor Range.swift
[2115/2219] Compiling Vapor URL.swift
[2116/2219] Compiling Vapor Valid.swift
[2117/2219] Compiling Vapor Application+Views.swift
[2118/2219] Compiling Vapor PlaintextRenderer.swift
[2119/2219] Compiling Vapor Request+View.swift
[2120/2219] Compiling Vapor View.swift
[2121/2219] Compiling Vapor ViewRenderer.swift
[2122/2219] Compiling Vapor _Deprecations.swift
[2123/2219] Compiling Vapor Bytes+Hex.swift
[2124/2219] Compiling Vapor Bytes+SecureCompare.swift
[2125/2219] Compiling Vapor Collection+Safe.swift
[2126/2219] Compiling Vapor DataProtocol+Copy.swift
[2127/2219] Compiling Vapor DecoderUnwrapper.swift
[2128/2219] Compiling Vapor DirectoryConfiguration.swift
[2129/2219] Compiling Vapor DotEnv.swift
[2130/2219] Compiling Vapor Extendable.swift
[2131/2219] Compiling Vapor File.swift
[2132/2219] Compiling Vapor FileIO.swift
[2133/2219] Compiling Vapor LifecycleHandler.swift
[2134/2219] Compiling Vapor OptionalType.swift
[2135/2219] Compiling Vapor RFC1123.swift
[2136/2219] Compiling Vapor SocketAddress+Hostname.swift
[2137/2219] Compiling Vapor Storage.swift
[2138/2219] Compiling Vapor String+IsIPAddress.swift
[2139/2219] Compiling Vapor Thread.swift
[2140/2219] Compiling Vapor URI.swift
[2141/2219] Compiling Vapor RangeResult.swift
[2142/2219] Compiling Vapor Validatable.swift
[2143/2219] Compiling Vapor Validation.swift
[2144/2219] Compiling Vapor ValidationKey.swift
[2145/2219] Compiling Vapor Validations.swift
[2146/2219] Compiling Vapor ValidationsError.swift
[2147/2219] Compiling Vapor Service.swift
[2148/2219] Compiling Vapor Application+Sessions.swift
[2149/2219] Compiling Vapor MemorySessions.swift
[2150/2219] Compiling Vapor Request+Session.swift
[2151/2219] Compiling Vapor Session.swift
[2152/2219] Compiling Vapor SessionCache.swift
[2153/2219] Compiling Vapor SessionData.swift
[2154/2219] Compiling Vapor SessionDriver.swift
[2155/2219] Compiling Vapor SessionsConfiguration.swift
[2156/2219] Compiling Vapor SessionsMiddleware.swift
[2157/2219] Compiling Vapor URLEncodedFormData.swift
[2158/2219] Compiling Vapor URLEncodedFormDecoder.swift
[2159/2219] Compiling Vapor URLEncodedFormEncoder.swift
[2160/2219] Compiling Vapor URLEncodedFormError.swift
[2161/2219] Compiling Vapor URLEncodedFormParser.swift
[2162/2219] Compiling Vapor URLEncodedFormSerializer.swift
[2163/2219] Compiling Vapor URLQueryFragmentConvertible.swift
[2164/2219] Compiling Vapor AnyResponse.swift
[2165/2219] Compiling Vapor Array+Random.swift
[2166/2219] Compiling Vapor Base32.swift
[2167/2219] Compiling Vapor Base64.swift
[2168/2219] Compiling Vapor BaseN.swift
[2169/2219] Compiling Vapor BasicCodingKey.swift
[2170/2219] Compiling Vapor ByteCount.swift
[2171/2219] Emitting module Vapor
[2172/2219] Compiling Vapor Request+Body.swift
[2173/2219] Compiling Vapor Request+BodyStream.swift
[2174/2219] Compiling Vapor Request.swift
[2175/2219] Compiling Vapor Application+Responder.swift
[2176/2219] Compiling Vapor DefaultResponder.swift
[2177/2219] Compiling Vapor Response+Body.swift
[2178/2219] Compiling Vapor Response.swift
[2179/2219] Compiling Vapor ResponseCodable.swift
[2180/2219] Compiling Vapor Application+Routes.swift
[2181/2219] Compiling Vapor Parameters+Require.swift
[2182/2219] Compiling Vapor Request+WebSocket.swift
[2183/2219] Compiling Vapor Route.swift
[2184/2219] Compiling Vapor RouteCollection.swift
[2185/2219] Compiling Vapor Routes.swift
[2186/2219] Compiling Vapor RoutesBuilder+Group.swift
[2187/2219] Compiling Vapor RoutesBuilder+Method.swift
[2188/2219] Compiling Vapor RoutesBuilder+Middleware.swift
[2189/2219] Compiling Vapor RoutesBuilder+WebSocket.swift
[2190/2219] Compiling Vapor RoutesBuilder.swift
[2191/2219] Compiling Vapor OTP.swift
[2192/2219] Compiling Vapor Application+Servers.swift
[2193/2219] Compiling Vapor Server.swift
[2194/2219] Compiling Vapor App+Service.swift
[2195/2219] Compiling Vapor Req+Service.swift
[2196/2219] Compiling Vapor HTTPStatus.swift
[2197/2219] Compiling Vapor HTTPCookies.swift
[2198/2219] Compiling Vapor HTTPHeaderCacheControl.swift
[2199/2219] Compiling Vapor HTTPHeaderExpires.swift
[2200/2219] Compiling Vapor HTTPHeaderLastModified.swift
[2201/2219] Compiling Vapor HTTPHeaders+Cache.swift
[2202/2219] Compiling Vapor HTTPHeaders+Connection.swift
[2203/2219] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[2204/2219] Compiling Vapor HTTPHeaders+ContentRange.swift
[2205/2219] Compiling Vapor HTTPHeaders+Directive.swift
[2206/2219] Compiling Vapor HTTPHeaders+Forwarded.swift
[2207/2219] Compiling Vapor HTTPHeaders+Link.swift
[2208/2219] Compiling Vapor HTTPHeaders+Name.swift
[2209/2219] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[2210/2219] Compiling Vapor HTTPHeaders.swift
[2211/2219] Compiling Vapor HTTPMediaType.swift
[2212/2219] Compiling Vapor HTTPMediaTypePreference.swift
[2213/2219] Compiling Vapor Responder.swift
[2214/2219] Compiling Vapor Application+HTTP+Server.swift
[2215/2219] Compiling Vapor HTTPServer.swift
[2216/2219] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[2217/2219] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[2218/2219] Compiling Vapor HTTPServerHandler.swift
[2219/2219] Compiling Vapor HTTPServerRequestDecoder.swift
[2221/2256] Compiling VaporOAuth TokenIntrospectionAuthenticationMiddleware.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Middleware/TokenIntrospectionAuthenticationMiddleware.swift:4:9: warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 2 |
 3 | struct TokenIntrospectionAuthMiddleware: AsyncMiddleware {
 4 |     let resourceServerAuthenticator: ResourceServerAuthenticator
   |         `- warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 5 |
 6 |     func respond(to request: Request, chainingTo next: AsyncResponder) async throws -> Response {
/host/spi-builder-workspace/Sources/VaporOAuth/Validators/ResourceServerAuthenticator.swift:3:8: note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | struct ResourceServerAuthenticator {
   |        `- note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 4 |
 5 |     let resourceServerRetriever: ResourceServerRetriever
[2222/2256] Compiling VaporOAuth OAuthClient.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Middleware/TokenIntrospectionAuthenticationMiddleware.swift:4:9: warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 2 |
 3 | struct TokenIntrospectionAuthMiddleware: AsyncMiddleware {
 4 |     let resourceServerAuthenticator: ResourceServerAuthenticator
   |         `- warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 5 |
 6 |     func respond(to request: Request, chainingTo next: AsyncResponder) async throws -> Response {
/host/spi-builder-workspace/Sources/VaporOAuth/Validators/ResourceServerAuthenticator.swift:3:8: note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | struct ResourceServerAuthenticator {
   |        `- note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 4 |
 5 |     let resourceServerRetriever: ResourceServerRetriever
[2223/2256] Compiling VaporOAuth OAuthCode.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Middleware/TokenIntrospectionAuthenticationMiddleware.swift:4:9: warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 2 |
 3 | struct TokenIntrospectionAuthMiddleware: AsyncMiddleware {
 4 |     let resourceServerAuthenticator: ResourceServerAuthenticator
   |         `- warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 5 |
 6 |     func respond(to request: Request, chainingTo next: AsyncResponder) async throws -> Response {
/host/spi-builder-workspace/Sources/VaporOAuth/Validators/ResourceServerAuthenticator.swift:3:8: note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | struct ResourceServerAuthenticator {
   |        `- note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 4 |
 5 |     let resourceServerRetriever: ResourceServerRetriever
[2224/2256] Compiling VaporOAuth OAuthResourceServer.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Middleware/TokenIntrospectionAuthenticationMiddleware.swift:4:9: warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 2 |
 3 | struct TokenIntrospectionAuthMiddleware: AsyncMiddleware {
 4 |     let resourceServerAuthenticator: ResourceServerAuthenticator
   |         `- warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 5 |
 6 |     func respond(to request: Request, chainingTo next: AsyncResponder) async throws -> Response {
/host/spi-builder-workspace/Sources/VaporOAuth/Validators/ResourceServerAuthenticator.swift:3:8: note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | struct ResourceServerAuthenticator {
   |        `- note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 4 |
 5 |     let resourceServerRetriever: ResourceServerRetriever
[2225/2256] Compiling VaporOAuth OAuthUser.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Middleware/TokenIntrospectionAuthenticationMiddleware.swift:4:9: warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 2 |
 3 | struct TokenIntrospectionAuthMiddleware: AsyncMiddleware {
 4 |     let resourceServerAuthenticator: ResourceServerAuthenticator
   |         `- warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 5 |
 6 |     func respond(to request: Request, chainingTo next: AsyncResponder) async throws -> Response {
/host/spi-builder-workspace/Sources/VaporOAuth/Validators/ResourceServerAuthenticator.swift:3:8: note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | struct ResourceServerAuthenticator {
   |        `- note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 4 |
 5 |     let resourceServerRetriever: ResourceServerRetriever
[2226/2261] Emitting module VaporOAuth
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:17:12: warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
   :
15 |
16 | extension Application {
17 |     struct OAuthHelperKey: StorageKey {
   |            `- warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
18 |         typealias Value = OAuthHelper
19 |     }
/host/spi-builder-workspace/Sources/VaporOAuth/Middleware/TokenIntrospectionAuthenticationMiddleware.swift:4:9: warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 2 |
 3 | struct TokenIntrospectionAuthMiddleware: AsyncMiddleware {
 4 |     let resourceServerAuthenticator: ResourceServerAuthenticator
   |         `- warning: stored property 'resourceServerAuthenticator' of 'Sendable'-conforming struct 'TokenIntrospectionAuthMiddleware' has non-sendable type 'ResourceServerAuthenticator'; this is an error in the Swift 6 language mode
 5 |
 6 |     func respond(to request: Request, chainingTo next: AsyncResponder) async throws -> Response {
/host/spi-builder-workspace/Sources/VaporOAuth/Validators/ResourceServerAuthenticator.swift:3:8: note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | struct ResourceServerAuthenticator {
   |        `- note: consider making struct 'ResourceServerAuthenticator' conform to the 'Sendable' protocol
 4 |
 5 |     let resourceServerRetriever: ResourceServerRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:4:9: warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 2 |
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
   |         `- warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/CodeManager.swift:2:17: note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 1 | /// Responsible for generating and managing OAuth Codes
 2 | public protocol CodeManager {
   |                 `- note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 3 |     func generateCode(userID: String, clientID: String, redirectURI: String, scopes: [String]?) async throws -> String
 4 |     func getCode(_ code: String) async throws -> OAuthCode?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:5:9: warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
   |         `- warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/TokenManager.swift:3:17: note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol TokenManager {
   |                 `- note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 4 |     func generateAccessRefreshTokens(
 5 |         clientID: String,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:6:9: warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
   |         `- warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ClientRetriever.swift:1:17: note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ClientRetriever {
  |                 `- note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
2 |     func getClient(clientID: String) async throws -> OAuthClient?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:7:9: warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
   |         `- warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/AuthorizeHandler.swift:3:17: note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol AuthorizeHandler {
   |                 `- note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 4 |     func handleAuthorizationRequest(
 5 |         _ request: Request,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:8:9: warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
   |         `- warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/UserManager.swift:1:17: note: protocol 'UserManager' does not conform to the 'Sendable' protocol
1 | public protocol UserManager {
  |                 `- note: protocol 'UserManager' does not conform to the 'Sendable' protocol
2 |     func authenticateUser(username: String, password: String) async throws -> String?
3 |     func getUser(userID: String) async throws -> OAuthUser?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:10:9: warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
   |         `- warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
11 |     let oAuthHelper: OAuthHelper
12 |
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ResourceServerRetriever.swift:1:17: note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ResourceServerRetriever {
  |                 `- note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
2 |     func getServer(_ username: String) async throws -> OAuthResourceServer?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:11:9: warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
11 |     let oAuthHelper: OAuthHelper
   |         `- warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
12 |
13 |     public init(
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:3:15: note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
[2227/2261] Compiling VaporOAuth EmptyAuthorizationHandler.swift
[2228/2261] Compiling VaporOAuth EmptyCodeManager.swift
[2229/2261] Compiling VaporOAuth EmptyResourceServerRetriever.swift
[2230/2261] Compiling VaporOAuth EmptyUserManager.swift
[2231/2261] Compiling VaporOAuth StaticClientRetriever.swift
[2232/2261] Compiling VaporOAuth OAuthHelper+local.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:17:12: warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
   :
15 |
16 | extension Application {
17 |     struct OAuthHelperKey: StorageKey {
   |            `- warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
18 |         typealias Value = OAuthHelper
19 |     }
[2233/2261] Compiling VaporOAuth OAuthHelper+remote.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:17:12: warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
   :
15 |
16 | extension Application {
17 |     struct OAuthHelperKey: StorageKey {
   |            `- warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
18 |         typealias Value = OAuthHelper
19 |     }
[2234/2261] Compiling VaporOAuth OAuthHelper.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:17:12: warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
   :
15 |
16 | extension Application {
17 |     struct OAuthHelperKey: StorageKey {
   |            `- warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
18 |         typealias Value = OAuthHelper
19 |     }
[2235/2261] Compiling VaporOAuth OAuth2ScopeMiddleware.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:17:12: warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
   :
15 |
16 | extension Application {
17 |     struct OAuthHelperKey: StorageKey {
   |            `- warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
18 |         typealias Value = OAuthHelper
19 |     }
[2236/2261] Compiling VaporOAuth OAuth2TokenIntrospectionMiddleware.swift
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:17:12: warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
   :
15 |
16 | extension Application {
17 |     struct OAuthHelperKey: StorageKey {
   |            `- warning: type 'Application.OAuthHelperKey.Value' (aka 'OAuthHelper') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
18 |         typealias Value = OAuthHelper
19 |     }
[2237/2261] Compiling VaporOAuth CodeManager.swift
[2238/2261] Compiling VaporOAuth ResourceServerRetriever.swift
[2239/2261] Compiling VaporOAuth TokenManager.swift
[2240/2261] Compiling VaporOAuth UserManager.swift
[2241/2261] Compiling VaporOAuth AuthorizeGetHandler.swift
[2242/2261] Compiling VaporOAuth AccessToken.swift
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:4:9: warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 2 |
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
   |         `- warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/CodeManager.swift:2:17: note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 1 | /// Responsible for generating and managing OAuth Codes
 2 | public protocol CodeManager {
   |                 `- note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 3 |     func generateCode(userID: String, clientID: String, redirectURI: String, scopes: [String]?) async throws -> String
 4 |     func getCode(_ code: String) async throws -> OAuthCode?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:5:9: warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
   |         `- warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/TokenManager.swift:3:17: note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol TokenManager {
   |                 `- note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 4 |     func generateAccessRefreshTokens(
 5 |         clientID: String,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:6:9: warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
   |         `- warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ClientRetriever.swift:1:17: note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ClientRetriever {
  |                 `- note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
2 |     func getClient(clientID: String) async throws -> OAuthClient?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:7:9: warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
   |         `- warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/AuthorizeHandler.swift:3:17: note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol AuthorizeHandler {
   |                 `- note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 4 |     func handleAuthorizationRequest(
 5 |         _ request: Request,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:8:9: warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
   |         `- warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/UserManager.swift:1:17: note: protocol 'UserManager' does not conform to the 'Sendable' protocol
1 | public protocol UserManager {
  |                 `- note: protocol 'UserManager' does not conform to the 'Sendable' protocol
2 |     func authenticateUser(username: String, password: String) async throws -> String?
3 |     func getUser(userID: String) async throws -> OAuthUser?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:10:9: warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
   |         `- warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
11 |     let oAuthHelper: OAuthHelper
12 |
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ResourceServerRetriever.swift:1:17: note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ResourceServerRetriever {
  |                 `- note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
2 |     func getServer(_ username: String) async throws -> OAuthResourceServer?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:11:9: warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
11 |     let oAuthHelper: OAuthHelper
   |         `- warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
12 |
13 |     public init(
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:3:15: note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:74:64: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
72 |
73 |         // returning something like "Authenticate with GitHub page"
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
   |                                                                `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:76:103: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
   |                                                                                                       `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:78:54: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
   |                                                      `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
79 |
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:82:92: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
81 |         let resourceServerProtected = app.routes.grouped(tokenIntrospectionAuthMiddleware)
82 |         resourceServerProtected.post("oauth", "token_info", use: tokenIntrospectionHandler.handleRequest)
   |                                                                                            `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
83 |     }
84 | }
[2243/2261] Compiling VaporOAuth RefreshToken.swift
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:4:9: warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 2 |
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
   |         `- warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/CodeManager.swift:2:17: note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 1 | /// Responsible for generating and managing OAuth Codes
 2 | public protocol CodeManager {
   |                 `- note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 3 |     func generateCode(userID: String, clientID: String, redirectURI: String, scopes: [String]?) async throws -> String
 4 |     func getCode(_ code: String) async throws -> OAuthCode?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:5:9: warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
   |         `- warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/TokenManager.swift:3:17: note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol TokenManager {
   |                 `- note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 4 |     func generateAccessRefreshTokens(
 5 |         clientID: String,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:6:9: warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
   |         `- warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ClientRetriever.swift:1:17: note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ClientRetriever {
  |                 `- note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
2 |     func getClient(clientID: String) async throws -> OAuthClient?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:7:9: warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
   |         `- warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/AuthorizeHandler.swift:3:17: note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol AuthorizeHandler {
   |                 `- note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 4 |     func handleAuthorizationRequest(
 5 |         _ request: Request,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:8:9: warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
   |         `- warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/UserManager.swift:1:17: note: protocol 'UserManager' does not conform to the 'Sendable' protocol
1 | public protocol UserManager {
  |                 `- note: protocol 'UserManager' does not conform to the 'Sendable' protocol
2 |     func authenticateUser(username: String, password: String) async throws -> String?
3 |     func getUser(userID: String) async throws -> OAuthUser?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:10:9: warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
   |         `- warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
11 |     let oAuthHelper: OAuthHelper
12 |
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ResourceServerRetriever.swift:1:17: note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ResourceServerRetriever {
  |                 `- note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
2 |     func getServer(_ username: String) async throws -> OAuthResourceServer?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:11:9: warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
11 |     let oAuthHelper: OAuthHelper
   |         `- warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
12 |
13 |     public init(
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:3:15: note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:74:64: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
72 |
73 |         // returning something like "Authenticate with GitHub page"
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
   |                                                                `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:76:103: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
   |                                                                                                       `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:78:54: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
   |                                                      `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
79 |
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:82:92: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
81 |         let resourceServerProtected = app.routes.grouped(tokenIntrospectionAuthMiddleware)
82 |         resourceServerProtected.post("oauth", "token_info", use: tokenIntrospectionHandler.handleRequest)
   |                                                                                            `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
83 |     }
84 | }
[2244/2261] Compiling VaporOAuth OAuth2.swift
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:4:9: warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 2 |
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
   |         `- warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/CodeManager.swift:2:17: note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 1 | /// Responsible for generating and managing OAuth Codes
 2 | public protocol CodeManager {
   |                 `- note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 3 |     func generateCode(userID: String, clientID: String, redirectURI: String, scopes: [String]?) async throws -> String
 4 |     func getCode(_ code: String) async throws -> OAuthCode?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:5:9: warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
   |         `- warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/TokenManager.swift:3:17: note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol TokenManager {
   |                 `- note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 4 |     func generateAccessRefreshTokens(
 5 |         clientID: String,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:6:9: warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
   |         `- warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ClientRetriever.swift:1:17: note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ClientRetriever {
  |                 `- note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
2 |     func getClient(clientID: String) async throws -> OAuthClient?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:7:9: warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
   |         `- warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/AuthorizeHandler.swift:3:17: note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol AuthorizeHandler {
   |                 `- note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 4 |     func handleAuthorizationRequest(
 5 |         _ request: Request,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:8:9: warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
   |         `- warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/UserManager.swift:1:17: note: protocol 'UserManager' does not conform to the 'Sendable' protocol
1 | public protocol UserManager {
  |                 `- note: protocol 'UserManager' does not conform to the 'Sendable' protocol
2 |     func authenticateUser(username: String, password: String) async throws -> String?
3 |     func getUser(userID: String) async throws -> OAuthUser?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:10:9: warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
   |         `- warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
11 |     let oAuthHelper: OAuthHelper
12 |
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ResourceServerRetriever.swift:1:17: note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ResourceServerRetriever {
  |                 `- note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
2 |     func getServer(_ username: String) async throws -> OAuthResourceServer?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:11:9: warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
11 |     let oAuthHelper: OAuthHelper
   |         `- warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
12 |
13 |     public init(
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:3:15: note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:74:64: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
72 |
73 |         // returning something like "Authenticate with GitHub page"
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
   |                                                                `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:76:103: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
   |                                                                                                       `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:78:54: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
   |                                                      `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
79 |
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:82:92: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
81 |         let resourceServerProtected = app.routes.grouped(tokenIntrospectionAuthMiddleware)
82 |         resourceServerProtected.post("oauth", "token_info", use: tokenIntrospectionHandler.handleRequest)
   |                                                                                            `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
83 |     }
84 | }
[2245/2261] Compiling VaporOAuth AuthorizeHandler.swift
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:4:9: warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 2 |
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
   |         `- warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/CodeManager.swift:2:17: note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 1 | /// Responsible for generating and managing OAuth Codes
 2 | public protocol CodeManager {
   |                 `- note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 3 |     func generateCode(userID: String, clientID: String, redirectURI: String, scopes: [String]?) async throws -> String
 4 |     func getCode(_ code: String) async throws -> OAuthCode?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:5:9: warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
   |         `- warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/TokenManager.swift:3:17: note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol TokenManager {
   |                 `- note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 4 |     func generateAccessRefreshTokens(
 5 |         clientID: String,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:6:9: warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
   |         `- warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ClientRetriever.swift:1:17: note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ClientRetriever {
  |                 `- note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
2 |     func getClient(clientID: String) async throws -> OAuthClient?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:7:9: warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
   |         `- warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/AuthorizeHandler.swift:3:17: note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol AuthorizeHandler {
   |                 `- note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 4 |     func handleAuthorizationRequest(
 5 |         _ request: Request,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:8:9: warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
   |         `- warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/UserManager.swift:1:17: note: protocol 'UserManager' does not conform to the 'Sendable' protocol
1 | public protocol UserManager {
  |                 `- note: protocol 'UserManager' does not conform to the 'Sendable' protocol
2 |     func authenticateUser(username: String, password: String) async throws -> String?
3 |     func getUser(userID: String) async throws -> OAuthUser?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:10:9: warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
   |         `- warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
11 |     let oAuthHelper: OAuthHelper
12 |
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ResourceServerRetriever.swift:1:17: note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ResourceServerRetriever {
  |                 `- note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
2 |     func getServer(_ username: String) async throws -> OAuthResourceServer?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:11:9: warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
11 |     let oAuthHelper: OAuthHelper
   |         `- warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
12 |
13 |     public init(
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:3:15: note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:74:64: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
72 |
73 |         // returning something like "Authenticate with GitHub page"
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
   |                                                                `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:76:103: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
   |                                                                                                       `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:78:54: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
   |                                                      `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
79 |
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:82:92: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
81 |         let resourceServerProtected = app.routes.grouped(tokenIntrospectionAuthMiddleware)
82 |         resourceServerProtected.post("oauth", "token_info", use: tokenIntrospectionHandler.handleRequest)
   |                                                                                            `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
83 |     }
84 | }
[2246/2261] Compiling VaporOAuth ClientRetriever.swift
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:4:9: warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 2 |
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
   |         `- warning: stored property 'codeManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any CodeManager'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/CodeManager.swift:2:17: note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 1 | /// Responsible for generating and managing OAuth Codes
 2 | public protocol CodeManager {
   |                 `- note: protocol 'CodeManager' does not conform to the 'Sendable' protocol
 3 |     func generateCode(userID: String, clientID: String, redirectURI: String, scopes: [String]?) async throws -> String
 4 |     func getCode(_ code: String) async throws -> OAuthCode?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:5:9: warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 3 | public struct OAuth2: LifecycleHandler {
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
   |         `- warning: stored property 'tokenManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any TokenManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/TokenManager.swift:3:17: note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol TokenManager {
   |                 `- note: protocol 'TokenManager' does not conform to the 'Sendable' protocol
 4 |     func generateAccessRefreshTokens(
 5 |         clientID: String,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:6:9: warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 4 |     let codeManager: CodeManager
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
   |         `- warning: stored property 'clientRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ClientRetriever'; this is an error in the Swift 6 language mode
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ClientRetriever.swift:1:17: note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ClientRetriever {
  |                 `- note: protocol 'ClientRetriever' does not conform to the 'Sendable' protocol
2 |     func getClient(clientID: String) async throws -> OAuthClient?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:7:9: warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 5 |     let tokenManager: TokenManager
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
   |         `- warning: stored property 'authorizeHandler' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any AuthorizeHandler'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/AuthorizeHandler.swift:3:17: note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public protocol AuthorizeHandler {
   |                 `- note: protocol 'AuthorizeHandler' does not conform to the 'Sendable' protocol
 4 |     func handleAuthorizationRequest(
 5 |         _ request: Request,
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:8:9: warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 6 |     let clientRetriever: ClientRetriever
 7 |     let authorizeHandler: AuthorizeHandler
 8 |     let userManager: UserManager
   |         `- warning: stored property 'userManager' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any UserManager'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/UserManager.swift:1:17: note: protocol 'UserManager' does not conform to the 'Sendable' protocol
1 | public protocol UserManager {
  |                 `- note: protocol 'UserManager' does not conform to the 'Sendable' protocol
2 |     func authenticateUser(username: String, password: String) async throws -> String?
3 |     func getUser(userID: String) async throws -> OAuthUser?
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:10:9: warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
 8 |     let userManager: UserManager
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
   |         `- warning: stored property 'resourceServerRetriever' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'any ResourceServerRetriever'; this is an error in the Swift 6 language mode
11 |     let oAuthHelper: OAuthHelper
12 |
/host/spi-builder-workspace/Sources/VaporOAuth/Protocols/ResourceServerRetriever.swift:1:17: note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
1 | public protocol ResourceServerRetriever {
  |                 `- note: protocol 'ResourceServerRetriever' does not conform to the 'Sendable' protocol
2 |     func getServer(_ username: String) async throws -> OAuthResourceServer?
3 | }
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:11:9: warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
 9 |     let validScopes: [String]?
10 |     let resourceServerRetriever: ResourceServerRetriever
11 |     let oAuthHelper: OAuthHelper
   |         `- warning: stored property 'oAuthHelper' of 'Sendable'-conforming struct 'OAuth2' has non-sendable type 'OAuthHelper'; this is an error in the Swift 6 language mode
12 |
13 |     public init(
/host/spi-builder-workspace/Sources/VaporOAuth/Helper/OAuthHelper.swift:3:15: note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 1 | import Vapor
 2 |
 3 | public struct OAuthHelper {
   |               `- note: consider making struct 'OAuthHelper' conform to the 'Sendable' protocol
 4 |     public var assertScopes: ([String]?, Request) async throws -> Void
 5 |     public var user: (Request) async throws -> OAuthUser
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:74:64: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
72 |
73 |         // returning something like "Authenticate with GitHub page"
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
   |                                                                `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:76:103: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
74 |         app.get("oauth", "authorize", use: authorizeGetHandler.handleRequest)
75 |         // pressing something like "Allow/Deny Access" button on "Authenticate with GitHub page". Returns a code.
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
   |                                                                                                       `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:78:54: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
76 |         app.grouped(OAuthUser.guardMiddleware()).post("oauth", "authorize", use: authorizePostHandler.handleRequest)
77 |         // client requesting access/refresh token with code from POST /authorize endpoint
78 |         app.post("oauth", "token", use: tokenHandler.handleRequest)
   |                                                      `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
79 |
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
/host/spi-builder-workspace/Sources/VaporOAuth/OAuth2.swift:82:92: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
80 |         let tokenIntrospectionAuthMiddleware = TokenIntrospectionAuthMiddleware(resourceServerAuthenticator: resourceServerAuthenticator)
81 |         let resourceServerProtected = app.routes.grouped(tokenIntrospectionAuthMiddleware)
82 |         resourceServerProtected.post("oauth", "token_info", use: tokenIntrospectionHandler.handleRequest)
   |                                                                                            `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
83 |     }
84 | }
[2247/2261] Compiling VaporOAuth AuthorizePostHandler.swift
[2248/2261] Compiling VaporOAuth TokenHandler.swift
[2249/2261] Compiling VaporOAuth AuthCodeTokenHandler.swift
[2250/2261] Compiling VaporOAuth ClientCredentialsTokenHandler.swift
[2251/2261] Compiling VaporOAuth PasswordTokenHandler.swift
[2252/2261] Compiling VaporOAuth RefreshTokenHandler.swift
[2253/2261] Compiling VaporOAuth TokenResponseGenerator.swift
[2254/2261] Compiling VaporOAuth TokenIntrospectionHandler.swift
[2255/2261] Compiling VaporOAuth OAuthFlowType.swift
[2256/2261] Compiling VaporOAuth StringDefines.swift
[2257/2261] Compiling VaporOAuth TokenAuthenticator.swift
[2258/2261] Compiling VaporOAuth ClientValidator.swift
[2259/2261] Compiling VaporOAuth CodeValidator.swift
[2260/2261] Compiling VaporOAuth ResourceServerAuthenticator.swift
[2261/2261] Compiling VaporOAuth ScopeValidator.swift
Build complete! (150.94s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "vapor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.111.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/vapor.git"
    }
  ],
  "manifest_display_name" : "vapor-oauth",
  "name" : "vapor-oauth",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "OAuth",
      "targets" : [
        "VaporOAuth"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "VaporOAuthTests",
      "module_type" : "SwiftTarget",
      "name" : "VaporOAuthTests",
      "path" : "Tests/VaporOAuthTests",
      "product_dependencies" : [
        "XCTVapor"
      ],
      "sources" : [
        "Application+testable.swift",
        "AuthorizationTests/AuthorizationRequestTests.swift",
        "AuthorizationTests/AuthorizationResponseTests.swift",
        "DefaultImplementationTests/DefaultImplementationTests.swift",
        "Fakes/AccessToken.swift",
        "Fakes/CapturingAuthorizeHandler.swift",
        "Fakes/CapturingLogger.swift",
        "Fakes/FakeAuthenticationMiddleware.swift",
        "Fakes/FakeClientGetter.swift",
        "Fakes/FakeCodeManager.swift",
        "Fakes/FakeResourceServerRetriever.swift",
        "Fakes/FakeSessions.swift",
        "Fakes/FakeTokenManager.swift",
        "Fakes/FakeUserManager.swift",
        "Fakes/RefreshToken.swift",
        "Fakes/StubCodeManager.swift",
        "Fakes/StubTokenManager.swift",
        "Fakes/StubUserManager.swift",
        "GrantTests/AuthorizationCodeTokenTests.swift",
        "GrantTests/ClientCredentialsTokenTests.swift",
        "GrantTests/ImplicitGrantTests.swift",
        "GrantTests/PasswordGrantTokenTests.swift",
        "GrantTests/TokenRefreshTests.swift",
        "Helpers/HTTPHeaders+location.swift",
        "Helpers/Responses.swift",
        "Helpers/TestDataBuilder.swift",
        "IntegrationTests/AuthCodeResourceServerTests.swift",
        "TokenIntrospectionTests/TokenIntrospectionTests.swift"
      ],
      "target_dependencies" : [
        "VaporOAuth"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VaporOAuth",
      "module_type" : "SwiftTarget",
      "name" : "VaporOAuth",
      "path" : "Sources/VaporOAuth",
      "product_dependencies" : [
        "Vapor"
      ],
      "product_memberships" : [
        "OAuth"
      ],
      "sources" : [
        "DefaultImplementations/EmptyAuthorizationHandler.swift",
        "DefaultImplementations/EmptyCodeManager.swift",
        "DefaultImplementations/EmptyResourceServerRetriever.swift",
        "DefaultImplementations/EmptyUserManager.swift",
        "DefaultImplementations/StaticClientRetriever.swift",
        "Helper/OAuthHelper+local.swift",
        "Helper/OAuthHelper+remote.swift",
        "Helper/OAuthHelper.swift",
        "Middleware/OAuth2ScopeMiddleware.swift",
        "Middleware/OAuth2TokenIntrospectionMiddleware.swift",
        "Middleware/TokenIntrospectionAuthenticationMiddleware.swift",
        "Models/OAuthClient.swift",
        "Models/OAuthCode.swift",
        "Models/OAuthResourceServer.swift",
        "Models/OAuthUser.swift",
        "Models/Tokens/AccessToken.swift",
        "Models/Tokens/RefreshToken.swift",
        "OAuth2.swift",
        "Protocols/AuthorizeHandler.swift",
        "Protocols/ClientRetriever.swift",
        "Protocols/CodeManager.swift",
        "Protocols/ResourceServerRetriever.swift",
        "Protocols/TokenManager.swift",
        "Protocols/UserManager.swift",
        "RouteHandlers/AuthorizeGetHandler.swift",
        "RouteHandlers/AuthorizePostHandler.swift",
        "RouteHandlers/TokenHandler.swift",
        "RouteHandlers/TokenHandlers/AuthCodeTokenHandler.swift",
        "RouteHandlers/TokenHandlers/ClientCredentialsTokenHandler.swift",
        "RouteHandlers/TokenHandlers/PasswordTokenHandler.swift",
        "RouteHandlers/TokenHandlers/RefreshTokenHandler.swift",
        "RouteHandlers/TokenHandlers/TokenResponseGenerator.swift",
        "RouteHandlers/TokenIntrospectionHandler.swift",
        "Utilities/OAuthFlowType.swift",
        "Utilities/StringDefines.swift",
        "Utilities/TokenAuthenticator.swift",
        "Validators/ClientValidator.swift",
        "Validators/CodeValidator.swift",
        "Validators/ResourceServerAuthenticator.swift",
        "Validators/ScopeValidator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:081dcf4fb829aea9d08447f4790431afbdfbcc335bfeed728ca69c6f181ae2aa
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.