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 CrudRouter, reference 4.0.0 (e9e12d), with Swift 6.1 for Linux on 26 Apr 2025 17:54:33 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/twof/vaporcrudrouter.git
Reference: 4.0.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/twof/vaporcrudrouter
 * tag               4.0.0      -> FETCH_HEAD
HEAD is now at e9e12d9 Merge pull request #10 from twof/4
Cloned https://github.com/twof/vaporcrudrouter.git
Revision (git rev-parse @):
e9e12d9ca697b8317eefe21a6751035769e90af9
SUCCESS checkout https://github.com/twof/vaporcrudrouter.git at 4.0.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/twof/vaporcrudrouter.git
https://github.com/twof/vaporcrudrouter.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "vapor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.53.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/vapor.git"
    },
    {
      "identity" : "fluent",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.4.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/fluent.git"
    },
    {
      "identity" : "fluent-sqlite-driver",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.1.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/fluent-sqlite-driver.git"
    }
  ],
  "manifest_display_name" : "CrudRouter",
  "name" : "CrudRouter",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "CrudRouter",
      "targets" : [
        "CrudRouter"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CrudRouterIntegrationTests",
      "module_type" : "SwiftTarget",
      "name" : "CrudRouterIntegrationTests",
      "path" : "Tests/CrudRouterIntegrationTests",
      "product_dependencies" : [
        "FluentSQLiteDriver",
        "XCTVapor"
      ],
      "sources" : [
        "HighRecursiveDepthTests.swift",
        "PublicAPITests.swift",
        "ResponseTests/CrudRouteDeleteResponseTests.swift",
        "ResponseTests/CrudRouteGetResponseTests.swift",
        "ResponseTests/CrudRoutePostResponseTests.swift",
        "ResponseTests/CrudRoutePutResponseTests.swift",
        "RouteCreationTests/CrudChildrenRouteCreationTests.swift",
        "RouteCreationTests/CrudParentRouteCreationTests.swift",
        "RouteCreationTests/CrudRouteCreationTests.swift",
        "RouteCreationTests/CrudSiblingsRouteCreationTests.swift",
        "TestSetup/TestMigrations/BaseGalaxySeeding.swift",
        "TestSetup/TestMigrations/ChildSeeding.swift",
        "TestSetup/TestMigrations/SiblingSeeding.swift",
        "TestSetup/TestModels/Galaxy.swift",
        "TestSetup/TestModels/Planet.swift",
        "TestSetup/TestModels/PlanetTag.swift",
        "TestSetup/TestModels/Tag.swift"
      ],
      "target_dependencies" : [
        "CrudRouter"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CrudRouter",
      "module_type" : "SwiftTarget",
      "name" : "CrudRouter",
      "path" : "Sources/CrudRouter",
      "product_dependencies" : [
        "Vapor",
        "Fluent",
        "FluentSQLiteDriver"
      ],
      "product_memberships" : [
        "CrudRouter"
      ],
      "sources" : [
        "ControllerProtocols/CrudChildrenControllerProtocol.swift",
        "ControllerProtocols/CrudControllerProtocol.swift",
        "ControllerProtocols/CrudParentControllerProtocol.swift",
        "ControllerProtocols/CrudSiblingsControllerProtocol.swift",
        "ControllerProtocols/Crudable.swift",
        "CrudChildrenController.swift",
        "CrudController.swift",
        "CrudParentController.swift",
        "CrudSiblingsController.swift",
        "Extensions/Array.swift",
        "Extensions/Request.swift",
        "Extensions/Router+CRUD.swift",
        "Extensions/String.swift",
        "RouterMethods/ChildrenRouterMethod.swift",
        "RouterMethods/OnlyExceptEither.swift",
        "RouterMethods/ParentRouterMethod.swift",
        "RouterMethods/RouterMethod.swift",
        "RouterMethods/SiblingRouterMethod.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Fetching https://github.com/vapor/fluent-sqlite-driver.git
Fetching https://github.com/vapor/fluent.git
Fetching https://github.com/vapor/vapor.git
[1/1347] Fetching fluent-sqlite-driver
[69/14754] Fetching fluent-sqlite-driver, fluent
[11672/89067] Fetching fluent-sqlite-driver, fluent, vapor
Fetched https://github.com/vapor/fluent-sqlite-driver.git from cache (0.70s)
Fetched https://github.com/vapor/fluent.git from cache (0.71s)
[14863/74313] Fetching vapor
Fetched https://github.com/vapor/vapor.git from cache (2.59s)
Computing version for https://github.com/vapor/fluent.git
Computed https://github.com/vapor/fluent.git at 4.12.0 (3.13s)
Fetching https://github.com/vapor/fluent-kit.git
[1/13241] Fetching fluent-kit
Fetched https://github.com/vapor/fluent-kit.git from cache (0.61s)
Computing version for https://github.com/vapor/fluent-kit.git
Computed https://github.com/vapor/fluent-kit.git at 1.52.1 (1.36s)
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/vapor/sql-kit.git
Fetching https://github.com/apple/swift-log.git
[1/5983] Fetching sql-kit
[241/9819] Fetching sql-kit, swift-log
[9820/85250] Fetching sql-kit, swift-log, swift-nio
Fetched https://github.com/vapor/sql-kit.git from cache (0.51s)
[5345/79267] Fetching swift-log, swift-nio
Fetched https://github.com/apple/swift-log.git from cache (0.55s)
[3772/75431] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (5.79s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (6.33s)
Computing version for https://github.com/vapor/sql-kit.git
Computed https://github.com/vapor/sql-kit.git at 3.33.0 (0.50s)
Fetching https://github.com/apple/swift-collections.git
[1/16242] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.15s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.82.0 (2.05s)
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-system.git
[1/1705] Fetching swift-atomics
[530/6058] Fetching swift-atomics, swift-system
Fetched https://github.com/apple/swift-system.git from cache (0.44s)
Fetched https://github.com/apple/swift-atomics.git from cache (0.46s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (1.01s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.2 (0.49s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (0.92s)
Computing version for https://github.com/vapor/fluent-sqlite-driver.git
Computed https://github.com/vapor/fluent-sqlite-driver.git at 4.8.1 (0.95s)
Fetching https://github.com/vapor/sqlite-kit.git
[1/2112] Fetching sqlite-kit
Fetched https://github.com/vapor/sqlite-kit.git from cache (0.79s)
Computing version for https://github.com/vapor/sqlite-kit.git
Computed https://github.com/vapor/sqlite-kit.git at 4.5.2 (1.31s)
Fetching https://github.com/vapor/sqlite-nio.git
Fetching https://github.com/vapor/async-kit.git
[1/1496] Fetching sqlite-nio
[2/3866] Fetching sqlite-nio, async-kit
Fetched https://github.com/vapor/async-kit.git from cache (2.25s)
Fetched https://github.com/vapor/sqlite-nio.git from cache (2.26s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.20.0 (2.99s)
Fetching https://github.com/apple/swift-algorithms.git
[1/5903] Fetching swift-algorithms
Fetched https://github.com/apple/swift-algorithms.git from cache (0.39s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (4.06s)
Fetching https://github.com/apple/swift-numerics.git
[1/5674] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.84s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (3.60s)
Computing version for https://github.com/vapor/sqlite-nio.git
Computed https://github.com/vapor/sqlite-nio.git at 1.11.2 (0.61s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.114.1 (0.72s)
Fetching https://github.com/vapor/multipart-kit.git
Fetching https://github.com/vapor/websocket-kit.git
Fetching https://github.com/apple/swift-metrics.git
Fetching https://github.com/apple/swift-service-context.git
Fetching https://github.com/apple/swift-distributed-tracing.git
Fetching https://github.com/apple/swift-nio-extras.git
[1/1059] Fetching swift-service-context
[647/4267] Fetching swift-service-context, multipart-kit
[2023/6467] Fetching swift-service-context, multipart-kit, swift-metrics
[2554/11437] Fetching swift-service-context, multipart-kit, swift-metrics, swift-distributed-tracing
[3095/14024] Fetching swift-service-context, multipart-kit, swift-metrics, swift-distributed-tracing, websocket-kit
[3488/19686] Fetching swift-service-context, multipart-kit, swift-metrics, swift-distributed-tracing, websocket-kit, swift-nio-extras
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (0.60s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (0.60s)
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/apple/swift-nio-ssl.git
[7484/20546] Fetching swift-service-context, multipart-kit, swift-metrics, websocket-kit, swift-nio-http2
[10013/35339] Fetching swift-service-context, multipart-kit, swift-metrics, websocket-kit, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/vapor/websocket-kit.git from cache (2.01s)
Fetched https://github.com/apple/swift-metrics.git from cache (2.01s)
Fetched https://github.com/apple/swift-service-context.git from cache (2.01s)
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/vapor/routing-kit.git
Fetching https://github.com/vapor/console-kit.git
[25005/29493] Fetching multipart-kit, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/vapor/multipart-kit.git from cache (2.13s)
[21996/26285] Fetching swift-nio-http2, swift-nio-ssl
Fetching https://github.com/swift-server/async-http-client.git
[24955/31770] Fetching swift-nio-http2, swift-nio-ssl, console-kit
[27396/52493] Fetching swift-nio-http2, swift-nio-ssl, console-kit, routing-kit
[35709/66277] Fetching swift-nio-http2, swift-nio-ssl, console-kit, routing-kit, swift-crypto
Fetched https://github.com/vapor/console-kit.git from cache (0.46s)
[34021/60792] Fetching swift-nio-http2, swift-nio-ssl, routing-kit, swift-crypto
[40100/74579] Fetching swift-nio-http2, swift-nio-ssl, routing-kit, swift-crypto, async-http-client
Fetched https://github.com/apple/swift-nio-http2.git from cache (2.77s)
[53577/63087] Fetching swift-nio-ssl, routing-kit, swift-crypto, async-http-client
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.81s)
[39335/48294] Fetching routing-kit, swift-crypto, async-http-client
Fetched https://github.com/swift-server/async-http-client.git from cache (1.32s)
[26099/34507] Fetching routing-kit, swift-crypto
Fetched https://github.com/vapor/routing-kit.git from cache (1.51s)
[6065/13784] Fetching swift-crypto
Fetched https://github.com/apple/swift-crypto.git from cache (3.73s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.1 (7.05s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.15.0 (0.81s)
Fetching https://github.com/apple/swift-nio-transport-services.git
[1/2619] Fetching swift-nio-transport-services
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (0.45s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.0 (1.20s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.6.1 (0.62s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.26.0 (0.61s)
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-http-structured-headers.git
[1/904] Fetching swift-http-types
[806/2031] Fetching swift-http-types, swift-http-structured-headers
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.27s)
Fetched https://github.com/apple/swift-http-types.git from cache (0.27s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.2.2 (0.79s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (0.53s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.2.0 (0.53s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.25.2 (0.55s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.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.30.0 (0.66s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (0.56s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (0.59s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.1 (0.50s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (2.47s)
Fetching https://github.com/apple/swift-asn1.git
[1/1573] Fetching swift-asn1
Fetched https://github.com/apple/swift-asn1.git from cache (0.25s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (1.20s)
Creating working copy for https://github.com/vapor/console-kit.git
Working copy of https://github.com/vapor/console-kit.git resolved at 4.15.2
Creating working copy for https://github.com/vapor/fluent.git
Working copy of https://github.com/vapor/fluent.git resolved at 4.12.0
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.2.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.2
Creating working copy for https://github.com/vapor/fluent-kit.git
Working copy of https://github.com/vapor/fluent-kit.git resolved at 1.52.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.24.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-distributed-tracing.git
Working copy of https://github.com/apple/swift-distributed-tracing.git resolved at 1.2.0
Creating working copy for https://github.com/vapor/sqlite-nio.git
Working copy of https://github.com/vapor/sqlite-nio.git resolved at 1.11.2
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.2
Creating working copy for https://github.com/apple/swift-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.1
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/vapor/fluent-sqlite-driver.git
Working copy of https://github.com/vapor/fluent-sqlite-driver.git resolved at 4.8.1
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.12.3
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.30.0
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 4.114.1
Creating working copy for https://github.com/vapor/sql-kit.git
Working copy of https://github.com/vapor/sql-kit.git resolved at 3.33.0
Creating working copy for https://github.com/vapor/sqlite-kit.git
Working copy of https://github.com/vapor/sqlite-kit.git resolved at 4.5.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.6.1
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.2.0
Creating working copy for https://github.com/vapor/multipart-kit.git
Working copy of https://github.com/vapor/multipart-kit.git resolved at 4.7.1
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.82.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/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/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.26.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/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.25.2
Building for debugging...
[0/839] Write sources
[53/839] Compiling _NumericsShims _NumericsShims.c
[54/839] Compiling _AtomicsShims.c
[55/839] Compiling CNIOWindows shim.c
[56/839] Compiling CNIOWindows WSAStartup.c
[57/839] Compiling CNIOWASI CNIOWASI.c
[58/839] Compiling CVaporBcrypt bcrypt.c
[59/839] Compiling CSystem shims.c
[60/839] Compiling CNIOSHA1 c_nio_sha1.c
[61/839] Compiling CVaporBcrypt blf.c
[62/839] Compiling CNIOLinux liburing_shims.c
[63/839] Compiling CNIODarwin shim.c
[64/839] Compiling CNIOExtrasZlib empty.c
[65/839] Compiling CNIOLinux shim.c
[66/839] Compiling CNIOLLHTTP c_nio_http.c
[67/839] Compiling fiat_p256_adx_sqr.S
[68/839] Compiling CNIOLLHTTP c_nio_api.c
[69/839] Compiling fiat_curve25519_adx_square.S
[70/839] Compiling fiat_p256_adx_mul.S
[71/839] Write swift-version-24593BA9C3E375BF.txt
[72/839] Compiling fiat_curve25519_adx_mul.S
[73/839] Compiling CNIOLLHTTP c_nio_llhttp.c
[74/845] Compiling CNIOBoringSSLShims shims.c
[75/873] Compiling tls13_server.cc
[76/873] Compiling tls_record.cc
[77/886] Compiling tls_method.cc
[78/886] Compiling tls13_enc.cc
[80/908] Emitting module RealModule
[81/909] Compiling ServiceContextModule ServiceContextKey.swift
[82/909] Compiling RealModule RealFunctions.swift
[83/909] Compiling InternalCollectionsUtilities _SortedCollection.swift
[84/909] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[85/911] Compiling InternalCollectionsUtilities Debugging.swift
[86/911] Compiling InternalCollectionsUtilities Descriptions.swift
[87/911] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[88/911] Compiling InternalCollectionsUtilities Specialize.swift
[89/911] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[90/911] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[91/911] Compiling InternalCollectionsUtilities UInt+reversed.swift
[92/911] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[93/911] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[94/911] Compiling InternalCollectionsUtilities Integer rank.swift
[95/911] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[96/911] Compiling _NIODataStructures _TinyArray.swift
[97/911] Compiling RealModule Real.swift
[98/911] Emitting module ServiceContextModule
[99/911] Compiling ServiceContextModule ServiceContext.swift
[100/911] Emitting module InternalCollectionsUtilities
[101/911] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[102/911] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[103/911] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[104/912] Compiling RealModule Float80+Real.swift
[105/912] Compiling RealModule Float16+Real.swift
[106/912] Compiling SystemPackage MachPort.swift
[107/912] Compiling SystemPackage PlatformString.swift
[108/912] Compiling SystemPackage SystemString.swift
[109/915] Compiling RealModule Float+Real.swift
[110/915] Compiling RealModule ElementaryFunctions.swift
[111/915] Emitting module _NIOBase64
[112/915] Compiling _NIOBase64 Base64.swift
[113/915] Compiling _NIODataStructures PriorityQueue.swift
[118/916] Emitting module SystemPackage
[134/917] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[135/917] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[137/927] Compiling Instrumentation MultiplexInstrument.swift
[138/927] Compiling SystemPackage Util+StringArray.swift
[139/927] Compiling SystemPackage Util.swift
[140/927] Compiling SystemPackage UtilConsumers.swift
[141/927] Compiling Instrumentation NoOpInstrument.swift
[142/927] Compiling Instrumentation Instrument.swift
[143/995] Emitting module Instrumentation
[144/995] Compiling Instrumentation InstrumentationSystem.swift
[145/995] Compiling Instrumentation Locks.swift
[146/996] Emitting module Logging
[147/996] Compiling Logging Locks.swift
[148/996] Compiling Logging MetadataProvider.swift
[150/996] Compiling Logging LogHandler.swift
[151/996] Compiling Logging Logging.swift
[152/996] Compiling _RopeModule BigString+Append.swift
[153/996] Compiling _RopeModule BigString+Initializers.swift
[154/996] Compiling _RopeModule BigString+Insert.swift
[155/996] Compiling _RopeModule BigString+Managing Breaks.swift
[156/996] Emitting module _NIODataStructures
[157/996] Compiling _NIODataStructures Heap.swift
[158/997] Compiling _RopeModule BigString+Iterators.swift
[159/997] Compiling _RopeModule BigString+Metrics.swift
[160/997] Compiling _RopeModule BigString+Summary.swift
[161/997] Compiling _RopeModule BigString.swift
[162/997] Compiling _RopeModule BigString+Debugging.swift
[163/997] Compiling _RopeModule BigString+Index.swift
[164/997] Compiling _RopeModule BigString+Ingester.swift
[165/997] Compiling _RopeModule BigString+Invariants.swift
[169/1061] Compiling CoreMetrics Metrics.swift
[170/1061] Compiling CoreMetrics Locks.swift
[171/1061] Emitting module CoreMetrics
[173/1076] Compiling HeapModule Heap+Descriptions.swift
[174/1076] Compiling HeapModule _HeapNode.swift
[175/1076] Compiling HeapModule Heap.swift
[176/1076] Emitting module Tracing
[177/1099] Compiling HeapModule Heap+UnsafeHandle.swift
[178/1099] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[179/1099] Compiling HeapModule Heap+Invariants.swift
[180/1141] Compiling Tracing TracingTime.swift
[181/1152] Emitting module HeapModule
[182/1153] Compiling Tracing InstrumentationSystem+Tracing.swift
[183/1153] Compiling Tracing TracerProtocol+Legacy.swift
[184/1153] Compiling Tracing TracerProtocol.swift
[186/1153] Compiling Tracing Tracer.swift
[187/1153] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[188/1153] Compiling HashTreeCollections _HashTreeIterator.swift
[189/1153] Compiling HashTreeCollections _HashTreeStatistics.swift
[190/1153] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[191/1153] Compiling HashTreeCollections _RawHashNode.swift
[192/1153] Compiling HashTreeCollections _UnmanagedHashNode.swift
[193/1153] Compiling HashTreeCollections _UnsafePath.swift
[194/1153] Compiling HashTreeCollections TreeDictionary+Codable.swift
[195/1153] Compiling HashTreeCollections TreeDictionary+Collection.swift
[196/1153] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[197/1153] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[198/1153] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[199/1153] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[200/1153] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[201/1160] Compiling HashTreeCollections TreeDictionary+Filter.swift
[202/1160] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[203/1160] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[204/1160] Compiling HashTreeCollections TreeDictionary+Keys.swift
[205/1160] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[206/1160] Compiling HashTreeCollections TreeDictionary+Merge.swift
[207/1160] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[208/1160] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[208/1162] Compiling tls13_client.cc
[210/1162] Compiling HashTreeCollections TreeSet+Hashable.swift
[211/1162] Compiling HashTreeCollections TreeSet+Sendable.swift
[212/1162] Compiling HashTreeCollections TreeSet+Sequence.swift
[213/1162] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[214/1162] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[215/1162] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[216/1162] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[217/1162] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[218/1162] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[219/1162] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[220/1172] Compiling HashTreeCollections _HashSlot.swift
[221/1172] Compiling HashTreeCollections _HashStack.swift
[222/1172] Compiling HashTreeCollections _AncestorHashSlots.swift
[223/1172] Compiling HashTreeCollections _Bitmap.swift
[224/1172] Compiling HashTreeCollections _Bucket.swift
[225/1172] Compiling HashTreeCollections _Hash.swift
[226/1172] Compiling HashTreeCollections _HashLevel.swift
[227/1172] Compiling HashTreeCollections _HashNode+Builder.swift
[228/1172] Compiling HashTreeCollections _HashNode+Debugging.swift
[229/1172] Compiling HashTreeCollections _HashNode+Initializers.swift
[230/1181] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[231/1181] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[232/1181] Compiling HashTreeCollections _HashNode+Storage.swift
[233/1181] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[234/1181] Compiling HashTreeCollections _HashNode+Structural filter.swift
[235/1181] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[236/1181] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[237/1181] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[238/1181] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[239/1181] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[240/1190] Compiling Tracing NoOpTracer.swift
[241/1190] Compiling Tracing SpanProtocol.swift
[243/1197] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[244/1197] Compiling OrderedCollections OrderedSet.swift
[245/1197] Compiling OrderedCollections _UnsafeBitset.swift
[246/1197] Compiling HashTreeCollections TreeSet+Equatable.swift
[247/1197] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[248/1197] Compiling HashTreeCollections TreeSet+Extras.swift
[249/1197] Compiling HashTreeCollections TreeSet+Filter.swift
[257/1197] Compiling OrderedCollections OrderedSet+Sendable.swift
[258/1197] Compiling OrderedCollections OrderedSet+SubSequence.swift
[259/1197] Compiling OrderedCollections OrderedSet+Testing.swift
[260/1197] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[261/1197] Compiling DequeModule _DequeBuffer.swift
[262/1197] Compiling DequeModule _DequeBufferHeader.swift
[263/1197] Compiling DequeModule Deque._UnsafeHandle.swift
[264/1197] Compiling DequeModule Deque.swift
[265/1197] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[266/1197] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[267/1197] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[268/1197] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[269/1197] Compiling HashTreeCollections _HashNode.swift
[270/1197] Compiling HashTreeCollections _HashNodeHeader.swift
[271/1197] Compiling DequeModule Deque+CustomReflectable.swift
[272/1197] Compiling DequeModule Deque+Descriptions.swift
[296/1199] Compiling DequeModule Deque+Equatable.swift
[297/1199] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[306/1199] Compiling DequeModule Deque+Testing.swift
[307/1199] Compiling DequeModule Deque._Storage.swift
[312/1199] Compiling DequeModule _DequeSlot.swift
[313/1199] Compiling DequeModule _UnsafeWrappedBuffer.swift
[314/1199] Compiling DequeModule Deque+Codable.swift
[315/1199] Compiling DequeModule Deque+Collection.swift
[320/1199] Compiling DequeModule Deque+Extras.swift
[321/1199] Compiling DequeModule Deque+Hashable.swift
[328/1199] Compiling HashTreeCollections _HashNode+Invariants.swift
[329/1199] Compiling HashTreeCollections _HashNode+Lookups.swift
[334/1199] Compiling _RopeModule _CharacterRecognizer.swift
[335/1199] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[336/1199] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[337/1199] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[338/1199] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[339/1199] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[340/1199] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[341/1199] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[342/1199] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[343/1199] Compiling HashTreeCollections TreeSet.swift
[354/1199] Compiling CSQLite sqlite_nio_sqlite3.c
[358/1199] Emitting module _RopeModule
[370/1199] Emitting module DequeModule
[372/1200] Emitting module OrderedCollections
[373/1201] Compiling RoutingKit Router.swift
[374/1201] Compiling RoutingKit TrieRouter.swift
[375/1201] Compiling RoutingKit PathComponent.swift
[377/1201] Compiling _RopeModule Rope+Join.swift
[378/1201] Compiling _RopeModule Rope+MutatingForEach.swift
[379/1201] Compiling _RopeModule Rope+Remove.swift
[380/1201] Compiling _RopeModule Rope+RemoveSubrange.swift
[381/1201] Compiling _RopeModule Rope+Split.swift
[382/1201] Compiling _RopeModule Optional Utilities.swift
[383/1201] Compiling _RopeModule String Utilities.swift
[384/1201] Compiling _RopeModule String.Index+ABI.swift
[385/1201] Compiling tls13_both.cc
[387/1201] Compiling RoutingKit AnyRouter.swift
[388/1201] Emitting module RoutingKit
[389/1201] Emitting module Metrics
[390/1201] Compiling RoutingKit Parameters.swift
[391/1201] Compiling Metrics Metrics.swift
[445/1204] Compiling t1_enc.cc
[447/1204] Compiling ssl_versions.cc
[449/1204] Emitting module HashTreeCollections
[450/1205] Compiling ssl_transcript.cc
[451/1205] Compiling ssl_x509.cc
[452/1205] Compiling ssl_stat.cc
[453/1205] Compiling ssl_session.cc
[454/1205] Compiling ssl_key_share.cc
[455/1205] Compiling ssl_privkey.cc
[456/1205] Compiling ssl_lib.cc
[457/1205] Compiling ssl_file.cc
[458/1205] Compiling ssl_credential.cc
[459/1205] Compiling ssl_cipher.cc
[460/1205] Compiling ssl_cert.cc
[461/1205] Compiling ssl_buffer.cc
[462/1205] Compiling ssl_aead_ctx.cc
[463/1205] Compiling s3_lib.cc
[464/1205] Compiling ssl_asn1.cc
[465/1205] Compiling s3_both.cc
[466/1205] Compiling s3_pkt.cc
[467/1205] Compiling handshake_server.cc
[468/1205] Compiling handshake_client.cc
[469/1205] Compiling handshake.cc
[470/1205] Compiling handoff.cc
[471/1205] Compiling dtls_record.cc
[472/1205] Compiling extensions.cc
[473/1205] Compiling encrypted_client_hello.cc
[474/1205] Compiling md5-x86_64-linux.S
[475/1205] Compiling dtls_method.cc
[476/1205] Compiling md5-x86_64-apple.S
[477/1205] Compiling md5-586-linux.S
[478/1205] Compiling md5-586-apple.S
[479/1205] Compiling chacha20_poly1305_x86_64-apple.S
[480/1205] Compiling chacha20_poly1305_x86_64-linux.S
[481/1205] Compiling chacha20_poly1305_armv8-win.S
[482/1205] Compiling chacha20_poly1305_armv8-linux.S
[483/1205] Compiling chacha20_poly1305_armv8-apple.S
[484/1205] Compiling d1_pkt.cc
[485/1205] Compiling err_data.cc
[486/1205] Compiling chacha-x86-linux.S
[486/1205] Compiling chacha-x86_64-linux.S
[488/1205] Compiling chacha-x86_64-apple.S
[489/1205] Compiling chacha-armv8-win.S
[490/1205] Compiling chacha-armv8-apple.S
[491/1205] Compiling chacha-x86-apple.S
[492/1205] Compiling chacha-armv8-linux.S
[493/1205] Compiling chacha-armv4-linux.S
[494/1205] Compiling d1_srtp.cc
[495/1205] Compiling x86_64-mont5-linux.S
[496/1205] Compiling aes128gcmsiv-x86_64-apple.S
[497/1205] Compiling x86_64-mont5-apple.S
[498/1205] Compiling aes128gcmsiv-x86_64-linux.S
[499/1205] Compiling x86_64-mont-linux.S
[500/1205] Compiling x86_64-mont-apple.S
[501/1205] Compiling x86-mont-linux.S
[502/1205] Compiling x86-mont-apple.S
[503/1205] Compiling bio_ssl.cc
[504/1205] Compiling vpaes-x86_64-linux.S
[505/1205] Compiling vpaes-x86_64-apple.S
[506/1205] Compiling vpaes-armv8-win.S
[507/1205] Compiling vpaes-armv8-apple.S
[508/1205] Compiling vpaes-x86-apple.S
[509/1205] Compiling vpaes-x86-linux.S
[510/1205] Compiling vpaes-armv8-linux.S
[511/1205] Compiling vpaes-armv7-linux.S
[512/1205] Compiling sha512-armv8-win.S
[513/1205] Compiling sha512-armv8-linux.S
[514/1205] Compiling sha512-x86_64-apple.S
[515/1205] Compiling sha512-x86_64-linux.S
[516/1205] Compiling sha512-armv8-apple.S
[517/1205] Compiling sha512-armv4-linux.S
[518/1205] Compiling sha512-586-linux.S
[519/1205] Compiling sha512-586-apple.S
[520/1205] Compiling sha256-x86_64-apple.S
[521/1205] Compiling sha256-x86_64-linux.S
[522/1205] Compiling sha256-armv8-win.S
[523/1205] Compiling sha256-armv8-apple.S
[524/1205] Compiling sha256-586-linux.S
[525/1205] Compiling sha256-armv8-linux.S
[526/1205] Compiling sha256-armv4-linux.S
[527/1205] Compiling sha256-586-apple.S
[528/1205] Compiling sha1-armv8-win.S
[529/1205] Compiling sha1-armv8-linux.S
[529/1205] Compiling sha1-armv8-apple.S
[531/1205] Compiling sha1-x86_64-apple.S
[532/1205] Compiling sha1-armv4-large-linux.S
[533/1205] Compiling sha1-586-apple.S
[534/1205] Compiling sha1-x86_64-linux.S
[535/1205] Compiling rsaz-avx2-linux.S
[536/1205] Compiling sha1-586-linux.S
[537/1205] Compiling rdrand-x86_64-apple.S
[538/1205] Compiling rsaz-avx2-apple.S
[539/1205] Compiling rdrand-x86_64-linux.S
[540/1205] Compiling p256_beeu-x86_64-asm-apple.S
[541/1205] Compiling p256_beeu-x86_64-asm-linux.S
[542/1205] Compiling p256_beeu-armv8-asm-win.S
[543/1205] Compiling p256_beeu-armv8-asm-apple.S
[544/1205] Compiling p256_beeu-armv8-asm-linux.S
[545/1205] Compiling p256-x86_64-asm-apple.S
[546/1205] Compiling p256-x86_64-asm-linux.S
[547/1205] Compiling p256-armv8-asm-win.S
[548/1205] Compiling p256-armv8-asm-linux.S
[549/1205] Compiling p256-armv8-asm-apple.S
[550/1205] Compiling ghashv8-armv8-win.S
[551/1205] Compiling ghashv8-armv8-apple.S
[552/1205] Compiling d1_lib.cc
[552/1205] Compiling ghashv8-armv8-linux.S
[554/1205] Compiling ghashv8-armv7-linux.S
[555/1205] Compiling ghash-x86_64-apple.S
[556/1205] Compiling ghash-x86-linux.S
[557/1205] Compiling ghash-ssse3-x86_64-linux.S
[558/1205] Compiling ghash-x86_64-linux.S
[559/1205] Compiling ghash-x86-apple.S
[560/1205] Compiling ghash-ssse3-x86-linux.S
[561/1205] Compiling ghash-ssse3-x86-apple.S
[562/1205] Compiling ghash-ssse3-x86_64-apple.S
[563/1205] Compiling ghash-neon-armv8-linux.S
[564/1205] Compiling co-586-linux.S
[565/1205] Compiling ghash-neon-armv8-win.S
[566/1205] Compiling ghash-armv4-linux.S
[567/1205] Compiling ghash-neon-armv8-apple.S
[568/1205] Compiling co-586-apple.S
[569/1205] Compiling bsaes-armv7-linux.S
[570/1205] Compiling bn-armv8-linux.S
[571/1205] Compiling bn-armv8-win.S
[572/1205] Compiling bn-armv8-apple.S
[573/1205] Compiling bn-586-apple.S
[574/1205] Compiling bn-586-linux.S
[575/1205] Compiling armv8-mont-win.S
[576/1205] Compiling armv8-mont-linux.S
[577/1205] Compiling armv8-mont-apple.S
[578/1205] Compiling armv4-mont-linux.S
[579/1205] Compiling aesv8-gcm-armv8-win.S
[580/1205] Compiling aesv8-gcm-armv8-apple.S
[581/1205] Compiling aesv8-gcm-armv8-linux.S
[582/1205] Compiling aesv8-armv8-win.S
[583/1205] Compiling aesv8-armv8-apple.S
[584/1205] Compiling aesv8-armv8-linux.S
[585/1205] Compiling aesv8-armv7-linux.S
[586/1205] Compiling aesni-x86_64-apple.S
[587/1205] Compiling aesni-x86-linux.S
[588/1205] Compiling aesni-x86-apple.S
[589/1205] Compiling aesni-x86_64-linux.S
[590/1205] Compiling aesni-gcm-x86_64-linux.S
[591/1205] Compiling d1_both.cc
[592/1205] Compiling aes-gcm-avx2-x86_64-apple.S
[593/1205] Compiling aes-gcm-avx2-x86_64-linux.S
[593/1205] Compiling aesni-gcm-x86_64-apple.S
[595/1205] Compiling aes-gcm-avx10-x86_64-linux.S
[595/1205] Compiling aes-gcm-avx10-x86_64-apple.S
[597/1205] Compiling x_sig.cc
[598/1205] Compiling x_x509a.cc
[599/1205] Compiling x_spki.cc
[600/1205] Compiling x_name.cc
[601/1205] Compiling x_req.cc
[602/1205] Compiling x_pubkey.cc
[603/1205] Compiling x_val.cc
[604/1205] Compiling x_x509.cc
[605/1205] Compiling x_exten.cc
[606/1205] Compiling x_crl.cc
[607/1205] Compiling x_attrib.cc
[608/1205] Compiling x_algor.cc
[609/1205] Compiling x509spki.cc
[610/1205] Compiling x509rset.cc
[611/1205] Compiling x_all.cc
[612/1205] Compiling x509name.cc
[613/1205] Compiling x509cset.cc
[614/1205] Compiling x509_txt.cc
[615/1205] Compiling x509_vpm.cc
[616/1205] Compiling x509_trs.cc
[617/1205] Compiling x509_v3.cc
[618/1205] Compiling x509_vfy.cc
[619/1205] Compiling x509_set.cc
[620/1205] Compiling x509_req.cc
[621/1205] Compiling x509_cmp.cc
[622/1205] Compiling x509_def.cc
[623/1205] Compiling x509_lu.cc
[624/1205] Compiling v3_utl.cc
[625/1205] Compiling x509_d2.cc
[626/1205] Compiling x509_ext.cc
[627/1205] Compiling x509_obj.cc
[628/1205] Compiling x509_att.cc
[629/1205] Compiling x509.cc
[630/1205] Compiling v3_purp.cc
[631/1205] Compiling v3_skey.cc
[632/1205] Compiling v3_prn.cc
[633/1205] Compiling v3_pmaps.cc
[634/1205] Compiling v3_ocsp.cc
[635/1205] Compiling v3_pcons.cc
[636/1205] Compiling v3_int.cc
[637/1205] Compiling v3_extku.cc
[638/1205] Compiling v3_ncons.cc
[639/1205] Compiling v3_lib.cc
[640/1205] Compiling v3_info.cc
[641/1205] Compiling v3_crld.cc
[642/1205] Compiling v3_bcons.cc
[643/1205] Compiling v3_ia5.cc
[644/1205] Compiling v3_enum.cc
[645/1205] Compiling v3_genn.cc
[646/1205] Compiling v3_conf.cc
[647/1205] Compiling v3_cpols.cc
[648/1205] Compiling v3_bitst.cc
[649/1205] Compiling v3_akey.cc
[650/1205] Compiling v3_alt.cc
[651/1205] Compiling t_crl.cc
[652/1205] Compiling i2d_pr.cc
[653/1205] Compiling v3_akeya.cc
[654/1205] Compiling t_x509a.cc
[655/1205] Compiling t_x509.cc
[656/1205] Compiling rsa_pss.cc
[657/1205] Compiling t_req.cc
[658/1205] Compiling by_file.cc
[659/1205] Compiling name_print.cc
[660/1205] Compiling policy.cc
[661/1205] Compiling by_dir.cc
[662/1205] Compiling asn1_gen.cc
[663/1205] Compiling algorithm.cc
[664/1205] Compiling a_verify.cc
[665/1205] Compiling thread_pthread.cc
[666/1205] Compiling thread_win.cc
[667/1205] Compiling a_sign.cc
[668/1205] Compiling a_digest.cc
[669/1205] Compiling voprf.cc
[670/1205] Compiling trust_token.cc
[671/1205] Compiling pmbtoken.cc
[672/1205] Compiling thread_none.cc
[673/1205] Compiling thread.cc
[674/1205] Compiling sha256.cc
[675/1205] Compiling sha512.cc
[676/1205] Compiling siphash.cc
[677/1205] Compiling stack.cc
[678/1205] Compiling slhdsa.cc
[679/1205] Compiling sha1.cc
[680/1205] Compiling rsa_extra.cc
[681/1205] Compiling rsa_print.cc
[682/1205] Compiling spake2plus.cc
[683/1205] Compiling rc4.cc
[684/1205] Compiling refcount.cc
[685/1205] Compiling rsa_crypt.cc
[686/1205] Compiling rsa_asn1.cc
[687/1205] Compiling windows.cc
[688/1205] Compiling trusty.cc
[689/1205] Compiling urandom.cc
[690/1205] Compiling rand.cc
[691/1205] Compiling getentropy.cc
[692/1205] Compiling passive.cc
[693/1205] Compiling poly1305_arm_asm.S
[694/1205] Compiling ios.cc
[695/1205] Compiling deterministic.cc
[696/1205] Compiling forkunsafe.cc
[697/1205] Compiling fork_detect.cc
[698/1205] Compiling poly1305.cc
[699/1205] Compiling poly1305_arm.cc
[700/1205] Compiling poly1305_vec.cc
[701/1205] Compiling pool.cc
[702/1205] Compiling pkcs7.cc
[703/1205] Compiling p5_pbev2.cc
[704/1205] Compiling pkcs8_x509.cc
[705/1205] Compiling pkcs8.cc
[706/1205] Compiling pem_xaux.cc
[707/1205] Compiling pkcs7_x509.cc
[708/1205] Compiling pem_x509.cc
[709/1205] Compiling pem_pkey.cc
[710/1205] Compiling pem_pk8.cc
[711/1205] Compiling mlkem.cc
[712/1205] Compiling pem_oth.cc
[713/1205] Compiling obj_xref.cc
[714/1205] Compiling pem_info.cc
[715/1205] Compiling pem_lib.cc
[716/1205] Compiling mldsa.cc
[717/1205] Compiling mem.cc
[718/1205] Compiling poly_rq_mul.S
[719/1205] Compiling md5.cc
[720/1205] Compiling fips_shared_support.cc
[721/1205] Compiling md4.cc
[722/1205] Compiling pem_all.cc
[723/1205] Compiling obj.cc
[724/1205] Compiling lhash.cc
[725/1205] Compiling hrss.cc
[726/1205] Compiling ex_data.cc
[727/1205] Compiling sign.cc
[728/1205] Compiling kyber.cc
[729/1205] Compiling scrypt.cc
[730/1205] Compiling hpke.cc
[731/1205] Compiling print.cc
[732/1205] Compiling pbkdf.cc
[733/1205] Compiling p_x25519.cc
[734/1205] Compiling p_x25519_asn1.cc
[735/1205] Compiling p_rsa.cc
[736/1205] Compiling p_ed25519.cc
[737/1205] Compiling p_rsa_asn1.cc
[738/1205] Compiling p_hkdf.cc
[739/1205] Compiling p_ed25519_asn1.cc
[740/1205] Compiling evp_ctx.cc
[741/1205] Compiling p_ec_asn1.cc
[742/1205] Compiling p_ec.cc
[743/1205] Compiling evp.cc
[744/1205] Compiling p_dh.cc
[745/1205] Compiling p_dh_asn1.cc
[746/1205] Compiling engine.cc
[747/1205] Compiling err.cc
[748/1205] Compiling p_dsa_asn1.cc
[749/1205] Compiling ecdh.cc
[750/1205] Compiling ecdsa_asn1.cc
[751/1205] Compiling evp_asn1.cc
[752/1205] Compiling ec_derive.cc
[753/1205] Compiling hash_to_curve.cc
[754/1205] Compiling dsa.cc
[755/1205] Compiling ec_asn1.cc
[756/1205] Compiling params.cc
[757/1205] Compiling dsa_asn1.cc
[758/1205] Compiling x25519-asm-arm.S
[759/1205] Compiling des.cc
[760/1205] Compiling digest_extra.cc
[761/1205] Compiling dh_asn1.cc
[762/1205] Compiling cpu_intel.cc
[763/1205] Compiling crypto.cc
[764/1205] Compiling spake25519.cc
[765/1205] Compiling cpu_arm_freebsd.cc
[766/1205] Compiling cpu_arm_linux.cc
[767/1205] Compiling curve25519.cc
[768/1205] Compiling cpu_aarch64_win.cc
[769/1205] Compiling cpu_aarch64_sysreg.cc
[770/1205] Compiling cpu_aarch64_fuchsia.cc
[771/1205] Compiling cpu_aarch64_openbsd.cc
[772/1205] Compiling cpu_aarch64_linux.cc
[773/1205] Compiling cpu_aarch64_apple.cc
[774/1205] Compiling curve25519_64_adx.cc
[775/1205] Compiling conf.cc
[776/1205] Compiling bcm.cc
[777/1205] Compiling tls_cbc.cc
[778/1205] Compiling e_rc4.cc
[779/1205] Compiling get_cipher.cc
[780/1205] Compiling e_tls.cc
[781/1205] Compiling e_rc2.cc
[782/1205] Compiling e_null.cc
[783/1205] Compiling e_aesgcmsiv.cc
[784/1205] Compiling e_des.cc
[785/1205] Compiling derive_key.cc
[786/1205] Compiling e_chacha20poly1305.cc
[787/1205] Compiling e_aesctrhmac.cc
[788/1205] Compiling chacha.cc
[789/1205] Compiling unicode.cc
[789/1205] Compiling cbs.cc
[791/1205] Compiling ber.cc
[792/1205] Compiling buf.cc
[793/1205] Compiling blake2.cc
[794/1205] Compiling cbb.cc
[795/1205] Compiling asn1_compat.cc
[796/1205] Compiling socket_helper.cc
[797/1205] Compiling bn_asn1.cc
[798/1205] Compiling socket.cc
[799/1205] Compiling convert.cc
[800/1205] Compiling printf.cc
[801/1205] Compiling pair.cc
[802/1205] Compiling errno.cc
[803/1205] Compiling hexdump.cc
[804/1205] Compiling file.cc
[805/1205] Compiling fd.cc
[806/1205] Compiling connect.cc
[807/1205] Compiling bio_mem.cc
[808/1205] Compiling bio.cc
[809/1205] Compiling base64.cc
[810/1205] Compiling tasn_typ.cc
[811/1205] Compiling tasn_fre.cc
[812/1205] Compiling tasn_enc.cc
[813/1205] Compiling f_string.cc
[814/1205] Compiling posix_time.cc
[815/1205] Compiling tasn_utl.cc
[816/1205] Compiling tasn_new.cc
[817/1205] Compiling f_int.cc
[818/1205] Compiling asn_pack.cc
[819/1205] Compiling tasn_dec.cc
[820/1205] Compiling asn1_par.cc
[821/1205] Compiling a_time.cc
[822/1205] Compiling asn1_lib.cc
[823/1205] Compiling a_type.cc
[824/1205] Compiling a_octet.cc
[825/1205] Compiling a_utctm.cc
[826/1205] Compiling a_strnid.cc
[827/1205] Compiling a_strex.cc
[828/1205] Compiling a_dup.cc
[829/1205] Compiling a_object.cc
[830/1205] Compiling a_i2d_fp.cc
[831/1205] Compiling a_d2i_fp.cc
[832/1205] Compiling a_mbstr.cc
[833/1205] Compiling a_gentm.cc
[834/1205] Compiling fiat_p256_adx_sqr.S
[835/1205] Compiling fiat_p256_adx_mul.S
[836/1205] Compiling a_int.cc
[837/1205] Compiling fiat_curve25519_adx_square.S
[838/1205] Compiling fiat_curve25519_adx_mul.S
[839/1205] Compiling md5-x86_64-apple.S
[840/1205] Compiling md5-x86_64-linux.S
[841/1205] Compiling md5-586-linux.S
[842/1205] Compiling CCryptoBoringSSLShims shims.c
[843/1205] Compiling md5-586-apple.S
[844/1205] Compiling chacha20_poly1305_armv8-win.S
[845/1205] Compiling chacha20_poly1305_x86_64-apple.S
[846/1205] Compiling chacha20_poly1305_x86_64-linux.S
[847/1205] Compiling a_bitstr.cc
[848/1205] Compiling chacha20_poly1305_armv8-apple.S
[849/1205] Compiling chacha20_poly1305_armv8-linux.S
[850/1205] Compiling a_bool.cc
[851/1205] Compiling chacha-x86_64-linux.S
[852/1205] Compiling chacha-x86-apple.S
[853/1205] Compiling chacha-x86_64-apple.S
[854/1205] Compiling chacha-x86-linux.S
[855/1205] Compiling chacha-armv8-linux.S
[856/1205] Compiling chacha-armv8-win.S
[857/1205] Compiling chacha-armv8-apple.S
[858/1205] Compiling chacha-armv4-linux.S
[859/1205] Compiling aes128gcmsiv-x86_64-linux.S
[860/1205] Compiling aes128gcmsiv-x86_64-apple.S
[861/1205] Compiling err_data.cc
[862/1205] Compiling x86_64-mont5-linux.S
[863/1205] Compiling x86_64-mont5-apple.S
[864/1205] Compiling x86_64-mont-linux.S
[865/1205] Compiling x86_64-mont-apple.S
[866/1205] Compiling x86-mont-linux.S
[866/1205] Compiling x86-mont-apple.S
[868/1205] Compiling vpaes-x86_64-apple.S
[869/1205] Compiling vpaes-x86-linux.S
[870/1205] Compiling vpaes-x86_64-linux.S
[871/1205] Compiling vpaes-armv8-win.S
[872/1205] Compiling vpaes-x86-apple.S
[873/1205] Compiling vpaes-armv8-linux.S
[874/1205] Compiling vpaes-armv8-apple.S
[875/1205] Compiling vpaes-armv7-linux.S
[876/1205] Compiling sha512-x86_64-linux.S
[877/1205] Compiling sha512-x86_64-apple.S
[878/1205] Compiling sha512-armv8-win.S
[879/1205] Compiling sha512-armv8-linux.S
[880/1205] Compiling sha512-armv8-apple.S
[881/1205] Compiling sha512-armv4-linux.S
[882/1205] Compiling sha512-586-apple.S
[883/1205] Compiling sha512-586-linux.S
[884/1205] Compiling sha256-x86_64-apple.S
[885/1205] Compiling sha256-x86_64-linux.S
[886/1205] Compiling sha256-armv8-linux.S
[887/1205] Compiling sha256-armv8-win.S
[888/1205] Compiling sha256-armv8-apple.S
[889/1205] Compiling sha256-armv4-linux.S
[890/1205] Compiling sha256-586-apple.S
[891/1205] Compiling sha256-586-linux.S
[892/1205] Compiling sha1-armv8-win.S
[893/1205] Compiling sha1-x86_64-apple.S
[894/1205] Compiling sha1-armv8-linux.S
[895/1205] Compiling sha1-x86_64-linux.S
[896/1205] Compiling sha1-armv4-large-linux.S
[897/1205] Compiling sha1-armv8-apple.S
[898/1205] Compiling sha1-586-linux.S
[899/1205] Compiling sha1-586-apple.S
[900/1205] Compiling rsaz-avx2-linux.S
[901/1205] Compiling rdrand-x86_64-apple.S
[902/1205] Compiling rsaz-avx2-apple.S
[903/1205] Compiling rdrand-x86_64-linux.S
[904/1205] Compiling p256_beeu-x86_64-asm-linux.S
[905/1205] Compiling p256_beeu-x86_64-asm-apple.S
[906/1205] Compiling p256_beeu-armv8-asm-linux.S
[907/1205] Compiling p256_beeu-armv8-asm-win.S
[908/1205] Compiling p256_beeu-armv8-asm-apple.S
[909/1205] Compiling p256-x86_64-asm-apple.S
[910/1205] Compiling p256-armv8-asm-win.S
[911/1205] Compiling p256-armv8-asm-linux.S
[912/1205] Compiling p256-armv8-asm-apple.S
[913/1205] Compiling p256-x86_64-asm-linux.S
[914/1205] Compiling ghashv8-armv8-win.S
[915/1205] Compiling ghashv8-armv8-linux.S
[916/1205] Compiling ghashv8-armv7-linux.S
[917/1205] Compiling ghashv8-armv8-apple.S
[918/1205] Compiling ghash-x86_64-linux.S
[919/1205] Compiling ghash-x86_64-apple.S
[920/1205] Compiling ghash-x86-linux.S
[921/1205] Compiling ghash-x86-apple.S
[922/1205] Compiling ghash-ssse3-x86_64-linux.S
[923/1205] Compiling ghash-ssse3-x86_64-apple.S
[924/1205] Compiling ghash-ssse3-x86-linux.S
[925/1205] Compiling ghash-ssse3-x86-apple.S
[926/1205] Compiling ghash-neon-armv8-win.S
[927/1205] Compiling ghash-neon-armv8-linux.S
[928/1205] Compiling ghash-neon-armv8-apple.S
[929/1205] Compiling ghash-armv4-linux.S
[930/1205] Compiling co-586-linux.S
[931/1205] Compiling co-586-apple.S
[932/1205] Compiling bsaes-armv7-linux.S
[933/1205] Compiling bn-armv8-apple.S
[934/1205] Compiling bn-armv8-linux.S
[935/1205] Compiling bn-armv8-win.S
[936/1205] Compiling bn-586-linux.S
[937/1205] Compiling bn-586-apple.S
[938/1205] Compiling armv8-mont-linux.S
[939/1205] Compiling armv8-mont-win.S
[940/1205] Compiling armv8-mont-apple.S
[941/1205] Compiling armv4-mont-linux.S
[942/1205] Compiling aesv8-gcm-armv8-linux.S
[943/1205] Compiling aesv8-gcm-armv8-win.S
[944/1205] Compiling aesv8-gcm-armv8-apple.S
[945/1205] Compiling aesv8-armv8-apple.S
[946/1205] Compiling aesv8-armv8-linux.S
[947/1205] Compiling aesv8-armv8-win.S
[948/1205] Compiling aesni-x86_64-linux.S
[949/1205] Compiling aesv8-armv7-linux.S
[950/1205] Compiling aesni-x86_64-apple.S
[951/1205] Compiling aesni-gcm-x86_64-linux.S
[952/1205] Compiling aesni-x86-linux.S
[953/1205] Compiling aesni-x86-apple.S
[954/1205] Compiling aes-gcm-avx10-x86_64-apple.S
[955/1205] Compiling aesni-gcm-x86_64-apple.S
[956/1205] Compiling aes-gcm-avx10-x86_64-linux.S
[957/1205] Compiling x_sig.cc
[958/1205] Compiling x_x509a.cc
[959/1205] Compiling x_spki.cc
[960/1205] Compiling x_val.cc
[961/1205] Compiling x_x509.cc
[962/1205] Compiling x_req.cc
[963/1205] Compiling x_exten.cc
[964/1205] Compiling x_pubkey.cc
[965/1205] Compiling x_name.cc
[966/1205] Compiling x_attrib.cc
[967/1205] Compiling x_crl.cc
[968/1205] Compiling x_all.cc
[969/1205] Compiling c-nioatomics.c
[970/1205] Compiling x509spki.cc
[971/1205] Compiling x_algor.cc
[972/1205] Compiling x509rset.cc
[973/1205] Compiling x509name.cc
[974/1205] Compiling x509cset.cc
[975/1205] Compiling x509_vpm.cc
[976/1205] Compiling x509_vfy.cc
[977/1205] Compiling x509_txt.cc
[978/1205] Compiling x509_v3.cc
[979/1205] Compiling x509_trs.cc
[980/1205] Compiling c-atomics.c
[981/1205] Compiling x509_set.cc
[982/1205] Compiling x509_req.cc
[983/1205] Compiling x509_obj.cc
[985/1211] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[985/1211] Compiling x509_lu.cc
[986/1211] Compiling x509_ext.cc
[987/1211] Compiling x509_def.cc
[989/1211] Compiling NIOConcurrencyHelpers NIOLock.swift
[989/1211] Compiling x509_d2.cc
[991/1211] Compiling NIOConcurrencyHelpers lock.swift
[991/1211] Compiling x509_cmp.cc
[992/1211] Compiling x509.cc
[993/1211] Compiling x509_att.cc
[995/1211] Emitting module NIOConcurrencyHelpers
[996/1211] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[997/1211] Compiling NIOConcurrencyHelpers atomics.swift
[998/1212] Compiling v3_skey.cc
[999/1238] Compiling v3_utl.cc
[1000/1238] Compiling v3_prn.cc
[1001/1238] Compiling v3_purp.cc
[1002/1238] Compiling v3_ocsp.cc
[1004/1238] Compiling ConsoleKitTerminal Console+Ephemeral.swift
[1005/1238] Compiling ConsoleKitTerminal ConsoleClear.swift
[1006/1238] Compiling ConsoleKitTerminal Console+Ask.swift
[1007/1238] Compiling ConsoleKitTerminal Console+Choose.swift
[1007/1238] Compiling v3_pcons.cc
[1008/1241] Compiling v3_pmaps.cc
[1010/1241] Compiling ConsoleKitTerminal ActivityBar.swift
[1011/1241] Compiling ConsoleKitTerminal ActivityIndicator.swift
[1012/1241] Compiling ConsoleKitTerminal ActivityIndicatorRenderer.swift
[1013/1241] Compiling ConsoleKitTerminal ActivityIndicatorState.swift
[1014/1241] Emitting module ConsoleKitTerminal
[1015/1241] Compiling ConsoleKitTerminal CustomActivity.swift
[1016/1241] Compiling ConsoleKitTerminal LoadingBar.swift
[1017/1241] Compiling ConsoleKitTerminal ProgressBar.swift
[1018/1241] Compiling ConsoleKitTerminal Console+Clear.swift
[1019/1241] Compiling ConsoleKitTerminal Console+Confirm.swift
[1020/1241] Compiling ConsoleKitTerminal Console+Input.swift
[1021/1241] Compiling ConsoleKitTerminal Console+Center.swift
[1022/1241] Compiling ConsoleKitTerminal Console+Output.swift
[1023/1241] Compiling ConsoleKitTerminal Console+Wait.swift
[1024/1241] Compiling ConsoleKitTerminal ConsoleColor.swift
[1025/1241] Compiling ConsoleKitTerminal ConsoleStyle.swift
[1025/1241] Compiling v3_ncons.cc
[1027/1241] Compiling ConsoleKitTerminal ConsoleText.swift
[1028/1241] Compiling ConsoleKitTerminal ConsoleTextFragment.swift
[1029/1241] Compiling ConsoleKitTerminal ANSI.swift
[1030/1241] Compiling ConsoleKitTerminal Console.swift
[1031/1241] Compiling ConsoleKitTerminal Terminal.swift
[1032/1241] Compiling ConsoleKitTerminal readpassphrase_linux.swift
[1032/1241] Compiling v3_int.cc
[1033/1241] Compiling v3_lib.cc
[1034/1241] Compiling v3_info.cc
[1035/1241] Compiling v3_ia5.cc
[1036/1241] Compiling v3_genn.cc
[1037/1241] Compiling v3_extku.cc
[1039/1241] Compiling ConsoleKitTerminal AnySendableHashable.swift
[1040/1241] Compiling ConsoleKitTerminal ConsoleLogger.swift
[1041/1241] Compiling ConsoleKitTerminal LoggerFragment.swift
[1042/1242] Compiling v3_enum.cc
[1043/1242] Compiling v3_crld.cc
[1044/1249] Compiling v3_cpols.cc
[1045/1264] Compiling v3_bitst.cc
[1046/1264] Compiling v3_conf.cc
[1047/1264] Compiling v3_bcons.cc
[1048/1264] Compiling v3_alt.cc
[1050/1264] Compiling ConsoleKitCommands CommandSignature.swift
[1051/1264] Compiling ConsoleKitCommands Flag.swift
[1052/1264] Compiling ConsoleKitCommands Option.swift
[1053/1266] Emitting module ConsoleKitCommands
[1054/1266] Compiling ConsoleKitCommands AnyAsyncCommand.swift
[1055/1266] Compiling ConsoleKitCommands AsyncCommand.swift
[1056/1266] Compiling ConsoleKitCommands AsyncCommandGroup.swift
[1056/1266] Compiling v3_akeya.cc
[1058/1266] Compiling ConsoleKitCommands GenerateAutocompleteCommand.swift
[1059/1266] Compiling ConsoleKitCommands MergedAsyncCommandGroup.swift
[1060/1266] Compiling ConsoleKitCommands Argument.swift
[1061/1266] Compiling ConsoleKitCommands AsyncCommands.swift
[1062/1266] Compiling ConsoleKitCommands GenerateAsyncAutocompleteCommand.swift
[1063/1266] Compiling ConsoleKitCommands AnyCommand.swift
[1064/1266] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[1065/1266] Compiling ConsoleKitCommands Utilities.swift
[1065/1266] Compiling t_x509a.cc
[1066/1266] Compiling v3_akey.cc
[1067/1266] Compiling t_x509.cc
[1068/1266] Compiling t_req.cc
[1069/1266] Compiling t_crl.cc
[1070/1266] Compiling rsa_pss.cc
[1071/1266] Compiling i2d_pr.cc
[1072/1266] Compiling policy.cc
[1073/1266] Compiling name_print.cc
[1074/1266] Compiling by_dir.cc
[1075/1266] Compiling by_file.cc
[1076/1266] Compiling asn1_gen.cc
[1078/1266] Compiling ConsoleKitCommands CommandGroup.swift
[1079/1266] Compiling ConsoleKitCommands CommandInput.swift
[1080/1266] Compiling ConsoleKitCommands Commands.swift
[1081/1266] Compiling ConsoleKitCommands Command.swift
[1082/1266] Compiling ConsoleKitCommands CommandContext.swift
[1083/1266] Compiling ConsoleKitCommands CommandError.swift
[1084/1266] Compiling ConsoleKitCommands Console+Run.swift
[1085/1266] Compiling ConsoleKitCommands ConsoleError.swift
[1086/1266] Compiling ConsoleKitCommands Completion.swift
[1086/1267] Compiling algorithm.cc
[1088/1267] Compiling a_verify.cc
[1089/1267] Compiling a_sign.cc
[1090/1267] Compiling trust_token.cc
[1091/1267] Compiling voprf.cc
[1092/1267] Compiling a_digest.cc
[1093/1269] Compiling thread_win.cc
[1095/1269] Compiling ConsoleKit Exports.swift
[1096/1269] Emitting module ConsoleKit
[1096/1270] Compiling thread_pthread.cc
[1097/1270] Compiling pmbtoken.cc
[1098/1270] Compiling thread_none.cc
[1100/1270] Compiling thread.cc
[1101/1270] Compiling wots.cc
[1102/1270] Compiling stack.cc
[1103/1270] Compiling thash.cc
[1104/1270] Compiling merkle.cc
[1105/1270] Compiling sha512.cc
[1106/1270] Compiling slhdsa.cc
[1107/1270] Compiling siphash.cc
[1108/1270] Compiling fors.cc
[1109/1270] Compiling sha256.cc
[1110/1270] Compiling sha1.cc
[1111/1270] Compiling rsa_print.cc
[1112/1270] Compiling rsa_extra.cc
[1113/1270] Compiling rc4.cc
[1114/1270] Compiling windows.cc
[1115/1270] Compiling refcount.cc
[1116/1270] Compiling trusty.cc
[1117/1270] Compiling rsa_asn1.cc
[1118/1270] Compiling urandom.cc
[1119/1270] Compiling rsa_crypt.cc
[1120/1270] Compiling rand_extra.cc
[1121/1270] Compiling passive.cc
[1122/1270] Compiling getentropy.cc
[1123/1270] Compiling ios.cc
[1124/1270] Compiling poly1305_arm_asm.S
[1125/1270] Compiling deterministic.cc
[1126/1270] Compiling forkunsafe.cc
[1127/1270] Compiling fork_detect.cc
[1128/1270] Compiling pool.cc
[1129/1270] Compiling poly1305_arm.cc
[1130/1270] Compiling poly1305.cc
[1131/1270] Compiling poly1305_vec.cc
[1132/1270] Compiling pkcs7.cc
[1133/1270] Compiling pkcs8_x509.cc
[1134/1270] Compiling pkcs8.cc
[1135/1270] Compiling p5_pbev2.cc
[1136/1270] Compiling pkcs7_x509.cc
[1137/1270] Compiling pem_x509.cc
[1138/1270] Compiling pem_xaux.cc
[1139/1270] Compiling pem_pkey.cc
[1140/1270] Compiling pem_pk8.cc
[1141/1270] Compiling obj_xref.cc
[1142/1270] Compiling mldsa.cc
[1143/1270] Compiling pem_info.cc
[1144/1270] Compiling pem_oth.cc
[1145/1270] Compiling obj.cc
[1146/1270] Compiling pem_lib.cc
[1147/1270] Compiling pem_all.cc
[1148/1270] Compiling mlkem.cc
[1149/1270] Compiling mem.cc
[1150/1270] Compiling fips_shared_support.cc
[1151/1270] Compiling md5.cc
[1152/1270] Compiling poly_rq_mul.S
[1153/1270] Compiling md4.cc
[1154/1270] Compiling lhash.cc
[1155/1270] Compiling kyber.cc
[1156/1270] Compiling ex_data.cc
[1157/1270] Compiling sign.cc
[1158/1270] Compiling hrss.cc
[1159/1270] Compiling hpke.cc
[1160/1270] Compiling scrypt.cc
[1161/1270] Compiling pbkdf.cc
[1162/1270] Compiling print.cc
[1163/1270] Compiling p_x25519.cc
[1164/1270] Compiling p_x25519_asn1.cc
[1165/1270] Compiling p_rsa_asn1.cc
[1166/1270] Compiling p_rsa.cc
[1167/1270] Compiling p_hkdf.cc
[1168/1270] Compiling p_ed25519_asn1.cc
[1169/1270] Compiling p_ed25519.cc
[1170/1270] Compiling p_ec_asn1.cc
[1171/1270] Compiling p_ec.cc
[1172/1270] Compiling p_dh.cc
[1173/1270] Compiling p_dsa_asn1.cc
[1174/1270] Compiling p_dh_asn1.cc
[1175/1270] Compiling evp_ctx.cc
[1176/1270] Compiling evp.cc
[1177/1270] Compiling evp_asn1.cc
[1178/1270] Compiling err.cc
[1179/1270] Compiling engine.cc
[1180/1270] Compiling ecdh_extra.cc
[1181/1270] Compiling ecdsa_asn1.cc
[1182/1270] Compiling ec_derive.cc
[1183/1270] Compiling hash_to_curve.cc
[1184/1270] Compiling dsa_asn1.cc
[1185/1270] Compiling ec_asn1.cc
[1186/1270] Compiling params.cc
[1187/1270] Compiling digest_extra.cc
[1188/1270] Compiling dsa.cc
[1189/1270] Compiling x25519-asm-arm.S
[1190/1270] Compiling des.cc
[1191/1270] Compiling dh_asn1.cc
[1192/1270] Compiling spake25519.cc
[1193/1270] Compiling cpu_intel.cc
[1194/1270] Compiling crypto.cc
[1195/1270] Compiling cpu_arm_linux.cc
[1196/1270] Compiling cpu_aarch64_openbsd.cc
[1197/1270] Compiling cpu_arm_freebsd.cc
[1198/1270] Compiling cpu_aarch64_win.cc
[1199/1270] Compiling curve25519.cc
[1200/1270] Compiling cpu_aarch64_fuchsia.cc
[1201/1270] Compiling cpu_aarch64_sysreg.cc
[1202/1270] Compiling cpu_aarch64_linux.cc
[1203/1270] Compiling e_rc4.cc
[1204/1270] Compiling e_tls.cc
[1205/1270] Compiling curve25519_64_adx.cc
[1206/1270] Compiling cpu_aarch64_apple.cc
[1207/1270] Compiling e_null.cc
[1208/1270] Compiling bcm.cc
[1209/1270] Compiling tls_cbc.cc
[1210/1270] Compiling conf.cc
[1211/1270] Compiling e_rc2.cc
[1212/1270] Compiling e_des.cc
[1213/1270] Compiling e_chacha20poly1305.cc
[1214/1270] Compiling e_aesgcmsiv.cc
[1215/1270] Compiling derive_key.cc
[1216/1270] Compiling e_aesctrhmac.cc
[1217/1270] Compiling chacha.cc
[1218/1270] Compiling cipher_extra.cc
[1219/1270] Compiling unicode.cc
[1220/1270] Compiling ber.cc
[1221/1270] Compiling cbs.cc
[1222/1270] Compiling cbb.cc
[1223/1270] Compiling asn1_compat.cc
[1224/1270] Compiling bn_asn1.cc
[1225/1270] Compiling buf.cc
[1226/1270] Compiling blake2.cc
[1227/1270] Compiling convert.cc
[1228/1270] Compiling printf.cc
[1229/1270] Compiling pair.cc
[1230/1270] Compiling fd.cc
[1231/1270] Compiling file.cc
[1232/1270] Compiling errno.cc
[1233/1270] Compiling hexdump.cc
[1234/1270] Compiling bio_mem.cc
[1235/1270] Compiling base64.cc
[1236/1270] Compiling bio.cc
[1237/1270] Compiling tasn_typ.cc
[1238/1270] Compiling tasn_fre.cc
[1239/1270] Compiling tasn_utl.cc
[1240/1270] Compiling tasn_enc.cc
[1241/1270] Compiling tasn_new.cc
[1242/1270] Compiling posix_time.cc
[1243/1270] Compiling f_string.cc
[1244/1270] Compiling tasn_dec.cc
[1245/1270] Compiling f_int.cc
[1246/1270] Compiling asn_pack.cc
[1247/1270] Compiling asn1_par.cc
[1248/1270] Compiling a_utctm.cc
[1249/1270] Compiling a_time.cc
[1250/1270] Compiling asn1_lib.cc
[1251/1270] Compiling a_type.cc
[1252/1270] Compiling a_strnid.cc
[1253/1270] Compiling a_octet.cc
[1254/1270] Compiling a_strex.cc
[1255/1270] Compiling a_i2d_fp.cc
[1256/1270] Compiling a_mbstr.cc
[1257/1270] Compiling a_object.cc
[1257/1270] Write sources
[1263/1270] Compiling CAsyncHTTPClient CAsyncHTTPClient.c
[1264/1270] Compiling a_gentm.cc
[1265/1270] Compiling a_int.cc
[1266/1270] Compiling a_dup.cc
[1267/1274] Compiling a_d2i_fp.cc
[1268/1367] Compiling a_bool.cc
[1270/1367] Compiling Algorithms EitherSequence.swift
[1271/1367] Compiling Algorithms FirstNonNil.swift
[1272/1367] Compiling Algorithms FlattenCollection.swift
[1273/1369] Compiling Algorithms Permutations.swift
[1274/1369] Compiling Algorithms Product.swift
[1275/1369] Compiling Algorithms Joined.swift
[1276/1369] Compiling Algorithms Keyed.swift
[1276/1369] Compiling a_bitstr.cc
[1278/1369] Compiling Algorithms MinMax.swift
[1279/1369] Compiling Algorithms Partition.swift
[1280/1377] Compiling Atomics IntegerOperations.swift
[1281/1377] Compiling Atomics Unmanaged extensions.swift
[1282/1377] Compiling Algorithms Grouped.swift
[1283/1377] Compiling Algorithms Indexed.swift
[1284/1377] Compiling Algorithms Intersperse.swift
[1285/1377] Emitting module BitCollections
[1286/1384] Compiling BitCollections BitSet+Initializers.swift
[1287/1384] Compiling BitCollections BitSet+Invariants.swift
[1288/1384] Compiling BitCollections BitSet+Random.swift
[1289/1384] Compiling BitCollections BitSet+SetAlgebra basics.swift
[1290/1384] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[1291/1384] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[1292/1384] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[1293/1384] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[1294/1384] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[1295/1384] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[1296/1384] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[1297/1384] Compiling BitCollections BitSet+SetAlgebra union.swift
[1298/1384] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[1299/1384] Compiling BitCollections BitSet.Counted.swift
[1300/1384] Compiling BitCollections BitSet+CustomDebugStringConvertible.swift
[1301/1384] Compiling BitCollections BitSet+CustomReflectable.swift
[1302/1384] Compiling BitCollections BitSet+CustomStringConvertible.swift
[1303/1384] Compiling BitCollections BitSet+Equatable.swift
[1304/1384] Compiling BitCollections BitSet+ExpressibleByArrayLiteral.swift
[1305/1384] Compiling BitCollections BitSet+Extras.swift
[1306/1384] Compiling BitCollections BitSet+Hashable.swift
[1307/1384] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[1308/1384] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[1309/1384] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[1310/1384] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[1311/1384] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[1312/1384] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[1313/1384] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[1316/1384] Compiling Algorithms Rotate.swift
[1317/1384] Compiling Algorithms Split.swift
[1318/1384] Compiling Algorithms Stride.swift
[1319/1384] Compiling Algorithms Suffix.swift
[1320/1387] Compiling Algorithms AdjacentPairs.swift
[1321/1387] Compiling Algorithms Chain.swift
[1322/1387] Compiling Algorithms Chunked.swift
[1323/1387] Compiling Algorithms Combinations.swift
[1324/1387] Compiling Algorithms Compacted.swift
[1325/1387] Compiling Algorithms Cycle.swift
[1328/1387] Compiling CryptoBoringWrapper RandomBytes.swift
[1329/1387] Emitting module CryptoBoringWrapper
[1330/1387] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[1353/1387] Compiling Algorithms Trim.swift
[1354/1387] Compiling Algorithms Unique.swift
[1355/1387] Compiling Algorithms Windows.swift
[1356/1387] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[1357/1387] Compiling BitCollections BitSet.Index.swift
[1358/1387] Compiling BitCollections BitSet._UnsafeHandle.swift
[1359/1387] Compiling BitCollections BitSet.swift
[1360/1387] Compiling BitCollections Range+Utilities.swift
[1361/1387] Compiling BitCollections Slice+Utilities.swift
[1362/1387] Compiling BitCollections UInt+Tricks.swift
[1363/1387] Compiling BitCollections _Word.swift
[1373/1388] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[1374/1388] Compiling CryptoBoringWrapper EllipticCurve.swift
[1375/1388] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[1376/1388] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[1377/1391] Emitting module Collections
[1379/1391] Compiling Collections Collections.swift
[1385/1463] Emitting module Atomics
[1386/1463] Compiling Crypto HPKE-LabeledExtract.swift
[1387/1463] Compiling Crypto HPKE-Utils.swift
[1388/1463] Compiling Crypto DHKEM.swift
[1389/1463] Compiling Crypto HPKE-Ciphersuite.swift
[1390/1463] Compiling Crypto HPKE-KDF.swift
[1391/1463] Compiling Crypto HPKE-KexKeyDerivation.swift
[1393/1464] Emitting module Algorithms
[1395/1524] Compiling NIOCore FileHandle.swift
[1396/1524] Compiling NIOCore FileRegion.swift
[1397/1524] Compiling NIOCore GlobalSingletons.swift
[1398/1524] Compiling NIOCore IO.swift
[1399/1524] Compiling NIOCore IOData.swift
[1400/1524] Compiling NIOCore IPProtocol.swift
[1401/1524] Compiling NIOCore IntegerBitPacking.swift
[1402/1524] Compiling NIOCore IntegerTypes.swift
[1403/1524] Compiling NIOCore Interfaces.swift
[1404/1524] Compiling NIOCore Linux.swift
[1405/1533] Compiling Crypto HKDF.swift
[1406/1533] Compiling Crypto AESWrap.swift
[1407/1533] Compiling Crypto AESWrap_boring.swift
[1408/1533] Compiling Crypto Ed25519_boring.swift
[1409/1533] Compiling Crypto NISTCurvesKeys_boring.swift
[1410/1533] Compiling Crypto X25519Keys_boring.swift
[1411/1533] Compiling Crypto Curve25519.swift
[1412/1533] Compiling Crypto Ed25519Keys.swift
[1413/1533] Compiling Crypto NISTCurvesKeys.swift
[1414/1533] Compiling Crypto X25519Keys.swift
[1415/1533] Compiling NIOCore ByteBuffer-views.swift
[1416/1533] Compiling NIOCore Channel.swift
[1417/1533] Compiling NIOCore ChannelHandler.swift
[1418/1533] Compiling NIOCore ChannelHandlers.swift
[1419/1533] Compiling NIOCore ChannelInvoker.swift
[1420/1533] Compiling NIOCore ChannelOption.swift
[1421/1533] Compiling NIOCore ChannelPipeline.swift
[1422/1533] Compiling NIOCore CircularBuffer.swift
[1423/1533] Compiling NIOCore Codec.swift
[1424/1533] Compiling NIOCore ConvenienceOptionSupport.swift
[1425/1533] Compiling NIOCore MarkedCircularBuffer.swift
[1426/1533] Compiling NIOCore MulticastChannel.swift
[1427/1533] Compiling NIOCore NIOAny.swift
[1428/1533] Compiling NIOCore NIOCloseOnErrorHandler.swift
[1429/1533] Compiling NIOCore NIOLoopBound.swift
[1430/1533] Compiling NIOCore NIOScheduledCallback.swift
[1431/1533] Compiling NIOCore NIOSendable.swift
[1432/1533] Compiling NIOCore RecvByteBufferAllocator.swift
[1433/1541] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[1434/1541] Compiling NIOCore BSDSocketAPI.swift
[1435/1541] Compiling NIOCore ByteBuffer-aux.swift
[1436/1541] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[1437/1541] Compiling NIOCore ByteBuffer-conversions.swift
[1438/1541] Compiling NIOCore ByteBuffer-core.swift
[1439/1541] Compiling NIOCore ByteBuffer-hex.swift
[1440/1541] Compiling NIOCore ByteBuffer-int.swift
[1441/1541] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[1442/1541] Compiling NIOCore AddressedEnvelope.swift
[1443/1541] Compiling NIOCore DeadChannel.swift
[1444/1541] Compiling NIOCore DispatchQueue+WithFuture.swift
[1445/1541] Compiling NIOCore EventLoop+Deprecated.swift
[1446/1541] Compiling NIOCore EventLoop+SerialExecutor.swift
[1447/1541] Compiling NIOCore EventLoop.swift
[1448/1541] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[1449/1541] Compiling NIOCore EventLoopFuture+Deprecated.swift
[1450/1541] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[1451/1541] Compiling NIOCore EventLoopFuture.swift
[1452/1541] Compiling NIOCore FileDescriptor.swift
[1461/1541] Compiling NIOCore AsyncAwaitSupport.swift
[1462/1541] Compiling NIOCore AsyncChannel.swift
[1463/1541] Compiling NIOCore AsyncChannelHandler.swift
[1464/1541] Compiling NIOCore AsyncChannelInboundStream.swift
[1465/1541] Compiling NIOCore AsyncChannelOutboundWriter.swift
[1466/1541] Compiling NIOCore NIOAsyncSequenceProducer.swift
[1467/1541] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[1468/1541] Compiling NIOCore NIOAsyncWriter.swift
[1469/1541] Compiling NIOCore ByteBuffer-multi-int.swift
[1470/1541] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[1471/1541] Emitting module Crypto
[1480/1541] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[1481/1541] Compiling NIOCore SocketAddresses.swift
[1482/1541] Compiling Crypto Signature.swift
[1483/1541] Compiling Crypto CryptoKitErrors_boring.swift
[1484/1541] Compiling Crypto RNG_boring.swift
[1485/1541] Compiling Crypto SafeCompare_boring.swift
[1486/1541] Compiling Crypto Zeroization_boring.swift
[1487/1541] Compiling Crypto PrettyBytes.swift
[1488/1541] Compiling Crypto SafeCompare.swift
[1489/1541] Compiling Crypto SecureBytes.swift
[1490/1541] Compiling Crypto Zeroization.swift
[1502/1542] Compiling NIOCore SocketOptionProvider.swift
[1503/1542] Compiling NIOCore SystemCallHelpers.swift
[1504/1542] Compiling NIOCore TimeAmount+Duration.swift
[1505/1542] Compiling NIOCore TypeAssistedChannelHandler.swift
[1506/1542] Compiling NIOCore UniversalBootstrapSupport.swift
[1507/1542] Compiling NIOCore Utilities.swift
[1542/1542] Emitting module NIOCore
[1544/1594] Emitting module NIOEmbedded
[1545/1594] Compiling NIOEmbedded AsyncTestingChannel.swift
[1546/1594] Compiling NIOEmbedded Embedded.swift
[1547/1594] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[1549/1595] Compiling NIOPosix SelectableChannel.swift
[1550/1595] Compiling NIOPosix SelectableEventLoop.swift
[1551/1595] Compiling NIOPosix SelectorEpoll.swift
[1552/1595] Compiling NIOPosix SelectorGeneric.swift
[1553/1595] Compiling NIOPosix SelectorKqueue.swift
[1554/1595] Compiling NIOPosix SelectorUring.swift
[1555/1601] Compiling NIOPosix PooledRecvBufferAllocator.swift
[1556/1601] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[1557/1601] Compiling NIOPosix PosixSingletons.swift
[1558/1601] Compiling NIOPosix RawSocketBootstrap.swift
[1559/1601] Compiling NIOPosix Resolver.swift
[1560/1601] Compiling NIOPosix Selectable.swift
[1561/1601] Compiling NIOPosix ServerSocket.swift
[1562/1601] Compiling NIOPosix Socket.swift
[1563/1601] Compiling NIOPosix SocketChannel.swift
[1564/1601] Compiling NIOPosix SocketProtocols.swift
[1565/1601] Compiling NIOPosix System.swift
[1566/1601] Compiling NIOPosix Thread.swift
[1567/1601] Compiling NIOPosix NIOThreadPool.swift
[1568/1601] Compiling NIOPosix NonBlockingFileIO.swift
[1569/1601] Compiling NIOPosix PendingDatagramWritesManager.swift
[1570/1601] Compiling NIOPosix PendingWritesManager.swift
[1571/1601] Compiling NIOPosix PipeChannel.swift
[1572/1601] Compiling NIOPosix PipePair.swift
[1573/1601] Compiling NIOPosix Pool.swift
[1574/1601] Compiling NIOPosix IO.swift
[1575/1601] Compiling NIOPosix IntegerBitPacking.swift
[1576/1601] Compiling NIOPosix IntegerTypes.swift
[1577/1601] Compiling NIOPosix Linux.swift
[1578/1601] Compiling NIOPosix LinuxCPUSet.swift
[1579/1601] Compiling NIOPosix LinuxUring.swift
[1580/1601] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[1581/1601] Compiling NIOPosix ThreadPosix.swift
[1582/1601] Compiling NIOPosix ThreadWindows.swift
[1583/1601] Compiling NIOPosix UnsafeTransfer.swift
[1584/1601] Compiling NIOPosix Utilities.swift
[1585/1601] Compiling NIOPosix VsockAddress.swift
[1586/1601] Compiling NIOPosix VsockChannelEvents.swift
[1587/1601] Compiling NIOPosix BSDSocketAPICommon.swift
[1588/1601] Compiling NIOPosix BSDSocketAPIPosix.swift
[1589/1601] Compiling NIOPosix BSDSocketAPIWindows.swift
[1590/1601] Compiling NIOPosix BaseSocket.swift
[1591/1601] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[1592/1601] Compiling NIOPosix BaseSocketChannel.swift
[1593/1601] Compiling NIOPosix BaseStreamSocketChannel.swift
[1594/1601] Compiling NIOPosix Bootstrap.swift
[1595/1601] Compiling NIOPosix ControlMessage.swift
[1596/1601] Compiling NIOPosix DatagramVectorReadManager.swift
[1597/1601] Compiling NIOPosix Errors+Any.swift
[1598/1601] Compiling NIOPosix FileDescriptor.swift
[1599/1601] Compiling NIOPosix GetaddrinfoResolver.swift
[1600/1601] Compiling NIOPosix HappyEyeballs.swift
[1601/1601] Emitting module NIOPosix
[1603/1626] Compiling NIO Exports.swift
[1604/1661] Emitting module NIO
[1605/1662] Compiling _NIOFileSystem Array+FileSystem.swift
[1606/1662] Compiling _NIOFileSystem ArraySlice+FileSystem.swift
[1607/1662] Compiling _NIOFileSystem BufferedReader.swift
[1609/1664] Compiling _NIOFileSystem BufferedWriter.swift
[1610/1664] Compiling _NIOFileSystem ByteBuffer+FileSystem.swift
[1611/1664] Compiling _NIOFileSystem ByteCount.swift
[1612/1664] Compiling _NIOFileSystem Exports.swift
[1613/1664] Compiling _NIOFileSystem FileSystemError+Syscall.swift
[1614/1664] Compiling _NIOFileSystem FileSystemError.swift
[1615/1703] Compiling _NIOFileSystem FileInfo.swift
[1616/1703] Compiling _NIOFileSystem FileSystem.swift
[1617/1703] Compiling _NIOFileSystem ParallelDirCopy.swift
[1618/1703] Compiling _NIOFileSystem FileChunks.swift
[1619/1703] Compiling _NIOFileSystem FileHandle.swift
[1620/1703] Compiling _NIOFileSystem FileHandleProtocol.swift
[1621/1795] Compiling NIOTLS TLSEvents.swift
[1622/1795] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[1623/1795] Emitting module NIOTLS
[1624/1795] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[1625/1795] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[1626/1795] Compiling NIOSOCKS SOCKSResponse.swift
[1627/1796] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[1628/1796] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[1629/1796] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[1630/1796] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[1631/1796] Compiling NIOSOCKS ClientStateMachine.swift
[1632/1796] Compiling SQLKit SQLDeleteBuilder.swift
[1633/1796] Compiling SQLKit SQLDropEnumBuilder.swift
[1634/1796] Compiling SQLKit SQLDropIndexBuilder.swift
[1635/1796] Compiling SQLKit SQLDropTableBuilder.swift
[1636/1796] Compiling SQLKit SQLDropTriggerBuilder.swift
[1637/1800] Compiling SQLKit SQLUpdateBuilder.swift
[1638/1800] Compiling SQLKit SQLAliasedColumnListBuilder.swift
[1639/1800] Compiling SQLKit SQLColumnUpdateBuilder.swift
[1640/1800] Compiling NIOTLS SNIHandler.swift
[1641/1801] Emitting module NIOSOCKS
[1642/1801] Compiling SQLKit SQLPredicateGroupBuilder.swift
[1643/1801] Compiling SQLKit SQLRawBuilder.swift
[1647/1801] Compiling SQLKit SQLSecondaryPredicateGroupBuilder.swift
[1648/1801] Compiling SQLKit SQLSelectBuilder.swift
[1649/1801] Compiling SQLKit SQLSubqueryBuilder.swift
[1650/1801] Compiling SQLKit SQLUnionBuilder.swift
[1653/1801] Emitting module _NIOFileSystem
[1654/1801] Compiling NIOSOCKS ServerStateMachine.swift
[1656/1831] Compiling NIOSSL SSLConnection.swift
[1657/1831] Compiling NIOSSL SSLContext.swift
[1658/1831] Compiling NIOSSL SSLCertificate.swift
[1659/1831] Compiling NIOSSL SSLCertificateExtensions.swift
[1660/1833] Emitting module NIOHTTP1
[1661/1833] Compiling SQLKit SQLDropIndex.swift
[1662/1833] Compiling SQLKit SQLDropTable.swift
[1663/1833] Compiling SQLKit SQLDropTrigger.swift
[1664/1833] Compiling SQLKit SQLInsert.swift
[1665/1833] Compiling SQLKit SQLSelect.swift
[1666/1833] Compiling SQLKit SQLUnion.swift
[1667/1833] Compiling SQLKit SQLUpdate.swift
[1668/1833] Compiling SQLKit SQLExpression.swift
[1669/1833] Compiling SQLKit SQLSerializer.swift
[1670/1833] Compiling SQLKit SQLStatement.swift
[1671/1833] Compiling SQLKit SQLBinaryExpression.swift
[1672/1833] Compiling SQLKit SQLBinaryOperator.swift
[1673/1833] Compiling SQLKit SQLBind.swift
[1674/1845] Compiling NIOSSL SSLInit.swift
[1675/1845] Compiling NIOSSL SSLPKCS12Bundle.swift
[1676/1845] Emitting module NIOFoundationCompat
[1677/1845] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[1682/1846] Compiling NIOSSL NIOSSLServerHandler.swift
[1684/1846] Compiling SQLKit SQLSecondaryPredicateBuilder.swift
[1685/1846] Compiling SQLKit SQLSubqueryClauseBuilder.swift
[1686/1846] Compiling SQLKit SQLUnqualifiedColumnListBuilder.swift
[1687/1846] Compiling SQLKit SQLDatabase.swift
[1688/1846] Emitting module SQLKit
[1689/1846] Compiling NIOSSL NIOSSLHandler.swift
[1690/1846] Compiling NIOSSL SSLErrors.swift
[1691/1862] Compiling SQLKit SQLQueryBuilders+Deprecated.swift
[1692/1862] Compiling SQLKit Exports.swift
[1693/1862] Compiling SQLKit SQLAlias.swift
[1694/1862] Compiling SQLKit SQLBetween.swift
[1695/1862] Compiling SQLKit SQLColumn.swift
[1696/1862] Compiling SQLKit SQLConstraint.swift
[1697/1862] Compiling SQLKit SQLDataType.swift
[1698/1862] Compiling SQLKit SQLDirection.swift
[1699/1862] Compiling SQLKit SQLDistinct.swift
[1700/1862] Compiling SQLKit SQLForeignKeyAction.swift
[1701/1862] Compiling SQLKit SQLNestedSubpathExpression.swift
[1702/1862] Compiling SQLKit SQLQualifiedTable.swift
[1703/1862] Compiling SQLKit SQLQueryString.swift
[1704/1878] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[1705/1878] Compiling NIOTransportServices NIOTSSingletons.swift
[1706/1878] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[1707/1878] Compiling NIOTransportServices StateManagedChannel.swift
[1708/1878] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1709/1878] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1710/1880] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1711/1880] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[1712/1880] Compiling NIOTransportServices NIOTSListenerChannel.swift
[1713/1880] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[1714/1880] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[1715/1880] Compiling NIOTransportServices NIOTSBootstraps.swift
[1716/1880] Compiling SQLKit SQLAlterColumnDefinitionType.swift
[1717/1880] Compiling SQLKit SQLColumnAssignment.swift
[1718/1880] Compiling SQLKit SQLColumnConstraintAlgorithm.swift
[1719/1880] Compiling SQLKit SQLColumnDefinition.swift
[1720/1880] Compiling SQLKit SQLCommonTableExpression.swift
[1721/1880] Compiling SQLKit SQLConflictAction.swift
[1722/1880] Compiling SQLKit SQLConflictResolutionStrategy.swift
[1723/1880] Compiling SQLKit SQLDropBehaviour.swift
[1724/1880] Compiling SQLKit SQLEnumDataType.swift
[1725/1880] Compiling SQLKit SQLExcludedColumn.swift
[1726/1880] Compiling SQLKit SQLForeignKey.swift
[1727/1880] Compiling SQLKit SQLJoin.swift
[1728/1880] Compiling SQLKit SQLJoinMethod.swift
[1729/1880] Compiling SQLKit SQLLockingClause.swift
[1730/1880] Compiling SQLKit SQLOrderBy.swift
[1731/1880] Compiling SQLKit SQLReturning.swift
[1732/1880] Compiling SQLKit SQLSubquery.swift
[1733/1880] Compiling SQLKit SQLTableConstraintAlgorithm.swift
[1734/1880] Compiling SQLKit SQLAlterEnum.swift
[1735/1880] Compiling SQLKit SQLAlterTable.swift
[1736/1880] Compiling SQLKit SQLCreateEnum.swift
[1737/1880] Compiling SQLKit SQLCreateIndex.swift
[1738/1880] Compiling SQLKit SQLCreateTable.swift
[1739/1880] Compiling SQLKit SQLCreateTrigger.swift
[1740/1880] Compiling SQLKit SQLDelete.swift
[1741/1880] Compiling SQLKit SQLDropEnum.swift
[1742/1880] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[1743/1880] Compiling NIOTransportServices NIOTSErrors.swift
[1744/1880] Compiling NIOTransportServices NIOTSEventLoop.swift
[1745/1880] Compiling NIOTransportServices NIOTSChannelOptions.swift
[1746/1880] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[1752/1880] Compiling NIOSSL ByteBufferBIO.swift
[1753/1880] Compiling NIOSSL CustomPrivateKey.swift
[1754/1880] Compiling NIOSSL IdentityVerification.swift
[1755/1880] Compiling SQLKit SQLQueryFetcher.swift
[1756/1880] Compiling SQLKit SQLReturningBuilder.swift
[1762/1880] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1763/1880] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1764/1880] Compiling SQLiteNIO SQLiteData.swift
[1767/1880] Emitting module NIOTransportServices
[1768/1880] Compiling SQLiteNIO Exports.swift
[1769/1880] Compiling SQLiteNIO SQLiteConnection.swift
[1770/1880] Compiling SQLiteNIO SQLiteCustomFunction.swift
[1771/1881] Compiling SQLiteNIO SQLiteRow.swift
[1772/1882] Compiling SQLiteNIO SQLiteDataConvertible.swift
[1773/1882] Compiling SQLiteNIO SQLiteDataType.swift
[1800/1882] Compiling NIOSSL Zeroization.swift
[1801/1882] Compiling NIOSSL AndroidCABundle.swift
[1811/1882] Compiling _NIOFileSystem SystemFileHandle.swift
[1812/1882] Compiling _NIOFileSystem Utilities.swift
[1813/1882] Compiling _NIOFileSystem OpenOptions.swift
[1814/1882] Compiling _NIOFileSystem String+FileSystem.swift
[1815/1882] Compiling SQLKit SQLExpressions+Deprecated.swift
[1818/1882] Compiling SQLiteNIO SQLiteStatement.swift
[1824/1901] Emitting module SQLiteNIO
[1825/1911] Compiling NIOWebSocket NIOWebSocketServerUpgrader.swift
[1826/1911] Compiling NIOWebSocket SHA1.swift
[1827/1911] Compiling SQLiteNIO SQLiteError.swift
[1828/1911] Compiling SQLiteNIO SQLiteDatabase.swift
[1829/1912] Emitting module AsyncKit
[1831/1912] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1832/1912] Compiling NIOHPACK IndexedHeaderTable.swift
[1833/1912] Compiling NIOHPACK IntegerCoding.swift
[1838/1916] Compiling NIOWebSocket WebSocketErrorCodes.swift
[1843/1917] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1844/1917] Emitting module NIOSSL
[1845/1917] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1846/1935] Compiling NIOWebSocket WebSocketOpcode.swift
[1847/1935] Compiling NIOHPACK HuffmanTables.swift
[1848/1935] Compiling NIOHPACK StaticHeaderTable.swift
[1849/1935] Compiling NIOExtras NIORequestIdentifiable.swift
[1850/1935] Compiling NIOExtras RequestResponseHandler.swift
[1851/1935] Compiling NIOExtras RequestResponseWithIDHandler.swift
[1852/1935] Compiling NIOExtras PCAPRingBuffer.swift
[1853/1935] Emitting module NIOHTTPCompression
[1854/1935] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
[1855/1935] Compiling NIOExtras LengthFieldPrepender.swift
[1856/1935] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[1857/1935] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[1858/1935] Compiling NIOHTTPCompression HTTPDecompression.swift
[1859/1935] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[1860/1935] Compiling NIOHPACK HuffmanCoding.swift
[1861/1935] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1862/1935] Compiling NIOHTTPCompression HTTPCompression.swift
[1865/1936] Compiling NIOExtras LineBasedFrameDecoder.swift
[1866/1936] Compiling NIOExtras DebugInboundEventsHandler.swift
[1867/1936] Emitting module NIOWebSocket
[1869/1936] Emitting module NIOHPACK
[1870/1936] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
[1871/1936] Compiling NIOExtras NIOExtrasError.swift
[1872/1938] Compiling NIOWebSocket WebSocketFrame.swift
[1873/1939] Compiling NIOExtras NIOLengthFieldBitLength.swift
[1878/1939] Compiling NIOExtras QuiescingHelper.swift
[1879/1939] Compiling SQLKit SQLFunction.swift
[1880/1939] Compiling SQLKit SQLGroupExpression.swift
[1881/1939] Compiling SQLKit SQLIdentifier.swift
[1882/1939] Compiling SQLKit SQLList.swift
[1883/1939] Compiling SQLKit SQLLiteral.swift
[1884/1939] Compiling SQLKit SQLRaw.swift
[1885/1939] Compiling SQLKit SQLCodingUtilities.swift
[1886/1939] Compiling SQLKit SQLQueryEncoder.swift
[1887/1939] Compiling SQLKit SQLRow.swift
[1888/1939] Compiling SQLKit SQLRowDecoder.swift
[1889/1939] Compiling SQLKit SomeCodingKey.swift
[1890/1939] Compiling SQLKit StringHandling.swift
[1894/1940] Compiling NIOExtras DebugOutboundEventsHandler.swift
[1895/1940] Compiling NIOExtras FixedLengthFrameDecoder.swift
[1896/1942] Emitting module NIOExtras
[1899/1960] Compiling MultipartKit BasicCodingKey.swift
[1900/1960] Compiling MultipartKit MultipartError.swift
[1901/1960] Compiling MultipartKit Exports.swift
[1902/1960] Compiling MultipartKit FormDataDecoder.Decoder.swift
[1903/1960] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[1904/1960] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[1905/1960] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[1906/1960] Compiling MultipartKit FormDataDecoder.swift
[1907/1960] Compiling MultipartKit FormDataEncoder.Encoder.swift
[1908/1960] Emitting module MultipartKit
[1909/2107] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1910/2107] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1911/2107] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1912/2107] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1913/2107] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1914/2107] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1915/2107] Compiling NIOHTTP2 MayReceiveFrames.swift
[1916/2107] Compiling NIOHTTP2 ReceivingDataState.swift
[1917/2107] Compiling NIOHTTP2 MaySendFrames.swift
[1918/2107] Compiling NIOHTTP2 SendingDataState.swift
[1919/2107] Compiling NIOHTTP2 SendingGoawayState.swift
[1920/2107] Compiling NIOHTTP2 SendingHeadersState.swift
[1921/2107] Compiling NIOHTTP2 StateMachineResult.swift
[1922/2107] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1923/2107] Compiling NIOHTTP2 DOSHeuristics.swift
[1924/2107] Compiling NIOHTTP2 Error+Any.swift
[1925/2107] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1926/2107] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1939/2107] Compiling NIOHTTP2 HasLocalSettings.swift
[1940/2107] Compiling NIOHTTP2 HasRemoteSettings.swift
[1941/2107] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1951/2108] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1952/2108] Compiling NIOHTTP2 SendingRstStreamState.swift
[1953/2108] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1959/2110] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1960/2110] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1961/2110] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1964/2116] Emitting module NIOFileSystem
[1965/2116] Compiling NIOFileSystem Exports.swift
[1966/2125] Emitting module _NIOFileSystemFoundationCompat
[1967/2125] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[1968/2125] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[1971/2126] Compiling WebSocketKit Exports.swift
[1972/2126] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[1973/2126] Compiling WebSocketKit WebSocketHandler.swift
[1974/2126] Emitting module FluentKit
[1975/2138] Emitting module WebSocketKit
[1976/2138] Compiling WebSocketKit WebSocket+Concurrency.swift
[1977/2138] Compiling WebSocketKit WebSocket+Connect.swift
[1978/2138] Compiling WebSocketKit WebSocket.swift
[1979/2138] Emitting module NIOHTTP2
[1987/2146] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1988/2146] Compiling NIOHTTP2 QuiescingState.swift
[1989/2146] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1990/2146] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1992/2146] Compiling WebSocketKit WebSocketClient.swift
[1994/2147] Compiling NIOHTTP2 StreamStateMachine.swift
[1995/2147] Compiling NIOHTTP2 UnsafeTransfer.swift
[1996/2147] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1997/2147] Compiling FluentKit QueryBuilder+Paginate.swift
[1998/2147] Compiling FluentKit QueryBuilder+Range.swift
[1999/2147] Compiling FluentKit QueryBuilder+Set.swift
[2000/2147] Compiling FluentKit QueryBuilder+Sort.swift
[2001/2147] Compiling FluentKit QueryBuilder.swift
[2002/2147] Compiling FluentKit DatabaseQuery+Action.swift
[2003/2147] Compiling FluentKit DatabaseQuery+Aggregate.swift
[2004/2147] Compiling FluentKit DatabaseQuery+Field.swift
[2005/2147] Compiling FluentKit DatabaseQuery+Filter.swift
[2012/2147] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[2013/2147] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[2014/2147] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[2015/2147] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[2016/2147] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[2017/2147] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[2018/2147] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[2032/2147] Compiling FluentKit Model.swift
[2033/2147] Compiling FluentKit ModelAlias.swift
[2034/2147] Compiling FluentKit Schema.swift
[2035/2147] Compiling FluentKit FieldOperators.swift
[2036/2147] Compiling FluentKit Operators.swift
[2037/2147] Compiling FluentKit ValueOperators+Array.swift
[2038/2147] Compiling FluentKit ValueOperators+String.swift
[2039/2147] Compiling FluentKit ValueOperators.swift
[2040/2147] Compiling FluentKit Boolean.swift
[2041/2147] Compiling FluentKit BooleanPropertyFormat.swift
[2042/2147] Compiling FluentKit Children.swift
[2043/2147] Compiling FluentKit CompositeChildren.swift
[2044/2147] Compiling FluentKit CompositeID.swift
[2045/2147] Compiling FluentKit CompositeOptionalChild.swift
[2046/2147] Compiling FluentKit CompositeOptionalParent.swift
[2047/2147] Compiling FluentKit CompositeParent.swift
[2048/2147] Compiling FluentKit DatabaseQuery+Join.swift
[2049/2147] Compiling FluentKit DatabaseQuery+Range.swift
[2050/2147] Compiling FluentKit DatabaseQuery+Sort.swift
[2051/2147] Compiling FluentKit DatabaseQuery+Value.swift
[2052/2147] Compiling FluentKit DatabaseQuery.swift
[2053/2147] Compiling FluentKit QueryHistory.swift
[2054/2147] Compiling FluentKit DatabaseSchema.swift
[2055/2147] Compiling FluentKit SchemaBuilder.swift
[2056/2147] Compiling FluentKit OptionalType.swift
[2057/2147] Compiling FluentKit RandomGeneratable.swift
[2058/2147] Compiling FluentKit SomeCodingKey.swift
[2059/2147] Compiling FluentKit UnsafeMutableTransferBox.swift
[2060/2147] Compiling NIOHTTP2 InboundWindowManager.swift
[2061/2147] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[2062/2147] Compiling NIOHTTP2 StreamChannelFlowController.swift
[2063/2147] Compiling NIOHTTP2 StreamChannelList.swift
[2064/2147] Compiling NIOHTTP2 StreamMap.swift
[2068/2147] Compiling FluentKit Fields.swift
[2069/2147] Compiling FluentKit MirrorBypass.swift
[2070/2147] Compiling FluentKit Model+CRUD.swift
[2092/2147] Compiling FluentKit OptionalChild.swift
[2093/2147] Compiling FluentKit OptionalField.swift
[2094/2147] Compiling FluentKit OptionalParent.swift
[2095/2147] Compiling FluentKit Parent.swift
[2096/2147] Compiling FluentKit Property.swift
[2097/2147] Compiling FluentKit Relation.swift
[2098/2147] Compiling FluentKit Siblings.swift
[2099/2147] Compiling FluentKit Timestamp.swift
[2100/2147] Compiling FluentKit TimestampFormat.swift
[2101/2147] Compiling FluentKit QueryBuilder+Aggregate.swift
[2102/2147] Compiling FluentKit QueryBuilder+EagerLoad.swift
[2103/2147] Compiling FluentKit QueryBuilder+Filter.swift
[2105/2159] Emitting module FluentSQL
[2106/2160] Compiling FluentSQL SQLJSONColumnPath+Deprecated.swift
[2107/2160] Compiling FluentSQL ConverterUtilities.swift
[2108/2160] Compiling FluentSQL DatabaseQuery+SQL.swift
[2109/2160] Compiling FluentSQL SQLSchemaConverter.swift
[2110/2160] Compiling FluentSQL SQLDatabase+Model+Concurrency.swift
[2111/2160] Compiling FluentSQL SQLDatabase+Model.swift
[2112/2160] Compiling FluentSQL DatabaseSchema+SQL.swift
[2113/2160] Compiling FluentSQL Exports.swift
[2114/2160] Compiling FluentSQL SQLQueryConverter.swift
[2115/2160] Compiling FluentSQL SQLQualifiedTable+Deprecated.swift
[2116/2160] Compiling FluentSQL SQLList+Deprecated.swift
[2164/2230] Compiling SQLiteKit SQLiteDialect.swift
[2165/2231] Compiling SQLiteKit SQLiteDataDecoder.swift
[2166/2231] Compiling SQLiteKit SQLiteDataEncoder.swift
[2167/2231] Compiling SQLiteKit SQLiteConnectionSource.swift
[2168/2231] Compiling SQLiteKit Exports.swift
[2169/2231] Compiling SQLiteKit SQLiteConfiguration.swift
[2170/2231] Emitting module SQLiteKit
[2171/2231] Compiling SQLiteKit SQLiteConnection+SQLKit.swift
[2172/2231] Compiling SQLiteKit SQLiteRow+SQLRow.swift
[2174/2240] Emitting module AsyncHTTPClient
[2175/2248] Compiling FluentSQLiteDriver SQLiteConverterDelegate.swift
[2176/2248] Compiling FluentSQLiteDriver FluentSQLiteDriver.swift
[2177/2248] Compiling FluentSQLiteDriver SQLiteError+Database.swift
[2178/2248] Compiling FluentSQLiteDriver SQLiteRow+Database.swift
[2179/2248] Emitting module FluentSQLiteDriver
[2180/2248] Compiling FluentSQLiteDriver FluentSQLiteConfiguration.swift
[2181/2248] Compiling FluentSQLiteDriver Exports.swift
[2182/2248] Compiling FluentSQLiteDriver FluentSQLiteDatabase.swift
[2184/2249] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[2185/2249] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[2186/2249] Compiling AsyncHTTPClient Transaction.swift
[2187/2249] Compiling AsyncHTTPClient Base64.swift
[2188/2249] Compiling AsyncHTTPClient BasicAuth.swift
[2189/2249] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[2190/2249] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[2191/2249] Compiling AsyncHTTPClient ConnectionPool.swift
[2192/2249] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[2193/2249] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[2194/2249] Compiling AsyncHTTPClient TLSEventsHandler.swift
[2195/2249] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[2196/2249] Compiling AsyncHTTPClient HTTP1Connection.swift
[2197/2249] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[2198/2249] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[2199/2249] Compiling AsyncHTTPClient HTTP2Connection.swift
[2200/2249] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[2201/2249] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[2202/2249] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[2203/2249] Compiling AsyncHTTPClient AsyncLazySequence.swift
[2204/2249] Compiling AsyncHTTPClient HTTPClient+execute.swift
[2205/2249] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[2206/2249] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[2207/2249] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[2208/2249] Compiling AsyncHTTPClient HTTPClientRequest.swift
[2209/2249] Compiling AsyncHTTPClient HTTPClientResponse.swift
[2210/2249] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[2211/2249] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[2212/2249] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[2213/2249] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[2214/2249] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[2215/2249] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[2216/2249] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[2217/2249] Compiling AsyncHTTPClient RequestBodyLength.swift
[2218/2249] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[2219/2249] Compiling AsyncHTTPClient RequestOptions.swift
[2220/2249] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[2221/2249] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[2222/2249] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[2223/2249] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[2224/2249] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[2225/2249] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[2226/2249] Compiling AsyncHTTPClient RequestBag.swift
[2227/2249] Compiling AsyncHTTPClient RequestValidation.swift
[2228/2249] Compiling AsyncHTTPClient SSLContextCache.swift
[2229/2249] Compiling AsyncHTTPClient Scheme.swift
[2230/2249] Compiling AsyncHTTPClient Singleton.swift
[2231/2249] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[2232/2249] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[2233/2249] Compiling AsyncHTTPClient Utils.swift
[2234/2249] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[2235/2249] Compiling AsyncHTTPClient ConnectionTarget.swift
[2236/2249] Compiling AsyncHTTPClient DeconstructedURL.swift
[2237/2249] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[2238/2249] Compiling AsyncHTTPClient FoundationExtensions.swift
[2239/2249] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[2240/2249] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[2241/2249] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[2242/2249] Compiling AsyncHTTPClient HTTPClient.swift
[2243/2249] Compiling AsyncHTTPClient HTTPHandler.swift
[2244/2249] Compiling AsyncHTTPClient LRUCache.swift
[2245/2249] Compiling AsyncHTTPClient NWErrorHandler.swift
[2246/2249] Compiling AsyncHTTPClient NWWaitingHandler.swift
[2247/2249] Compiling AsyncHTTPClient TLSConfiguration.swift
[2248/2249] Compiling AsyncHTTPClient RedirectState.swift
[2249/2249] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[2251/2419] Compiling Vapor HTTPServerResponseEncoder.swift
[2252/2419] Compiling Vapor HTTPServerUpgradeHandler.swift
[2253/2419] Compiling Vapor Logger+Report.swift
[2254/2419] Compiling Vapor LoggingSystem+Environment.swift
[2255/2419] Compiling Vapor Application+Middleware.swift
[2256/2419] Compiling Vapor CORSMiddleware.swift
[2257/2419] Compiling Vapor ErrorMiddleware.swift
[2258/2419] Compiling Vapor FileMiddleware.swift
[2259/2419] Compiling Vapor Middleware.swift
[2260/2419] Compiling Vapor MiddlewareConfiguration.swift
[2261/2419] Compiling Vapor ResponseCompressionMiddleware.swift
[2262/2419] Compiling Vapor RouteLoggingMiddleware.swift
[2263/2419] Compiling Vapor TracingMiddleware.swift
[2264/2419] Compiling Vapor File+Multipart.swift
[2265/2419] Compiling Vapor FormDataDecoder+Content.swift
[2266/2419] Compiling Vapor FormDataEncoder+Content.swift
[2267/2419] Compiling Vapor Application+Password.swift
[2268/2419] Compiling Vapor Application+Passwords.swift
[2269/2419] Compiling Vapor AsyncPasswordHasher.swift
[2270/2419] Compiling Vapor BcryptHasher.swift
[2271/2419] Compiling Vapor PasswordHasher.swift
[2272/2419] Compiling Vapor PlaintextHasher.swift
[2273/2419] Compiling Vapor Request+Password.swift
[2274/2419] Compiling Vapor Redirect.swift
[2275/2419] Compiling Vapor AsyncBasicResponder.swift
[2276/2419] Compiling Vapor AsyncMiddleware.swift
[2277/2419] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[2278/2419] Compiling Vapor AsyncSessionDriver.swift
[2279/2419] Compiling Vapor Authentication+Concurrency.swift
[2280/2419] Compiling Vapor Cache+Concurrency.swift
[2281/2419] Compiling Vapor Client+Concurrency.swift
[2282/2419] Compiling Vapor RequestBody+Concurrency.swift
[2283/2419] Compiling Vapor Responder+Concurrency.swift
[2284/2419] Compiling Vapor ResponseCodable+Concurrency.swift
[2285/2419] Compiling Vapor RoutesBuilder+Concurrency.swift
[2286/2419] Compiling Vapor ViewRenderer+Concurrency.swift
[2287/2419] Compiling Vapor WebSocket+Concurrency.swift
[2288/2419] Compiling Vapor ContainerGetPathExecutor.swift
[2289/2419] Compiling Vapor Content.swift
[2290/2419] Compiling Vapor ContentCoders.swift
[2291/2419] Compiling Vapor ContentConfiguration.swift
[2292/2419] Compiling Vapor ContentContainer.swift
[2293/2419] Compiling Vapor JSONCoder+Custom.swift
[2294/2419] Compiling Vapor JSONCoders+Content.swift
[2295/2419] Compiling Vapor PlaintextDecoder.swift
[2296/2419] Compiling Vapor PlaintextEncoder.swift
[2297/2419] Compiling Vapor URLQueryCoders.swift
[2298/2419] Compiling Vapor URLQueryContainer.swift
[2299/2467] Compiling Vapor Request+Body.swift
[2300/2467] Compiling Vapor Request+BodyStream.swift
[2301/2467] Compiling Vapor Request.swift
[2302/2467] Compiling Vapor Application+Responder.swift
[2303/2467] Compiling Vapor DefaultResponder.swift
[2304/2467] Compiling Vapor Response+Body.swift
[2305/2467] Compiling Vapor Response.swift
[2306/2467] Compiling Vapor ResponseCodable.swift
[2307/2467] Compiling Vapor Application+Routes.swift
[2308/2467] Compiling Vapor Parameters+Require.swift
[2309/2467] Compiling Vapor Request+WebSocket.swift
[2310/2467] Compiling Vapor Route.swift
[2311/2467] Compiling Vapor RouteCollection.swift
[2312/2467] Compiling Vapor Routes.swift
[2313/2467] Compiling Vapor RoutesBuilder+Group.swift
[2314/2467] Compiling Vapor RoutesBuilder+Method.swift
[2315/2467] Compiling Vapor RoutesBuilder+Middleware.swift
[2316/2467] Compiling Vapor RoutesBuilder+WebSocket.swift
[2317/2467] Compiling Vapor RoutesBuilder.swift
[2318/2467] Compiling Vapor OTP.swift
[2319/2467] Compiling Vapor Application+Servers.swift
[2320/2467] Compiling Vapor Server.swift
[2321/2467] Compiling Vapor App+Service.swift
[2322/2467] Compiling Vapor Req+Service.swift
[2323/2467] Compiling Vapor Application.swift
[2324/2467] Compiling Vapor AuthenticationCache.swift
[2325/2467] Compiling Vapor Authenticator.swift
[2326/2467] Compiling Vapor BasicAuthorization.swift
[2327/2467] Compiling Vapor BearerAuthorization.swift
[2328/2467] Compiling Vapor GuardMiddleware.swift
[2329/2467] Compiling Vapor RedirectMiddleware.swift
[2330/2467] Compiling Vapor SessionAuthenticatable.swift
[2331/2467] Compiling Vapor Bcrypt.swift
[2332/2467] Compiling Vapor Application+Cache.swift
[2333/2467] Compiling Vapor Cache.swift
[2334/2467] Compiling Vapor CacheExpirationTime.swift
[2335/2467] Compiling Vapor MemoryCache.swift
[2336/2467] Compiling Vapor Request+Cache.swift
[2337/2467] Compiling Vapor Application+Clients.swift
[2338/2467] Compiling Vapor Client.swift
[2339/2467] Compiling Vapor ClientRequest.swift
[2340/2467] Compiling Vapor ClientResponse.swift
[2341/2467] Compiling Vapor Request+Client.swift
[2342/2467] Compiling Vapor BootCommand.swift
[2343/2467] Compiling Vapor CommandContext+Application.swift
[2344/2467] Compiling Vapor RoutesCommand.swift
[2345/2467] Compiling Vapor ServeCommand.swift
[2346/2467] Compiling Vapor AnyResponse+Concurrency.swift
[2347/2467] Compiling Vapor Validator.swift
[2348/2467] Compiling Vapor ValidatorResult.swift
[2349/2467] Compiling Vapor And.swift
[2350/2467] Compiling Vapor Case.swift
[2351/2467] Compiling Vapor CharacterSet.swift
[2352/2467] Compiling Vapor Count.swift
[2353/2467] Compiling Vapor Custom.swift
[2354/2467] Compiling Vapor Email.swift
[2355/2467] Compiling Vapor Empty.swift
[2356/2467] Compiling Vapor In.swift
[2357/2467] Compiling Vapor Nil.swift
[2358/2467] Compiling Vapor NilIgnoring.swift
[2359/2467] Compiling Vapor Not.swift
[2360/2467] Compiling Vapor Or.swift
[2361/2467] Compiling Vapor Pattern.swift
[2362/2467] Compiling Vapor Range.swift
[2363/2467] Compiling Vapor URL.swift
[2364/2467] Compiling Vapor Valid.swift
[2365/2467] Compiling Vapor Application+Views.swift
[2366/2467] Compiling Vapor PlaintextRenderer.swift
[2367/2467] Compiling Vapor Request+View.swift
[2368/2467] Compiling Vapor View.swift
[2369/2467] Compiling Vapor ViewRenderer.swift
[2370/2467] Compiling Vapor _Deprecations.swift
[2371/2467] Compiling Vapor Service.swift
[2372/2467] Compiling Vapor Application+Sessions.swift
[2373/2467] Compiling Vapor MemorySessions.swift
[2374/2467] Compiling Vapor Request+Session.swift
[2375/2467] Compiling Vapor Session.swift
[2376/2467] Compiling Vapor SessionCache.swift
[2377/2467] Compiling Vapor SessionData.swift
[2378/2467] Compiling Vapor SessionDriver.swift
[2379/2467] Compiling Vapor SessionsConfiguration.swift
[2380/2467] Compiling Vapor SessionsMiddleware.swift
[2381/2467] Compiling Vapor URLEncodedFormData.swift
[2382/2467] Compiling Vapor URLEncodedFormDecoder.swift
[2383/2467] Compiling Vapor URLEncodedFormEncoder.swift
[2384/2467] Compiling Vapor URLEncodedFormError.swift
[2385/2467] Compiling Vapor URLEncodedFormParser.swift
[2386/2467] Compiling Vapor URLEncodedFormSerializer.swift
[2387/2467] Compiling Vapor URLQueryFragmentConvertible.swift
[2388/2467] Compiling Vapor AnyResponse.swift
[2389/2467] Compiling Vapor Array+Random.swift
[2390/2467] Compiling Vapor Base32.swift
[2391/2467] Compiling Vapor Base64.swift
[2392/2467] Compiling Vapor BaseN.swift
[2393/2467] Compiling Vapor BasicCodingKey.swift
[2394/2467] Compiling Vapor ByteCount.swift
[2395/2467] Compiling Vapor Core.swift
[2396/2467] Compiling Vapor Running.swift
[2397/2467] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[2398/2467] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[2399/2467] Compiling Vapor DotEnvFile+load.swift
[2400/2467] Compiling Vapor Routes+caseInsenstive.swift
[2401/2467] Compiling Vapor Validatable+validate.swift
[2402/2467] Compiling Vapor Environment+Process.swift
[2403/2467] Compiling Vapor Environment+Secret.swift
[2404/2467] Compiling Vapor Environment.swift
[2405/2467] Compiling Vapor Abort.swift
[2406/2467] Compiling Vapor AbortError.swift
[2407/2467] Compiling Vapor DebuggableError.swift
[2408/2467] Compiling Vapor Demangler.swift
[2409/2467] Compiling Vapor ErrorSource.swift
[2410/2467] Compiling Vapor StackTrace.swift
[2411/2467] Compiling Vapor Exports.swift
[2412/2467] Compiling Vapor Application+HTTP.swift
[2413/2467] Compiling Vapor BasicResponder.swift
[2414/2467] Compiling Vapor BodyStream.swift
[2415/2467] Compiling Vapor Application+HTTP+Client.swift
[2416/2467] Compiling Vapor EventLoopHTTPClient.swift
[2417/2467] Compiling Vapor EndpointCache.swift
[2418/2467] Compiling Vapor HTTPMethod+String.swift
[2419/2467] Emitting module Vapor
[2420/2467] Compiling Vapor Bytes+Hex.swift
[2421/2467] Compiling Vapor Bytes+SecureCompare.swift
[2422/2467] Compiling Vapor Collection+Safe.swift
[2423/2467] Compiling Vapor DataProtocol+Copy.swift
[2424/2467] Compiling Vapor DecoderUnwrapper.swift
[2425/2467] Compiling Vapor DirectoryConfiguration.swift
[2426/2467] Compiling Vapor DotEnv.swift
[2427/2467] Compiling Vapor Extendable.swift
[2428/2467] Compiling Vapor File.swift
[2429/2467] Compiling Vapor FileIO.swift
[2430/2467] Compiling Vapor LifecycleHandler.swift
[2431/2467] Compiling Vapor OptionalType.swift
[2432/2467] Compiling Vapor RFC1123.swift
[2433/2467] Compiling Vapor SocketAddress+Hostname.swift
[2434/2467] Compiling Vapor Storage.swift
[2435/2467] Compiling Vapor String+IsIPAddress.swift
[2436/2467] Compiling Vapor Thread.swift
[2437/2467] Compiling Vapor URI.swift
[2438/2467] Compiling Vapor RangeResult.swift
[2439/2467] Compiling Vapor Validatable.swift
[2440/2467] Compiling Vapor Validation.swift
[2441/2467] Compiling Vapor ValidationKey.swift
[2442/2467] Compiling Vapor Validations.swift
[2443/2467] Compiling Vapor ValidationsError.swift
[2444/2467] Compiling Vapor HTTPStatus.swift
[2445/2467] Compiling Vapor HTTPCookies.swift
[2446/2467] Compiling Vapor HTTPHeaderCacheControl.swift
[2447/2467] Compiling Vapor HTTPHeaderExpires.swift
[2448/2467] Compiling Vapor HTTPHeaderLastModified.swift
[2449/2467] Compiling Vapor HTTPHeaders+Cache.swift
[2450/2467] Compiling Vapor HTTPHeaders+Connection.swift
[2451/2467] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[2452/2467] Compiling Vapor HTTPHeaders+ContentRange.swift
[2453/2467] Compiling Vapor HTTPHeaders+Directive.swift
[2454/2467] Compiling Vapor HTTPHeaders+Forwarded.swift
[2455/2467] Compiling Vapor HTTPHeaders+Link.swift
[2456/2467] Compiling Vapor HTTPHeaders+Name.swift
[2457/2467] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[2458/2467] Compiling Vapor HTTPHeaders.swift
[2459/2467] Compiling Vapor HTTPMediaType.swift
[2460/2467] Compiling Vapor HTTPMediaTypePreference.swift
[2461/2467] Compiling Vapor Responder.swift
[2462/2467] Compiling Vapor Application+HTTP+Server.swift
[2463/2467] Compiling Vapor HTTPServer.swift
[2464/2467] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[2465/2467] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[2466/2467] Compiling Vapor HTTPServerHandler.swift
[2467/2467] Compiling Vapor HTTPServerRequestDecoder.swift
[2469/2483] Compiling Fluent ModelAuthenticatable.swift
[2470/2483] Compiling Fluent ModelCredentialsAuthenticatable.swift
[2471/2485] Compiling Fluent Pagination+Concurrency.swift
[2472/2485] Compiling Fluent Sessions+Concurrency.swift
[2473/2485] Compiling Fluent FluentProvider+Concurrency.swift
[2474/2485] Compiling Fluent ModelCredentialsAuthenticatable+Concurrency.swift
[2475/2485] Emitting module Fluent
[2476/2485] Compiling Fluent Exports.swift
[2477/2485] Compiling Fluent Fluent+Cache.swift
[2478/2485] Compiling Fluent FluentProvider.swift
[2479/2485] Compiling Fluent MigrateCommand.swift
[2480/2485] Compiling Fluent Fluent+History.swift
[2481/2485] Compiling Fluent Fluent+Paginate.swift
[2482/2485] Compiling Fluent Fluent+Pagination.swift
[2483/2485] Compiling Fluent Fluent+Sessions.swift
[2484/2485] Compiling Fluent ModelTokenAuthenticatable.swift
[2485/2485] Compiling Fluent PageLimit.swift
[2487/2503] Emitting module CrudRouter
[2488/2505] Compiling CrudRouter RouterMethod.swift
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:18:53: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
16 |         switch self {
17 |         case .read:
18 |             router.on(.GET, idPath, use: controller.index)
   |                                                     `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
19 |         case .readAll:
20 |             router.on(.GET, path, use: controller.indexAll)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:20:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
18 |             router.on(.GET, idPath, use: controller.index)
19 |         case .readAll:
20 |             router.on(.GET, path, use: controller.indexAll)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
21 |         case .create:
22 |             router.post(path, use: controller.create)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:22:47: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
20 |             router.on(.GET, path, use: controller.indexAll)
21 |         case .create:
22 |             router.post(path, use: controller.create)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
23 |         case .update:
24 |             router.put(idPath, use: controller.update)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:24:48: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
22 |             router.post(path, use: controller.create)
23 |         case .update:
24 |             router.put(idPath, use: controller.update)
   |                                                `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
25 |         case .delete:
26 |             router.delete(idPath, use: controller.delete)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:26:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
24 |             router.put(idPath, use: controller.update)
25 |         case .delete:
26 |             router.delete(idPath, use: controller.delete)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
27 |         }
28 |     }
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:18:57: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
16 |             switch self {
17 |             case .read:
18 |                 router.on(.GET, idPath, use: controller.index)
   |                                                         `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
19 |             case .readAll:
20 |                 router.on(.GET, path, use: controller.indexAll)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:20:55: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
18 |                 router.on(.GET, idPath, use: controller.index)
19 |             case .readAll:
20 |                 router.on(.GET, path, use: controller.indexAll)
   |                                                       `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
21 |             case .create:
22 |                 router.post(path, use: controller.create)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:22:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
20 |                 router.on(.GET, path, use: controller.indexAll)
21 |             case .create:
22 |                 router.post(path, use: controller.create)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
23 |             case .update:
24 |                 router.put(idPath, use: controller.update)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:24:52: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
22 |                 router.post(path, use: controller.create)
23 |             case .update:
24 |                 router.put(idPath, use: controller.update)
   |                                                    `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
25 |             case .delete:
26 |                 router.delete(idPath, use: controller.delete)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:26:55: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
24 |                 router.put(idPath, use: controller.update)
25 |             case .delete:
26 |                 router.delete(idPath, use: controller.delete)
   |                                                       `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
27 |             }
28 |     }
[2489/2505] Compiling CrudRouter SiblingRouterMethod.swift
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:18:53: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
16 |         switch self {
17 |         case .read:
18 |             router.on(.GET, idPath, use: controller.index)
   |                                                     `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
19 |         case .readAll:
20 |             router.on(.GET, path, use: controller.indexAll)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:20:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
18 |             router.on(.GET, idPath, use: controller.index)
19 |         case .readAll:
20 |             router.on(.GET, path, use: controller.indexAll)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
21 |         case .create:
22 |             router.post(path, use: controller.create)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:22:47: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
20 |             router.on(.GET, path, use: controller.indexAll)
21 |         case .create:
22 |             router.post(path, use: controller.create)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
23 |         case .update:
24 |             router.put(idPath, use: controller.update)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:24:48: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
22 |             router.post(path, use: controller.create)
23 |         case .update:
24 |             router.put(idPath, use: controller.update)
   |                                                `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
25 |         case .delete:
26 |             router.delete(idPath, use: controller.delete)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/RouterMethod.swift:26:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
24 |             router.put(idPath, use: controller.update)
25 |         case .delete:
26 |             router.delete(idPath, use: controller.delete)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
27 |         }
28 |     }
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:18:57: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
16 |             switch self {
17 |             case .read:
18 |                 router.on(.GET, idPath, use: controller.index)
   |                                                         `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
19 |             case .readAll:
20 |                 router.on(.GET, path, use: controller.indexAll)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:20:55: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
18 |                 router.on(.GET, idPath, use: controller.index)
19 |             case .readAll:
20 |                 router.on(.GET, path, use: controller.indexAll)
   |                                                       `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
21 |             case .create:
22 |                 router.post(path, use: controller.create)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:22:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
20 |                 router.on(.GET, path, use: controller.indexAll)
21 |             case .create:
22 |                 router.post(path, use: controller.create)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
23 |             case .update:
24 |                 router.put(idPath, use: controller.update)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:24:52: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
22 |                 router.post(path, use: controller.create)
23 |             case .update:
24 |                 router.put(idPath, use: controller.update)
   |                                                    `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
25 |             case .delete:
26 |                 router.delete(idPath, use: controller.delete)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/SiblingRouterMethod.swift:26:55: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
24 |                 router.put(idPath, use: controller.update)
25 |             case .delete:
26 |                 router.delete(idPath, use: controller.delete)
   |                                                       `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
27 |             }
28 |     }
[2490/2505] Compiling CrudRouter OnlyExceptEither.swift
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ParentRouterMethod.swift:14:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
12 |         switch self {
13 |         case .read:
14 |             router.on(.GET, path, use: controller.index)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
15 |         case .update:
16 |             router.put(path, use: controller.update)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ParentRouterMethod.swift:16:46: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
14 |             router.on(.GET, path, use: controller.index)
15 |         case .update:
16 |             router.put(path, use: controller.update)
   |                                              `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
17 |         }
18 |     }
[2491/2505] Compiling CrudRouter ParentRouterMethod.swift
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ParentRouterMethod.swift:14:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
12 |         switch self {
13 |         case .read:
14 |             router.on(.GET, path, use: controller.index)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
15 |         case .update:
16 |             router.put(path, use: controller.update)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ParentRouterMethod.swift:16:46: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
14 |             router.on(.GET, path, use: controller.index)
15 |         case .update:
16 |             router.put(path, use: controller.update)
   |                                              `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
17 |         }
18 |     }
[2492/2505] Compiling CrudRouter CrudSiblingsController.swift
[2493/2505] Compiling CrudRouter Array.swift
[2494/2505] Compiling CrudRouter Request.swift
[2495/2505] Compiling CrudRouter Router+CRUD.swift
[2496/2505] Compiling CrudRouter String.swift
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:18:53: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
16 |         switch self {
17 |         case .read:
18 |             router.on(.GET, idPath, use: controller.index)
   |                                                     `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
19 |         case .readAll:
20 |             router.on(.GET, path, use: controller.indexAll)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:20:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
18 |             router.on(.GET, idPath, use: controller.index)
19 |         case .readAll:
20 |             router.on(.GET, path, use: controller.indexAll)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
21 |         case .create:
22 |             router.post(path, use: controller.create)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:22:47: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
20 |             router.on(.GET, path, use: controller.indexAll)
21 |         case .create:
22 |             router.post(path, use: controller.create)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
23 |         case .update:
24 |             router.put(idPath, use: controller.update)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:24:48: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
22 |             router.post(path, use: controller.create)
23 |         case .update:
24 |             router.put(idPath, use: controller.update)
   |                                                `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
25 |         case .delete:
26 |             router.delete(idPath, use: controller.delete)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:26:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
24 |             router.put(idPath, use: controller.update)
25 |         case .delete:
26 |             router.delete(idPath, use: controller.delete)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
27 |         }
28 |     }
[2497/2505] Compiling CrudRouter ChildrenRouterMethod.swift
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:18:53: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
16 |         switch self {
17 |         case .read:
18 |             router.on(.GET, idPath, use: controller.index)
   |                                                     `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
19 |         case .readAll:
20 |             router.on(.GET, path, use: controller.indexAll)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:20:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
18 |             router.on(.GET, idPath, use: controller.index)
19 |         case .readAll:
20 |             router.on(.GET, path, use: controller.indexAll)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
21 |         case .create:
22 |             router.post(path, use: controller.create)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:22:47: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
20 |             router.on(.GET, path, use: controller.indexAll)
21 |         case .create:
22 |             router.post(path, use: controller.create)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
23 |         case .update:
24 |             router.put(idPath, use: controller.update)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:24:48: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
22 |             router.post(path, use: controller.create)
23 |         case .update:
24 |             router.put(idPath, use: controller.update)
   |                                                `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
25 |         case .delete:
26 |             router.delete(idPath, use: controller.delete)
/host/spi-builder-workspace/Sources/CrudRouter/RouterMethods/ChildrenRouterMethod.swift:26:51: warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
24 |             router.put(idPath, use: controller.update)
25 |         case .delete:
26 |             router.delete(idPath, use: controller.delete)
   |                                                   `- warning: converting non-sendable function value to '@Sendable (Request) async throws -> Response' may introduce data races
27 |         }
28 |     }
[2498/2505] Compiling CrudRouter CrudSiblingsControllerProtocol.swift
[2499/2505] Compiling CrudRouter Crudable.swift
[2500/2505] Compiling CrudRouter CrudChildrenController.swift
[2501/2505] Compiling CrudRouter CrudController.swift
[2502/2505] Compiling CrudRouter CrudParentController.swift
[2503/2505] Compiling CrudRouter CrudChildrenControllerProtocol.swift
[2504/2505] Compiling CrudRouter CrudControllerProtocol.swift
[2505/2505] Compiling CrudRouter CrudParentControllerProtocol.swift
Build complete! (523.56s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "vapor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.53.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/vapor.git"
    },
    {
      "identity" : "fluent",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.4.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/fluent.git"
    },
    {
      "identity" : "fluent-sqlite-driver",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.1.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/fluent-sqlite-driver.git"
    }
  ],
  "manifest_display_name" : "CrudRouter",
  "name" : "CrudRouter",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "CrudRouter",
      "targets" : [
        "CrudRouter"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CrudRouterIntegrationTests",
      "module_type" : "SwiftTarget",
      "name" : "CrudRouterIntegrationTests",
      "path" : "Tests/CrudRouterIntegrationTests",
      "product_dependencies" : [
        "FluentSQLiteDriver",
        "XCTVapor"
      ],
      "sources" : [
        "HighRecursiveDepthTests.swift",
        "PublicAPITests.swift",
        "ResponseTests/CrudRouteDeleteResponseTests.swift",
        "ResponseTests/CrudRouteGetResponseTests.swift",
        "ResponseTests/CrudRoutePostResponseTests.swift",
        "ResponseTests/CrudRoutePutResponseTests.swift",
        "RouteCreationTests/CrudChildrenRouteCreationTests.swift",
        "RouteCreationTests/CrudParentRouteCreationTests.swift",
        "RouteCreationTests/CrudRouteCreationTests.swift",
        "RouteCreationTests/CrudSiblingsRouteCreationTests.swift",
        "TestSetup/TestMigrations/BaseGalaxySeeding.swift",
        "TestSetup/TestMigrations/ChildSeeding.swift",
        "TestSetup/TestMigrations/SiblingSeeding.swift",
        "TestSetup/TestModels/Galaxy.swift",
        "TestSetup/TestModels/Planet.swift",
        "TestSetup/TestModels/PlanetTag.swift",
        "TestSetup/TestModels/Tag.swift"
      ],
      "target_dependencies" : [
        "CrudRouter"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CrudRouter",
      "module_type" : "SwiftTarget",
      "name" : "CrudRouter",
      "path" : "Sources/CrudRouter",
      "product_dependencies" : [
        "Vapor",
        "Fluent",
        "FluentSQLiteDriver"
      ],
      "product_memberships" : [
        "CrudRouter"
      ],
      "sources" : [
        "ControllerProtocols/CrudChildrenControllerProtocol.swift",
        "ControllerProtocols/CrudControllerProtocol.swift",
        "ControllerProtocols/CrudParentControllerProtocol.swift",
        "ControllerProtocols/CrudSiblingsControllerProtocol.swift",
        "ControllerProtocols/Crudable.swift",
        "CrudChildrenController.swift",
        "CrudController.swift",
        "CrudParentController.swift",
        "CrudSiblingsController.swift",
        "Extensions/Array.swift",
        "Extensions/Request.swift",
        "Extensions/Router+CRUD.swift",
        "Extensions/String.swift",
        "RouterMethods/ChildrenRouterMethod.swift",
        "RouterMethods/OnlyExceptEither.swift",
        "RouterMethods/ParentRouterMethod.swift",
        "RouterMethods/RouterMethod.swift",
        "RouterMethods/SiblingRouterMethod.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.