The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Yorkie, reference main (ce5251), with Swift 6.1 for macOS (SPM) on 26 Feb 2026 01:20:16 UTC.

Swift 6 data race errors: 8

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -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

Build Log

 379 |
 380 |             let attachResponse = await self.yorkieService.attachDocument(request: attachRequest, headers: self.authHeader.makeHeader(docKey))
     |                                                           |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                           `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 381 |
 382 |             guard attachResponse.error == nil, let message = attachResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:1335:52: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
1333 |
1334 |         while retryCount <= maxRetries {
1335 |             let message = await self.yorkieService.broadcast(request: request)
     |                                                    |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                    `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
1336 |
1337 |             switch message.result {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:467:67: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 465 |
 466 |         do {
 467 |             let detachDocumentResponse = await self.yorkieService.detachDocument(request: detachDocumentRequest,
     |                                                                   |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                                   `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 468 |                                                                                  headers: self.authHeader.makeHeader(doc.getKey()))
 469 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:517:67: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 515 |
 516 |         do {
 517 |             let removeDocumentResponse = await self.yorkieService.removeDocument(request: removeDocumentRequest, headers: self.authHeader.makeHeader(doc.getKey()))
     |                                                                   |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                                   `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 518 |
 519 |             guard removeDocumentResponse.error == nil, let message = removeDocumentResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:566:59: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 564 |
 565 |         do {
 566 |             let attachResponse = await self.yorkieService.attachPresence(request: attachRequest, headers: self.authHeader.makeHeader(presence.getKey()))
     |                                                           |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                           `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 567 |
 568 |             guard attachResponse.error == nil, let message = attachResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:618:59: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 616 |
 617 |         do {
 618 |             let detachResponse = await self.yorkieService.detachPresence(request: detachRequest, headers: self.authHeader.makeHeader(presence.getKey()))
     |                                                           |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                           `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 619 |
 620 |             guard detachResponse.error == nil else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:654:60: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 652 |
 653 |         do {
 654 |             let refreshResponse = await self.yorkieService.refreshPresence(request: refreshRequest, headers: self.authHeader.makeHeader(presence.getKey()))
     |                                                            |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                            `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 655 |
 656 |             guard refreshResponse.error == nil, let message = refreshResponse.message else {
[707/742] Compiling Yorkie CRDTCounter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/Logger.swift:31:24: warning: static property 'yorkieLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     }
30 |
31 |     private static var yorkieLogger = Logging.Logger(label: "Yorkie")
   |                        |- warning: static property 'yorkieLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'yorkieLogger' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'yorkieLogger' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     static func trace(_ message: @autoclosure () -> String, error: Error? = nil, filename: String = #fileID, function: String = #function, line: UInt = #line) {
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTArray.swift:166:13: warning: result of 'try?' is unused
164 |         let result = CRDTArray(createdAt: self.createdAt)
165 |         for node in self.elements {
166 |             try? result.elements.insert(
    |             `- warning: result of 'try?' is unused
167 |                 node.value.deepcopy(),
168 |                 prevCreatedAt: result.getLastCreatedAt()
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:1368:49: warning: sending 'authTokenInjector' risks causing data races; this is an error in the Swift 6 language mode
1366 |
1367 |     private func injectAuthTokenAfterGet(with authTokenInjector: AuthTokenInjector, reason: String?) async throws {
1368 |         let token = try await authTokenInjector.getToken(reason: reason)
     |                                                 |- warning: sending 'authTokenInjector' risks causing data races; this is an error in the Swift 6 language mode
     |                                                 `- note: sending main actor-isolated 'authTokenInjector' to nonisolated instance method 'getToken(reason:)' risks causing data races between nonisolated and main actor-isolated uses
1369 |         self.authHeader.updateToken(token)
1370 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:1207:61: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
1205 |             let docKey = doc.getKey()
1206 |
1207 |             let pushpullResponse = await self.yorkieService.pushPullChanges(request: pushPullRequest, headers: self.authHeader.makeHeader(docKey))
     |                                                             |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                             `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
1208 |
1209 |             guard pushpullResponse.error == nil, let message = pushpullResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:271:61: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 269 |             }
 270 |
 271 |             let activateResponse = await self.yorkieService.activateClient(
     |                                                             |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                             `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 272 |                 request: activateRequest,
 273 |                 headers: self.authHeader.makeHeader(self.key)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:304:63: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 302 |             let deactivateRequest = DeactivateClientRequest.with { $0.clientID = clientID }
 303 |
 304 |             let deactivateResponse = await self.yorkieService.deactivateClient(request: deactivateRequest,
     |                                                               |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                               `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 305 |                                                                                headers: self.authHeader.makeHeader(self.key))
 306 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:380:59: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 378 |             self.semaphoresForInitialzation[docKey] = semaphore
 379 |
 380 |             let attachResponse = await self.yorkieService.attachDocument(request: attachRequest, headers: self.authHeader.makeHeader(docKey))
     |                                                           |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                           `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 381 |
 382 |             guard attachResponse.error == nil, let message = attachResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:1335:52: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
1333 |
1334 |         while retryCount <= maxRetries {
1335 |             let message = await self.yorkieService.broadcast(request: request)
     |                                                    |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                    `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
1336 |
1337 |             switch message.result {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:467:67: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 465 |
 466 |         do {
 467 |             let detachDocumentResponse = await self.yorkieService.detachDocument(request: detachDocumentRequest,
     |                                                                   |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                                   `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 468 |                                                                                  headers: self.authHeader.makeHeader(doc.getKey()))
 469 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:517:67: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 515 |
 516 |         do {
 517 |             let removeDocumentResponse = await self.yorkieService.removeDocument(request: removeDocumentRequest, headers: self.authHeader.makeHeader(doc.getKey()))
     |                                                                   |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                                   `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 518 |
 519 |             guard removeDocumentResponse.error == nil, let message = removeDocumentResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:566:59: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 564 |
 565 |         do {
 566 |             let attachResponse = await self.yorkieService.attachPresence(request: attachRequest, headers: self.authHeader.makeHeader(presence.getKey()))
     |                                                           |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                           `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 567 |
 568 |             guard attachResponse.error == nil, let message = attachResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:618:59: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 616 |
 617 |         do {
 618 |             let detachResponse = await self.yorkieService.detachPresence(request: detachRequest, headers: self.authHeader.makeHeader(presence.getKey()))
     |                                                           |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                           `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 619 |
 620 |             guard detachResponse.error == nil else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:654:60: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 652 |
 653 |         do {
 654 |             let refreshResponse = await self.yorkieService.refreshPresence(request: refreshRequest, headers: self.authHeader.makeHeader(presence.getKey()))
     |                                                            |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                            `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 655 |
 656 |             guard refreshResponse.error == nil, let message = refreshResponse.message else {
[708/742] Compiling Yorkie CRDTElement.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/Logger.swift:31:24: warning: static property 'yorkieLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     }
30 |
31 |     private static var yorkieLogger = Logging.Logger(label: "Yorkie")
   |                        |- warning: static property 'yorkieLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'yorkieLogger' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'yorkieLogger' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     static func trace(_ message: @autoclosure () -> String, error: Error? = nil, filename: String = #fileID, function: String = #function, line: UInt = #line) {
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTArray.swift:166:13: warning: result of 'try?' is unused
164 |         let result = CRDTArray(createdAt: self.createdAt)
165 |         for node in self.elements {
166 |             try? result.elements.insert(
    |             `- warning: result of 'try?' is unused
167 |                 node.value.deepcopy(),
168 |                 prevCreatedAt: result.getLastCreatedAt()
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:1368:49: warning: sending 'authTokenInjector' risks causing data races; this is an error in the Swift 6 language mode
1366 |
1367 |     private func injectAuthTokenAfterGet(with authTokenInjector: AuthTokenInjector, reason: String?) async throws {
1368 |         let token = try await authTokenInjector.getToken(reason: reason)
     |                                                 |- warning: sending 'authTokenInjector' risks causing data races; this is an error in the Swift 6 language mode
     |                                                 `- note: sending main actor-isolated 'authTokenInjector' to nonisolated instance method 'getToken(reason:)' risks causing data races between nonisolated and main actor-isolated uses
1369 |         self.authHeader.updateToken(token)
1370 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:1207:61: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
1205 |             let docKey = doc.getKey()
1206 |
1207 |             let pushpullResponse = await self.yorkieService.pushPullChanges(request: pushPullRequest, headers: self.authHeader.makeHeader(docKey))
     |                                                             |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                             `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
1208 |
1209 |             guard pushpullResponse.error == nil, let message = pushpullResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:271:61: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 269 |             }
 270 |
 271 |             let activateResponse = await self.yorkieService.activateClient(
     |                                                             |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                             `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 272 |                 request: activateRequest,
 273 |                 headers: self.authHeader.makeHeader(self.key)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:304:63: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 302 |             let deactivateRequest = DeactivateClientRequest.with { $0.clientID = clientID }
 303 |
 304 |             let deactivateResponse = await self.yorkieService.deactivateClient(request: deactivateRequest,
     |                                                               |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                               `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 305 |                                                                                headers: self.authHeader.makeHeader(self.key))
 306 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:380:59: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 378 |             self.semaphoresForInitialzation[docKey] = semaphore
 379 |
 380 |             let attachResponse = await self.yorkieService.attachDocument(request: attachRequest, headers: self.authHeader.makeHeader(docKey))
     |                                                           |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                           `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 381 |
 382 |             guard attachResponse.error == nil, let message = attachResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:1335:52: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
1333 |
1334 |         while retryCount <= maxRetries {
1335 |             let message = await self.yorkieService.broadcast(request: request)
     |                                                    |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                    `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
1336 |
1337 |             switch message.result {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:467:67: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 465 |
 466 |         do {
 467 |             let detachDocumentResponse = await self.yorkieService.detachDocument(request: detachDocumentRequest,
     |                                                                   |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                                   `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 468 |                                                                                  headers: self.authHeader.makeHeader(doc.getKey()))
 469 |
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:517:67: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 515 |
 516 |         do {
 517 |             let removeDocumentResponse = await self.yorkieService.removeDocument(request: removeDocumentRequest, headers: self.authHeader.makeHeader(doc.getKey()))
     |                                                                   |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                                   `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 518 |
 519 |             guard removeDocumentResponse.error == nil, let message = removeDocumentResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:566:59: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 564 |
 565 |         do {
 566 |             let attachResponse = await self.yorkieService.attachPresence(request: attachRequest, headers: self.authHeader.makeHeader(presence.getKey()))
     |                                                           |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                           `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 567 |
 568 |             guard attachResponse.error == nil, let message = attachResponse.message else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:618:59: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 616 |
 617 |         do {
 618 |             let detachResponse = await self.yorkieService.detachPresence(request: detachRequest, headers: self.authHeader.makeHeader(presence.getKey()))
     |                                                           |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                           `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 619 |
 620 |             guard detachResponse.error == nil else {
/Users/admin/builder/spi-builder-workspace/Sources/Core/Client.swift:654:60: warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
 652 |
 653 |         do {
 654 |             let refreshResponse = await self.yorkieService.refreshPresence(request: refreshRequest, headers: self.authHeader.makeHeader(presence.getKey()))
     |                                                            |- warning: sending 'self.yorkieService' risks causing data races; this is an error in the Swift 6 language mode
     |                                                            `- note: sending main actor-isolated 'self.yorkieService' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
 655 |
 656 |             guard refreshResponse.error == nil, let message = refreshResponse.message else {
[709/742] Compiling Yorkie IncreaseOperation.swift
[710/742] Compiling Yorkie MoveOperation.swift
[711/742] Compiling Yorkie Operation.swift
[712/742] Compiling Yorkie RemoveOperation.swift
[713/742] Compiling Yorkie SetOperation.swift
[714/742] Compiling Yorkie StyleOperation.swift
[715/742] Compiling Yorkie TreeEditOperation.swift
[716/742] Compiling Yorkie CRDTObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTTree.swift:156:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 150 |  * the adjacent node to pos by calling `map.floorEntry()`.
 151 |  */
 152 | struct CRDTTreeNodeID: Equatable, Comparable {
     |        `- note: consider making struct 'CRDTTreeNodeID' conform to the 'Sendable' protocol
 153 |     /**
 154 |      * `initial` is the initial position of the tree.
 155 |      */
 156 |     static let initial = CRDTTreeNodeID(createdAt: .initial, offset: 0)
     |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 157 |
 158 |     /**
[717/742] Compiling Yorkie CRDTRoot.swift
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTTree.swift:156:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 150 |  * the adjacent node to pos by calling `map.floorEntry()`.
 151 |  */
 152 | struct CRDTTreeNodeID: Equatable, Comparable {
     |        `- note: consider making struct 'CRDTTreeNodeID' conform to the 'Sendable' protocol
 153 |     /**
 154 |      * `initial` is the initial position of the tree.
 155 |      */
 156 |     static let initial = CRDTTreeNodeID(createdAt: .initial, offset: 0)
     |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 157 |
 158 |     /**
[718/742] Compiling Yorkie CRDTText.swift
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTTree.swift:156:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 150 |  * the adjacent node to pos by calling `map.floorEntry()`.
 151 |  */
 152 | struct CRDTTreeNodeID: Equatable, Comparable {
     |        `- note: consider making struct 'CRDTTreeNodeID' conform to the 'Sendable' protocol
 153 |     /**
 154 |      * `initial` is the initial position of the tree.
 155 |      */
 156 |     static let initial = CRDTTreeNodeID(createdAt: .initial, offset: 0)
     |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 157 |
 158 |     /**
[719/742] Compiling Yorkie CRDTTree.swift
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTTree.swift:156:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 150 |  * the adjacent node to pos by calling `map.floorEntry()`.
 151 |  */
 152 | struct CRDTTreeNodeID: Equatable, Comparable {
     |        `- note: consider making struct 'CRDTTreeNodeID' conform to the 'Sendable' protocol
 153 |     /**
 154 |      * `initial` is the initial position of the tree.
 155 |      */
 156 |     static let initial = CRDTTreeNodeID(createdAt: .initial, offset: 0)
     |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 157 |
 158 |     /**
[720/742] Compiling Yorkie ElementRHT.swift
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTTree.swift:156:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 150 |  * the adjacent node to pos by calling `map.floorEntry()`.
 151 |  */
 152 | struct CRDTTreeNodeID: Equatable, Comparable {
     |        `- note: consider making struct 'CRDTTreeNodeID' conform to the 'Sendable' protocol
 153 |     /**
 154 |      * `initial` is the initial position of the tree.
 155 |      */
 156 |     static let initial = CRDTTreeNodeID(createdAt: .initial, offset: 0)
     |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 157 |
 158 |     /**
[721/742] Compiling Yorkie GC.swift
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTTree.swift:156:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 150 |  * the adjacent node to pos by calling `map.floorEntry()`.
 151 |  */
 152 | struct CRDTTreeNodeID: Equatable, Comparable {
     |        `- note: consider making struct 'CRDTTreeNodeID' conform to the 'Sendable' protocol
 153 |     /**
 154 |      * `initial` is the initial position of the tree.
 155 |      */
 156 |     static let initial = CRDTTreeNodeID(createdAt: .initial, offset: 0)
     |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 157 |
 158 |     /**
[722/742] Compiling Yorkie Primitive.swift
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTTree.swift:156:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 150 |  * the adjacent node to pos by calling `map.floorEntry()`.
 151 |  */
 152 | struct CRDTTreeNodeID: Equatable, Comparable {
     |        `- note: consider making struct 'CRDTTreeNodeID' conform to the 'Sendable' protocol
 153 |     /**
 154 |      * `initial` is the initial position of the tree.
 155 |      */
 156 |     static let initial = CRDTTreeNodeID(createdAt: .initial, offset: 0)
     |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 157 |
 158 |     /**
[723/742] Compiling Yorkie RGATreeList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTTree.swift:156:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 150 |  * the adjacent node to pos by calling `map.floorEntry()`.
 151 |  */
 152 | struct CRDTTreeNodeID: Equatable, Comparable {
     |        `- note: consider making struct 'CRDTTreeNodeID' conform to the 'Sendable' protocol
 153 |     /**
 154 |      * `initial` is the initial position of the tree.
 155 |      */
 156 |     static let initial = CRDTTreeNodeID(createdAt: .initial, offset: 0)
     |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 157 |
 158 |     /**
[724/742] Compiling Yorkie JSONText.swift
[725/742] Compiling Yorkie JSONTree.swift
[726/742] Compiling Yorkie ObjectDataHandler.swift
[727/742] Compiling Yorkie Strings.swift
[728/742] Compiling Yorkie AddOperation.swift
[729/742] Compiling Yorkie ArraySetOperation.swift
[730/742] Compiling Yorkie EditOperation.swift
[731/742] Emitting module Atomics
[731/742] Compiling c-nioatomics.c
[732/742] Compiling c-atomics.c
[734/749] Compiling NIOConcurrencyHelpers lock.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[735/749] Compiling NIOConcurrencyHelpers NIOLock.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[736/749] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[737/749] Emitting module NIOConcurrencyHelpers
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[738/749] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[739/749] Compiling NIOConcurrencyHelpers NIOAtomic.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[740/749] Compiling NIOConcurrencyHelpers atomics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[741/814] Compiling NIOCore MarkedCircularBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[742/814] Compiling NIOCore MulticastChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[743/814] Compiling NIOCore NIOAny.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[744/814] Compiling NIOCore NIOCloseOnErrorHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[745/814] Compiling NIOCore NIOCoreSendableMetatype.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[746/814] Compiling NIOCore NIODecodedAsyncSequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[747/814] Compiling NIOCore NIOLoopBound.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[748/821] Compiling NIOCore IO.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[749/821] Compiling NIOCore IOData.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[750/821] Compiling NIOCore IPProtocol.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[751/821] Compiling NIOCore IntegerBitPacking.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[752/821] Compiling NIOCore IntegerTypes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[753/821] Compiling NIOCore Interfaces.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[754/821] Compiling NIOCore Linux.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[755/821] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[756/821] Compiling NIOCore NIOScheduledCallback.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[757/821] Compiling NIOCore NIOSendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[758/821] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[759/821] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[760/821] Compiling NIOCore RecvByteBufferAllocator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[761/821] Compiling NIOCore SingleStepByteToMessageDecoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[762/821] Compiling NIOCore EventLoopFuture+Deprecated.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[763/821] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[764/821] Compiling NIOCore EventLoopFuture.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[765/821] Compiling NIOCore FileDescriptor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[766/821] Compiling NIOCore FileHandle.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[767/821] Compiling NIOCore FileRegion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[768/821] Compiling NIOCore GlobalSingletons.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[769/821] Compiling NIOCore SocketAddresses.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[770/821] Compiling NIOCore SocketOptionProvider.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[771/821] Compiling NIOCore SystemCallHelpers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[772/821] Compiling NIOCore TimeAmount+Duration.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[773/821] Compiling NIOCore TypeAssistedChannelHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[774/821] Compiling NIOCore UniversalBootstrapSupport.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[775/821] Compiling NIOCore Utilities.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[776/821] Compiling NIOCore ConvenienceOptionSupport.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[777/821] Compiling NIOCore DeadChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[778/821] Compiling NIOCore DispatchQueue+WithFuture.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[779/821] Compiling NIOCore EventLoop+Deprecated.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[780/821] Compiling NIOCore EventLoop+SerialExecutor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[781/821] Compiling NIOCore EventLoop.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[782/821] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[783/821] Compiling NIOCore ChannelHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[784/821] Compiling NIOCore ChannelHandlers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[785/821] Compiling NIOCore ChannelInvoker.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[786/821] Compiling NIOCore ChannelOption.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[787/821] Compiling NIOCore ChannelPipeline.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[788/821] Compiling NIOCore CircularBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[789/821] Compiling NIOCore Codec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[790/821] Emitting module Yorkie
/Users/admin/builder/spi-builder-workspace/Sources/API/V1/Generated/googleapis/google/rpc/error_details.pb.swift:79:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 77 | extension Google_Rpc_ErrorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 78 |   public static let protoMessageName: String = _protobuf_package + ".ErrorInfo"
 79 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 80 |     1: .same(proto: "reason"),
 81 |     2: .same(proto: "domain"),
/Users/admin/builder/spi-builder-workspace/Sources/Core/Logger.swift:31:24: warning: static property 'yorkieLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     }
30 |
31 |     private static var yorkieLogger = Logging.Logger(label: "Yorkie")
   |                        |- warning: static property 'yorkieLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'yorkieLogger' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'yorkieLogger' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     static func trace(_ message: @autoclosure () -> String, error: Error? = nil, filename: String = #fileID, function: String = #function, line: UInt = #line) {
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/CRDTTree.swift:156:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 150 |  * the adjacent node to pos by calling `map.floorEntry()`.
 151 |  */
 152 | struct CRDTTreeNodeID: Equatable, Comparable {
     |        `- note: consider making struct 'CRDTTreeNodeID' conform to the 'Sendable' protocol
 153 |     /**
 154 |      * `initial` is the initial position of the tree.
 155 |      */
 156 |     static let initial = CRDTTreeNodeID(createdAt: .initial, offset: 0)
     |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'CRDTTreeNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 157 |
 158 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/Document/CRDT/RGATreeSplit.swift:62:16: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'RGATreeSplitNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |  * `RGATreeSplitNodeID` is an ID of RGATreeSplitNode.
 60 |  */
 61 | class RGATreeSplitNodeID: Equatable, Comparable, CustomDebugStringConvertible {
    |       `- note: class 'RGATreeSplitNodeID' does not conform to the 'Sendable' protocol
 62 |     static let initial = RGATreeSplitNodeID(TimeTicket.initial, 0)
    |                |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'RGATreeSplitNodeID' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |
 64 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/Document/Change/ChangeID.swift:112:13: warning: variable 'vector' was never mutated; consider changing to 'let' constant
110 |
111 |         // clone another vector before mutating
112 |         var vector = vector
    |             `- warning: variable 'vector' was never mutated; consider changing to 'let' constant
113 |
114 |         var maxVersionVector = self.versionVector.max(other: vector)
/Users/admin/builder/spi-builder-workspace/Sources/Document/Json/JSONArray.swift:133:5: warning: @discardableResult declared on a function returning Void is unnecessary
131 |      * `moveAfterByIndex` moves the element after the given index.
132 |      */
133 |     @discardableResult
    |     `- warning: @discardableResult declared on a function returning Void is unnecessary
134 |     func moveAfterByIndex(
135 |         prevIndex: Int,
/Users/admin/builder/spi-builder-workspace/Sources/Document/Time/TimeTicket.swift:31:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'TimeTicket' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |  * It is created by `ChangeID`.
 22 |  */
 23 | public struct TimeTicket: Comparable {
    |               `- note: consider making struct 'TimeTicket' conform to the 'Sendable' protocol
 24 |     enum Values {
 25 |         static let initialDelimiter: UInt32 = 0
    :
 29 |     }
 30 |
 31 |     public static let initial = TimeTicket(lamport: 0, delimiter: Values.initialDelimiter, actorID: ActorIDs.initial)
    |                       |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'TimeTicket' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     public static let next = TimeTicket(lamport: 1, delimiter: Values.initialDelimiter + 1, actorID: ActorIDs.initial)
 33 |     public static let max = TimeTicket(lamport: Values.maxLamport, delimiter: Values.MaxDelimiter, actorID: ActorIDs.max)
/Users/admin/builder/spi-builder-workspace/Sources/Document/Time/TimeTicket.swift:32:23: warning: static property 'next' is not concurrency-safe because non-'Sendable' type 'TimeTicket' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |  * It is created by `ChangeID`.
 22 |  */
 23 | public struct TimeTicket: Comparable {
    |               `- note: consider making struct 'TimeTicket' conform to the 'Sendable' protocol
 24 |     enum Values {
 25 |         static let initialDelimiter: UInt32 = 0
    :
 30 |
 31 |     public static let initial = TimeTicket(lamport: 0, delimiter: Values.initialDelimiter, actorID: ActorIDs.initial)
 32 |     public static let next = TimeTicket(lamport: 1, delimiter: Values.initialDelimiter + 1, actorID: ActorIDs.initial)
    |                       |- warning: static property 'next' is not concurrency-safe because non-'Sendable' type 'TimeTicket' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'next' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     public static let max = TimeTicket(lamport: Values.maxLamport, delimiter: Values.MaxDelimiter, actorID: ActorIDs.max)
 34 |
/Users/admin/builder/spi-builder-workspace/Sources/Document/Time/TimeTicket.swift:33:23: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'TimeTicket' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |  * It is created by `ChangeID`.
 22 |  */
 23 | public struct TimeTicket: Comparable {
    |               `- note: consider making struct 'TimeTicket' conform to the 'Sendable' protocol
 24 |     enum Values {
 25 |         static let initialDelimiter: UInt32 = 0
    :
 31 |     public static let initial = TimeTicket(lamport: 0, delimiter: Values.initialDelimiter, actorID: ActorIDs.initial)
 32 |     public static let next = TimeTicket(lamport: 1, delimiter: Values.initialDelimiter + 1, actorID: ActorIDs.initial)
 33 |     public static let max = TimeTicket(lamport: Values.maxLamport, delimiter: Values.MaxDelimiter, actorID: ActorIDs.max)
    |                       |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'TimeTicket' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'max' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     /**
[791/821] Compiling NIOCore AddressedEnvelope.swift
/Users/admin/builder/spi-builder-workspace/Sources/API/V1/Generated/googleapis/google/rpc/error_details.pb.swift:79:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 77 | extension Google_Rpc_ErrorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 78 |   public static let protoMessageName: String = _protobuf_package + ".ErrorInfo"
 79 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 80 |     1: .same(proto: "reason"),
 81 |     2: .same(proto: "domain"),
[792/821] Compiling NIOCore AsyncAwaitSupport.swift
/Users/admin/builder/spi-builder-workspace/Sources/API/V1/Generated/googleapis/google/rpc/error_details.pb.swift:79:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 77 | extension Google_Rpc_ErrorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 78 |   public static let protoMessageName: String = _protobuf_package + ".ErrorInfo"
 79 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 80 |     1: .same(proto: "reason"),
 81 |     2: .same(proto: "domain"),
[793/821] Compiling NIOCore AsyncChannel.swift
/Users/admin/builder/spi-builder-workspace/Sources/API/V1/Generated/googleapis/google/rpc/error_details.pb.swift:79:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 77 | extension Google_Rpc_ErrorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 78 |   public static let protoMessageName: String = _protobuf_package + ".ErrorInfo"
 79 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 80 |     1: .same(proto: "reason"),
 81 |     2: .same(proto: "domain"),
[794/821] Compiling NIOCore AsyncChannelHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/API/V1/Generated/googleapis/google/rpc/error_details.pb.swift:79:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 77 | extension Google_Rpc_ErrorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 78 |   public static let protoMessageName: String = _protobuf_package + ".ErrorInfo"
 79 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 80 |     1: .same(proto: "reason"),
 81 |     2: .same(proto: "domain"),
[795/821] Compiling NIOCore AsyncChannelInboundStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/API/V1/Generated/googleapis/google/rpc/error_details.pb.swift:79:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 77 | extension Google_Rpc_ErrorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 78 |   public static let protoMessageName: String = _protobuf_package + ".ErrorInfo"
 79 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 80 |     1: .same(proto: "reason"),
 81 |     2: .same(proto: "domain"),
[796/821] Compiling NIOCore AsyncChannelOutboundWriter.swift
/Users/admin/builder/spi-builder-workspace/Sources/API/V1/Generated/googleapis/google/rpc/error_details.pb.swift:79:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 77 | extension Google_Rpc_ErrorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 78 |   public static let protoMessageName: String = _protobuf_package + ".ErrorInfo"
 79 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 80 |     1: .same(proto: "reason"),
 81 |     2: .same(proto: "domain"),
[797/821] Compiling NIOCore NIOAsyncSequenceProducer.swift
/Users/admin/builder/spi-builder-workspace/Sources/API/V1/Generated/googleapis/google/rpc/error_details.pb.swift:79:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 77 | extension Google_Rpc_ErrorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 78 |   public static let protoMessageName: String = _protobuf_package + ".ErrorInfo"
 79 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 80 |     1: .same(proto: "reason"),
 81 |     2: .same(proto: "domain"),
[798/821] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
/Users/admin/builder/spi-builder-workspace/Sources/API/V1/Generated/googleapis/google/rpc/error_details.pb.swift:79:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 77 | extension Google_Rpc_ErrorInfo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 78 |   public static let protoMessageName: String = _protobuf_package + ".ErrorInfo"
 79 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
 80 |     1: .same(proto: "reason"),
 81 |     2: .same(proto: "domain"),
[799/821] Compiling NIOCore ByteBuffer-hex.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[800/821] Compiling NIOCore ByteBuffer-int.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[801/821] Compiling NIOCore ByteBuffer-lengthPrefix.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[802/821] Compiling NIOCore ByteBuffer-multi-int.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[803/821] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[804/821] Compiling NIOCore ByteBuffer-views.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[805/821] Compiling NIOCore Channel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[806/821] Compiling NIOCore NIOAsyncWriter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[807/821] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[808/821] Compiling NIOCore BSDSocketAPI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[809/821] Compiling NIOCore ByteBuffer-aux.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[810/821] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[811/821] Compiling NIOCore ByteBuffer-conversions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[812/821] Compiling NIOCore ByteBuffer-core.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[813/821] Emitting module NIOCore
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[822/877] Compiling NIOEmbedded AsyncTestingChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[823/877] Compiling NIOEmbedded Embedded.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[824/877] Emitting module NIOEmbedded
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[825/877] Compiling NIOEmbedded AsyncTestingEventLoop.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[826/877] Compiling NIOPosix Linux.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[827/877] Compiling NIOPosix LinuxCPUSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[828/877] Compiling NIOPosix LinuxUring.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[829/877] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[830/877] Compiling NIOPosix NIOPosixSendableMetatype.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[831/877] Compiling NIOPosix NIOThreadPool.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[832/882] Compiling NIOPosix BSDSocketAPICommon.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[833/882] Compiling NIOPosix BSDSocketAPIPosix.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[834/882] Compiling NIOPosix BSDSocketAPIWindows.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[835/882] Compiling NIOPosix BaseSocket.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[836/882] Compiling NIOPosix BaseSocketChannel+AccessibleTransport.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[837/882] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[838/882] Compiling NIOPosix FileDescriptor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[839/882] Compiling NIOPosix GetaddrinfoResolver.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[840/882] Compiling NIOPosix HappyEyeballs.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[841/882] Compiling NIOPosix IO.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[842/882] Compiling NIOPosix IntegerBitPacking.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[843/882] Compiling NIOPosix IntegerTypes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[844/882] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[845/882] Compiling NIOPosix PosixSingletons.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[846/882] Compiling NIOPosix RawSocketBootstrap.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[847/882] Compiling NIOPosix Resolver.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[848/882] Compiling NIOPosix Selectable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[849/882] Compiling NIOPosix SelectableChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[850/882] Compiling NIOPosix SelectorWSAPoll.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[851/882] Compiling NIOPosix ServerSocket.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[852/882] Compiling NIOPosix Socket.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[853/882] Compiling NIOPosix SocketChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[854/882] Compiling NIOPosix SocketProtocols.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[855/882] Emitting module NIOPosix
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[856/882] Compiling NIOPosix Utilities.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[857/882] Compiling NIOPosix VsockAddress.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[858/882] Compiling NIOPosix VsockChannelEvents.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[859/882] Compiling NIOPosix Windows.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[860/882] Compiling NIOPosix resource_bundle_accessor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[861/882] Compiling NIOPosix SelectableEventLoop.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[862/882] Compiling NIOPosix SelectorEpoll.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[863/882] Compiling NIOPosix SelectorGeneric.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[864/882] Compiling NIOPosix SelectorKqueue.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[865/882] Compiling NIOPosix SelectorUring.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[866/882] Compiling NIOPosix StructuredConcurrencyHelpers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[867/882] Compiling NIOPosix System.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[868/882] Compiling NIOPosix Thread.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[869/882] Compiling NIOPosix ThreadPosix.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[870/882] Compiling NIOPosix ThreadWindows.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[871/882] Compiling NIOPosix NonBlockingFileIO.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[872/882] Compiling NIOPosix PendingDatagramWritesManager.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[873/882] Compiling NIOPosix PendingWritesManager.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[874/882] Compiling NIOPosix PipeChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[875/882] Compiling NIOPosix PipePair.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[876/882] Compiling NIOPosix Pool.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[877/882] Compiling NIOPosix BaseSocketChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[878/882] Compiling NIOPosix BaseStreamSocketChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[879/882] Compiling NIOPosix Bootstrap.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[880/882] Compiling NIOPosix ControlMessage.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[881/882] Compiling NIOPosix DatagramVectorReadManager.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[882/882] Compiling NIOPosix Errors+Any.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[883/884] Emitting module NIO
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[884/884] Compiling NIO Exports.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[885/912] Compiling NIOTLS TLSEvents.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[886/912] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[887/912] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[888/912] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[889/913] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[890/913] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[891/913] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[892/913] Compiling NIOTLS SNIHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[893/913] Emitting module NIOTLS
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[894/913] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[895/913] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[896/913] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[897/913] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[898/913] Emitting module NIOFoundationCompat
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[899/913] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[900/944] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[901/944] Compiling NIOSSL NIOSSLServerHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[902/944] Compiling NIOSSL ObjectIdentifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[903/944] Emitting module NIOHTTP1
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[904/944] Compiling NIOSSL AndroidCABundle.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[905/944] Compiling NIOSSL ByteBufferBIO.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[906/944] Compiling NIOSSL NIOSSLClientHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[907/944] Compiling NIOSSL NIOSSLHandler+Configuration.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[908/944] Compiling NIOSSL PosixPort.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[909/944] Compiling NIOSSL SSLCallbacks.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[910/944] Compiling NIOSSL SSLErrors.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[911/944] Compiling NIOSSL LinuxCABundle.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[912/944] Compiling NIOSSL CustomPrivateKey.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[913/944] Compiling NIOSSL IdentityVerification.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[914/955] Compiling NIOHPACK IndexedHeaderTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[915/955] Compiling NIOHPACK IntegerCoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[916/956] Emitting module NIOSSL
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[917/959] Compiling NIOHPACK HuffmanTables.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[918/959] Compiling NIOHPACK HuffmanCoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[919/959] Compiling NIOHPACK StaticHeaderTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[920/959] Compiling NIOHPACK HeaderTables.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[921/959] Compiling NIOHPACK HPACKEncoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[922/959] Compiling NIOHPACK HPACKErrors.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[923/959] Compiling NIOHPACK DynamicHeaderTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[924/959] Compiling NIOHPACK HPACKDecoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[925/959] Emitting module NIOHPACK
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[926/959] Compiling NIOHPACK HPACKHeader.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[930/959] Compiling NIOSSL NIOSSLHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[931/959] Compiling NIOSSL UniversalBootstrapSupport.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[932/959] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[933/959] Compiling NIOSSL resource_bundle_accessor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[934/959] Compiling NIOSSL SSLPublicKey.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[935/959] Compiling NIOSSL SecurityFrameworkCertificateVerification.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[936/959] Compiling NIOSSL String+unsafeUninitializedCapacity.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[937/959] Compiling NIOSSL SSLCertificate.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[938/959] Compiling NIOSSL SSLCertificateExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[939/959] Compiling NIOSSL SSLCertificateName.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[944/967] Compiling NIOSSL SafeCompare.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[945/967] Compiling NIOSSL Zeroization.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[946/967] Compiling NIOSSL TLSConfiguration.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[947/995] Compiling NIOHTTP2 InboundEventBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[948/995] Compiling NIOHTTP2 InboundWindowManager.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[949/995] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[950/995] Compiling NIOHTTP2 NIOHTTP2FrameDelegate.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[951/995] Compiling NIOHTTP2 NIOHTTP2ServerConnectionManagementHandler+StateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[952/995] Compiling NIOHTTP2 NIOHTTP2ServerConnectionManagementHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[953/1023] Compiling NIOHTTP2 ReceivingGoAwayState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[954/1023] Compiling NIOHTTP2 ReceivingHeadersState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[955/1023] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[956/1023] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[957/1023] Compiling NIOHTTP2 HTTP2Frame.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[958/1023] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[959/1023] Compiling NIOHTTP2 HTTP2FrameParser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[960/1023] Compiling NIOHTTP2 ReceivingRstStreamState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[961/1023] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[962/1023] Compiling NIOHTTP2 MaySendFrames.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[963/1023] Compiling NIOHTTP2 SendingDataState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[964/1023] Compiling NIOHTTP2 SendingGoawayState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[965/1023] Compiling NIOHTTP2 SendingHeadersState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[966/1023] Compiling NIOHTTP2 SendingPushPromiseState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[967/1023] Compiling NIOHTTP2 SendingRstStreamState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[968/1023] Compiling NIOHTTP2 SendingWindowUpdateState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[969/1023] Compiling NIOHTTP2 HTTP2SettingsState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[970/1023] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[971/1023] Compiling NIOHTTP2 HasFlowControlWindows.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[972/1023] Compiling NIOHTTP2 HasLocalSettings.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[973/1023] Compiling NIOHTTP2 HasRemoteSettings.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[974/1030] Compiling NIOHTTP2 HTTP2UserEvents.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[981/1030] Emitting module NIOHTTP2
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[982/1030] Compiling NIOHTTP2 Error+Any.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[983/1030] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[984/1030] Compiling NIOHTTP2 ControlFrameBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[985/1030] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[986/1030] Compiling NIOHTTP2 OutboundFrameBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[987/1030] Compiling NIOHTTP2 GlitchesMonitor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[988/1030] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[989/1030] Compiling NIOHTTP2 LocallyQuiescingState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[990/1030] Compiling NIOHTTP2 QuiescingState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[991/1030] Compiling NIOHTTP2 RemotelyQuiescingState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[992/1030] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[993/1030] Compiling NIOHTTP2 StateMachineResult.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[994/1030] Compiling NIOHTTP2 ContentLengthVerifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[995/1030] Compiling NIOHTTP2 DOSHeuristics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[996/1030] Compiling NIOHTTP2 StreamChannelFlowController.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[997/1030] Compiling NIOHTTP2 StreamChannelList.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[998/1030] Compiling NIOHTTP2 StreamMap.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[999/1030] Compiling NIOHTTP2 StreamStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1000/1030] Compiling NIOHTTP2 Timer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1001/1030] Compiling NIOHTTP2 UnsafeTransfer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1002/1030] Compiling NIOHTTP2 WatermarkedFlowController.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1003/1030] Compiling NIOHTTP2 ConnectionStateMachine.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1004/1030] Compiling NIOHTTP2 ConnectionStreamsState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1005/1030] Compiling NIOHTTP2 MayReceiveFrames.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1006/1030] Compiling NIOHTTP2 ReceivingDataState.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1014/1030] Compiling NIOHTTP2 HTTP2PingData.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1015/1030] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1016/1030] Compiling NIOHTTP2 HTTP2Settings.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1017/1030] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1018/1030] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1019/1030] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1020/1030] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1021/1030] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1022/1030] Compiling NIOHTTP2 HTTP2Error.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1023/1030] Compiling NIOHTTP2 HTTP2ErrorCode.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1024/1030] Compiling NIOHTTP2 HTTP2Stream.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1025/1030] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1026/1030] Compiling NIOHTTP2 HTTP2StreamChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1027/1030] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1028/1030] Compiling NIOHTTP2 HTTP2StreamID.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1029/1030] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1030/1030] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1031/1039] Compiling ConnectNIO NetworkProtocol+Extensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1032/1039] Emitting module ConnectNIO
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1033/1039] Compiling ConnectNIO ConnectError+Extensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1034/1039] Compiling ConnectNIO HTTPRequestHead+Extensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1035/1039] Compiling ConnectNIO ConnectStreamChannelHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1036/1039] Compiling ConnectNIO Headers+Extensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1037/1039] Compiling ConnectNIO GRPCInterceptor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1038/1039] Compiling ConnectNIO ConnectUnaryChannelHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1039/1039] Compiling ConnectNIO NIOHTTPClient.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[1040/1043] Compiling YorkieTestHelper YorkieProjectHelper.swift
/Users/admin/builder/spi-builder-workspace/Tests/Helper/YorkieProjectHelper.swift:28:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'YorkieProjectError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |
 27 | enum YorkieProjectError: Error {
 28 |     case invalidResponse([String: Any])
    |          `- warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'YorkieProjectError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     case missingToken
 30 |     case invalidProjectResponse([String: Any])
/Users/admin/builder/spi-builder-workspace/Tests/Helper/YorkieProjectHelper.swift:30:10: warning: associated value 'invalidProjectResponse' of 'Sendable'-conforming enum 'YorkieProjectError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case invalidResponse([String: Any])
 29 |     case missingToken
 30 |     case invalidProjectResponse([String: Any])
    |          `- warning: associated value 'invalidProjectResponse' of 'Sendable'-conforming enum 'YorkieProjectError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 | }
 32 |
[1041/1043] Compiling YorkieTestHelper WebhookServer.swift
/Users/admin/builder/spi-builder-workspace/Tests/Helper/WebhookServer.swift:36:49: warning: type 'WebhookRequestHandler' does not conform to the 'Sendable' protocol
 34 |             .childChannelInitializer { channel in
 35 |                 channel.pipeline.configureHTTPServerPipeline().flatMap {
 36 |                     channel.pipeline.addHandler(WebhookRequestHandler())
    |                                                 `- warning: type 'WebhookRequestHandler' does not conform to the 'Sendable' protocol
 37 |                 }
 38 |             }
    :
 57 | }
 58 |
 59 | final class WebhookRequestHandler: ChannelInboundHandler {
    |             `- note: class 'WebhookRequestHandler' does not conform to the 'Sendable' protocol
 60 |     typealias InboundIn = HTTPServerRequestPart
 61 |     typealias OutboundOut = HTTPServerResponsePart
[1042/1043] Compiling YorkieTestHelper TestHelper.swift
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:152:13: warning: capture of 'self' with non-sendable type 'EventCollector<T>' in a '@Sendable' closure
123 | }
124 |
125 | class EventCollector<T: Equatable> {
    |       `- note: generic class 'EventCollector' does not conform to the 'Sendable' protocol
126 |     struct WaitUntil {
127 |         var continuation: AsyncStream<T>.Continuation
    :
150 |     func add(event: T) {
151 |         self.queue.async(flags: .barrier) {
152 |             self._values.append(event)
    |             `- warning: capture of 'self' with non-sendable type 'EventCollector<T>' in a '@Sendable' closure
153 |
154 |             if let waitUntil = self.waitUntil {
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:152:33: warning: capture of 'event' with non-sendable type 'T' in a '@Sendable' closure
123 | }
124 |
125 | class EventCollector<T: Equatable> {
    |                      `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
126 |     struct WaitUntil {
127 |         var continuation: AsyncStream<T>.Continuation
    :
150 |     func add(event: T) {
151 |         self.queue.async(flags: .barrier) {
152 |             self._values.append(event)
    |                                 `- warning: capture of 'event' with non-sendable type 'T' in a '@Sendable' closure
153 |
154 |             if let waitUntil = self.waitUntil {
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:170:13: warning: capture of 'self' with non-sendable type 'EventCollector<T>' in a '@Sendable' closure
123 | }
124 |
125 | class EventCollector<T: Equatable> {
    |       `- note: generic class 'EventCollector' does not conform to the 'Sendable' protocol
126 |     struct WaitUntil {
127 |         var continuation: AsyncStream<T>.Continuation
    :
168 |     func reset() {
169 |         self.queue.async(flags: .barrier) {
170 |             self._values.removeAll()
    |             `- warning: capture of 'self' with non-sendable type 'EventCollector<T>' in a '@Sendable' closure
171 |             self.waitUntil = nil
172 |             self.lastStreamEndIndex = 0
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:198:25: warning: capture of 'self' with non-sendable type 'EventCollector<T>' in a '@Sendable' closure
123 | }
124 |
125 | class EventCollector<T: Equatable> {
    |       `- note: generic class 'EventCollector' does not conform to the 'Sendable' protocol
126 |     struct WaitUntil {
127 |         var continuation: AsyncStream<T>.Continuation
    :
196 |                     continuation.finish()
197 |                     self.queue.async(flags: .barrier) {
198 |                         self.lastStreamEndIndex = stopIndex + 1
    |                         `- warning: capture of 'self' with non-sendable type 'EventCollector<T>' in a '@Sendable' closure
199 |                     }
200 |                     return
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:206:43: warning: capture of 'self' with non-sendable type 'EventCollector<T>' in a '@Sendable' closure
123 | }
124 |
125 | class EventCollector<T: Equatable> {
    |       `- note: generic class 'EventCollector' does not conform to the 'Sendable' protocol
126 |     struct WaitUntil {
127 |         var continuation: AsyncStream<T>.Continuation
    :
204 |                 self.queue.async(flags: .barrier) {
205 |                     // Double-check in case the value arrived between the check and now
206 |                     let checkStartIndex = self.lastStreamEndIndex
    |                                           `- warning: capture of 'self' with non-sendable type 'EventCollector<T>' in a '@Sendable' closure
207 |                     if let stopIndex = self._values[checkStartIndex...].firstIndex(where: { $0 == stopValue }) {
208 |                         for value in self._values[checkStartIndex ... stopIndex] {
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:207:99: warning: capture of 'stopValue' with non-sendable type 'T' in a '@Sendable' closure
123 | }
124 |
125 | class EventCollector<T: Equatable> {
    |                      `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
126 |     struct WaitUntil {
127 |         var continuation: AsyncStream<T>.Continuation
    :
205 |                     // Double-check in case the value arrived between the check and now
206 |                     let checkStartIndex = self.lastStreamEndIndex
207 |                     if let stopIndex = self._values[checkStartIndex...].firstIndex(where: { $0 == stopValue }) {
    |                                                                                                   `- warning: capture of 'stopValue' with non-sendable type 'T' in a '@Sendable' closure
208 |                         for value in self._values[checkStartIndex ... stopIndex] {
209 |                             continuation.yield(value)
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:207:99: warning: capture of 'stopValue' with non-sendable type 'T' in an isolated closure; this is an error in the Swift 6 language mode
123 | }
124 |
125 | class EventCollector<T: Equatable> {
    |                      `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
126 |     struct WaitUntil {
127 |         var continuation: AsyncStream<T>.Continuation
    :
205 |                     // Double-check in case the value arrived between the check and now
206 |                     let checkStartIndex = self.lastStreamEndIndex
207 |                     if let stopIndex = self._values[checkStartIndex...].firstIndex(where: { $0 == stopValue }) {
    |                                                                                                   `- warning: capture of 'stopValue' with non-sendable type 'T' in an isolated closure; this is an error in the Swift 6 language mode
208 |                         for value in self._values[checkStartIndex ... stopIndex] {
209 |                             continuation.yield(value)
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:157:44: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
155 |                 let currentIndex = self._values.count - 1
156 |                 if currentIndex >= waitUntil.startIndex {
157 |                     waitUntil.continuation.yield(event)
    |                                            |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
    |                                            `- note: 'event' used after being passed as a 'sending' parameter; Later uses could race
158 |                     if event == waitUntil.stopValue {
    |                                           `- note: access can happen concurrently
159 |                         waitUntil.continuation.finish()
160 |                         self.lastStreamEndIndex = currentIndex + 1
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:179:30: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
177 |         return AsyncStream<T> { continuation in
178 |             for value in self.values {
179 |                 continuation.yield(value)
    |                              |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
180 |             }
181 |             continuation.finish()
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:194:38: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
192 |                     // Yield all values from startIndex to stopIndex
193 |                     for value in self._values[startIndex ... stopIndex] {
194 |                         continuation.yield(value)
    |                                      |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
    |                                      `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
195 |                     }
196 |                     continuation.finish()
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:209:42: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
207 |                     if let stopIndex = self._values[checkStartIndex...].firstIndex(where: { $0 == stopValue }) {
208 |                         for value in self._values[checkStartIndex ... stopIndex] {
209 |                             continuation.yield(value)
    |                                          |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
    |                                          |- note: 'value' used after being passed as a 'sending' parameter; Later uses could race
    |                                          `- note: access can happen concurrently
210 |                         }
211 |                         continuation.finish()
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:249:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
247 |                 return
248 |             }
249 |             self?.add(event: status)
    |             |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
250 |         }
251 |     }
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:376:15: warning: sending 'd1Index' risks causing data races; this is an error in the Swift 6 language mode
374 |         }
375 |
376 |         while d1Index <= d1Operations.count - 1 {
    |               |- warning: sending 'd1Index' risks causing data races; this is an error in the Swift 6 language mode
    |               `- note: 'd1Index' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
377 |             if let d1Expected, let expected = d1Expected[safe: d1Index] as? TreeEditOpInfoForDebug, let operation = d1Operations[safe: d1Index] as? TreeEditOpInfo {
378 |                 expected.compare(operation)
    :
388 |     var d2Index = 0
389 |
390 |     await d2.subscribe("$.t") { event, _ in
    |                               `- note: access can happen concurrently
391 |         if let event = event as? LocalChangeEvent {
392 |             d2Operations.append(contentsOf: event.value.operations.compactMap { $0 as? TreeEditOpInfo })
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:377:20: warning: sending 'd1Expected' risks causing data races; this is an error in the Swift 6 language mode
375 |
376 |         while d1Index <= d1Operations.count - 1 {
377 |             if let d1Expected, let expected = d1Expected[safe: d1Index] as? TreeEditOpInfoForDebug, let operation = d1Operations[safe: d1Index] as? TreeEditOpInfo {
    |                    |- warning: sending 'd1Expected' risks causing data races; this is an error in the Swift 6 language mode
    |                    `- note: task-isolated 'd1Expected' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
378 |                 expected.compare(operation)
379 |             } else if let d1Expected, let expected = d1Expected[safe: d1Index] as? TreeStyleOpInfoForDebug, let operation = d1Operations[safe: d1Index] as? TreeStyleOpInfo {
/Users/admin/builder/spi-builder-workspace/Tests/Helper/TestHelper.swift:398:20: warning: sending 'd2Expected' risks causing data races; this is an error in the Swift 6 language mode
396 |
397 |         while d2Index <= d2Operations.count - 1 {
398 |             if let d2Expected, let expected = d2Expected[safe: d2Index] as? TreeEditOpInfoForDebug, let operation = d2Operations[safe: d2Index] as? TreeEditOpInfo {
    |                    |- warning: sending 'd2Expected' risks causing data races; this is an error in the Swift 6 language mode
    |                    `- note: task-isolated 'd2Expected' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
399 |                 expected.compare(operation)
400 |             } else if let d2Expected, let expected = d2Expected[safe: d1Index] as? TreeStyleOpInfoForDebug, let operation = d2Operations[safe: d1Index] as? TreeStyleOpInfo {
[1043/1043] Emitting module YorkieTestHelper
/Users/admin/builder/spi-builder-workspace/Tests/Helper/YorkieProjectHelper.swift:28:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'YorkieProjectError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 26 |
 27 | enum YorkieProjectError: Error {
 28 |     case invalidResponse([String: Any])
    |          `- warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'YorkieProjectError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 29 |     case missingToken
 30 |     case invalidProjectResponse([String: Any])
/Users/admin/builder/spi-builder-workspace/Tests/Helper/YorkieProjectHelper.swift:30:10: warning: associated value 'invalidProjectResponse' of 'Sendable'-conforming enum 'YorkieProjectError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 28 |     case invalidResponse([String: Any])
 29 |     case missingToken
 30 |     case invalidProjectResponse([String: Any])
    |          `- warning: associated value 'invalidProjectResponse' of 'Sendable'-conforming enum 'YorkieProjectError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 31 | }
 32 |
Build complete! (100.52s)
Fetching https://github.com/connectrpc/connect-swift
Fetching https://github.com/groue/Semaphore.git
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/apple/swift-protobuf.git from cache
Fetching https://github.com/apple/swift-log.git from cache
[1/293] Fetching semaphore
[212/2464] Fetching semaphore, swift-docc-plugin
[278/11522] Fetching semaphore, swift-docc-plugin, connect-swift
Fetched https://github.com/apple/swift-docc-plugin from cache (1.26s)
Fetched https://github.com/connectrpc/connect-swift from cache (2.42s)
Fetched https://github.com/groue/Semaphore.git from cache (2.42s)
Fetched https://github.com/apple/swift-log.git from cache (2.45s)
Fetched https://github.com/apple/swift-protobuf.git from cache (2.48s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.3 (3.09s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.91s)
Computing version for https://github.com/groue/Semaphore.git
Computed https://github.com/groue/Semaphore.git at 0.0.8 (1.72s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.47s)
Computing version for https://github.com/connectrpc/connect-swift
Computed https://github.com/connectrpc/connect-swift at 1.0.3 (0.58s)
Fetching https://github.com/apple/swift-nio.git from cache
Fetching https://github.com/apple/swift-nio-ssl.git from cache
Fetching https://github.com/apple/swift-nio-http2.git from cache
Fetched https://github.com/apple/swift-nio-http2.git from cache (0.95s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (0.95s)
Fetched https://github.com/apple/swift-nio.git from cache (2.51s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (3.19s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.40.0 (0.49s)
Fetching https://github.com/apple/swift-atomics.git from cache
Fetched https://github.com/apple/swift-atomics.git from cache (0.70s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.20s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.36.0 (0.51s)
Computing version for https://github.com/apple/swift-protobuf.git
Computed https://github.com/apple/swift-protobuf.git at 1.35.1 (0.51s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.95.0 (0.62s)
Fetching https://github.com/apple/swift-collections.git from cache
Fetching https://github.com/apple/swift-system.git from cache
Fetched https://github.com/apple/swift-system.git from cache (1.33s)
Fetched https://github.com/apple/swift-collections.git from cache (1.34s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (1.87s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.3.0 (0.59s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-protobuf.git
Working copy of https://github.com/apple/swift-protobuf.git resolved at 1.35.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/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.95.0
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.40.0
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.36.0
Creating working copy for https://github.com/connectrpc/connect-swift
Working copy of https://github.com/connectrpc/connect-swift resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.4
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.3.0
Creating working copy for https://github.com/groue/Semaphore.git
Working copy of https://github.com/groue/Semaphore.git resolved at 0.0.8
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "connect-swift",
      "requirement" : {
        "exact" : [
          "1.0.3"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/connectrpc/connect-swift"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "exact" : [
          "1.6.3"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "semaphore",
      "requirement" : {
        "exact" : [
          "0.0.8"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/groue/Semaphore.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "exact" : [
          "1.4.3"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swift-protobuf",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.31.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-protobuf.git"
    }
  ],
  "manifest_display_name" : "Yorkie",
  "name" : "Yorkie",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Yorkie",
      "targets" : [
        "Yorkie"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "YorkieUnitTests",
      "module_type" : "SwiftTarget",
      "name" : "YorkieUnitTests",
      "path" : "Tests/Unit",
      "sources" : [
        "API/V1/ConverterTests.swift",
        "Document/CRDT/CRDTArrayTests.swift",
        "Document/CRDT/CRDTCountTests.swift",
        "Document/CRDT/CRDTElementTests.swift",
        "Document/CRDT/CRDTObjectTests.swift",
        "Document/CRDT/CRDTRootTests.swift",
        "Document/CRDT/CRDTTextTests.swift",
        "Document/CRDT/CRDTTreeTests.swift",
        "Document/CRDT/ElementRHTTests.swift",
        "Document/CRDT/PrimitiveTests.swift",
        "Document/CRDT/RGATreeListTests.swift",
        "Document/CRDT/RHTTests.swift",
        "Document/Change/ChangeContextTests.swift",
        "Document/Change/ChangeIDTests.swift",
        "Document/Change/ChangePackTests.swift",
        "Document/Change/ChangeTests.swift",
        "Document/Change/CheckpointTests.swift",
        "Document/DocumentConcurrentAccessTests.swift",
        "Document/DocumentTests.swift",
        "Document/GCTests.swift",
        "Document/Json/JONSTreeTests.swift",
        "Document/Json/JSONArrayTests+Ex.swift",
        "Document/Json/JSONArrayTests.swift",
        "Document/Json/JSONObjectTests.swift",
        "Document/Json/JSONTextTest.swift",
        "Document/Operation/AddOperationTests.swift",
        "Document/Operation/MoveOperationTests.swift",
        "Document/Operation/RemoveOperationTests.swift",
        "Document/Operation/SetOperationTests.swift",
        "Document/Time/TimeTicketTests.swift",
        "Document/Time/VersionVectorTest.swift",
        "Document/Util/DocumentSizeTest.swift",
        "Document/Util/PayloadTests.swift",
        "Document/Util/StringEscapingTests.swift",
        "Document/Util/StringValueTypeDictionaryTests.swift",
        "Document/Util/YorkieJSONObjectableTests.swift",
        "Schema/RulesetValidatorTests.swift.swift",
        "TestUtils/XCTestCase+Extension.swift",
        "Util/Helper.swift",
        "Util/IndexTreeTests.swift",
        "Util/LLRBTreeTests.swift",
        "Util/SplayTreeTests.swift",
        "Util/StringExtensionsTests.swift"
      ],
      "target_dependencies" : [
        "Yorkie",
        "YorkieTestHelper"
      ],
      "type" : "test"
    },
    {
      "c99name" : "YorkieTestHelper",
      "module_type" : "SwiftTarget",
      "name" : "YorkieTestHelper",
      "path" : "Tests/Helper",
      "product_dependencies" : [
        "ConnectNIO"
      ],
      "sources" : [
        "TestHelper.swift",
        "WebhookServer.swift",
        "YorkieProjectHelper.swift"
      ],
      "target_dependencies" : [
        "Yorkie"
      ],
      "type" : "library"
    },
    {
      "c99name" : "YorkieIntegrationTests",
      "module_type" : "SwiftTarget",
      "name" : "YorkieIntegrationTests",
      "path" : "Tests/Integration",
      "sources" : [
        "ClientIntegrationTests.swift",
        "CounterIntegrationTests.swift",
        "DocumentIntegrationTests.swift",
        "DocumentLimitTests.swift",
        "DocumentSchemaTest.swift",
        "GCIntegrationTests.swift",
        "GRPCTests.swift",
        "Helpers/Client+Ex.swift",
        "Helpers/ServerInfo.swift",
        "PresenceTests.swift",
        "SnapshotTests.swift",
        "TextIntegrationTests.swift",
        "TreeConcurrencyTests.swift",
        "TreeIntegrationTests.swift",
        "WebhookIntegrationTests.swift"
      ],
      "target_dependencies" : [
        "Yorkie",
        "YorkieTestHelper"
      ],
      "type" : "test"
    },
    {
      "c99name" : "YorkieBenchmarkTests",
      "module_type" : "SwiftTarget",
      "name" : "YorkieBenchmarkTests",
      "path" : "Tests/Benchmark",
      "sources" : [
        "DocumentBenchmarkTests.swift",
        "SplayTreeBenchmarkTests.swift"
      ],
      "target_dependencies" : [
        "Yorkie",
        "YorkieTestHelper"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Yorkie",
      "module_type" : "SwiftTarget",
      "name" : "Yorkie",
      "path" : "Sources",
      "product_dependencies" : [
        "Connect",
        "Logging",
        "Semaphore"
      ],
      "product_memberships" : [
        "Yorkie"
      ],
      "sources" : [
        "API/Converter.swift",
        "API/GRPCTypeAlias.swift",
        "API/V1/Generated/googleapis/google/rpc/error_details.pb.swift",
        "API/V1/Generated/yorkie/v1/resources.pb.swift",
        "API/V1/Generated/yorkie/v1/yorkie.connect.swift",
        "API/V1/Generated/yorkie/v1/yorkie.pb.swift",
        "Core/Attachable.swift",
        "Core/Attachment.swift",
        "Core/Auth.swift",
        "Core/AuthTokenInjector.swift",
        "Core/Client.swift",
        "Core/Logger.swift",
        "Core/YorkieService.swift",
        "Document/CRDT/CRDTArray.swift",
        "Document/CRDT/CRDTCounter.swift",
        "Document/CRDT/CRDTElement.swift",
        "Document/CRDT/CRDTObject.swift",
        "Document/CRDT/CRDTRoot.swift",
        "Document/CRDT/CRDTText.swift",
        "Document/CRDT/CRDTTree.swift",
        "Document/CRDT/ElementRHT.swift",
        "Document/CRDT/GC.swift",
        "Document/CRDT/Primitive.swift",
        "Document/CRDT/RGATreeList.swift",
        "Document/CRDT/RGATreeSplit.swift",
        "Document/CRDT/RHT.swift",
        "Document/Change/Change.swift",
        "Document/Change/ChangeContext.swift",
        "Document/Change/ChangeID.swift",
        "Document/Change/ChangePack.swift",
        "Document/Change/Checkpoint.swift",
        "Document/DocEvent.swift",
        "Document/Document.swift",
        "Document/Json/ElementConverter.swift",
        "Document/Json/JSONArray.swift",
        "Document/Json/JSONCounter.swift",
        "Document/Json/JSONDatable.swift",
        "Document/Json/JSONObject.swift",
        "Document/Json/JSONText.swift",
        "Document/Json/JSONTree.swift",
        "Document/Json/ObjectDataHandler.swift",
        "Document/Json/Strings.swift",
        "Document/Operation/AddOperation.swift",
        "Document/Operation/ArraySetOperation.swift",
        "Document/Operation/EditOperation.swift",
        "Document/Operation/IncreaseOperation.swift",
        "Document/Operation/MoveOperation.swift",
        "Document/Operation/Operation.swift",
        "Document/Operation/RemoveOperation.swift",
        "Document/Operation/SetOperation.swift",
        "Document/Operation/StyleOperation.swift",
        "Document/Operation/TreeEditOperation.swift",
        "Document/Operation/TreeSytleOperation.swift",
        "Document/Presence/DocPresence.swift",
        "Document/Presence/Presence.swift",
        "Document/Ruleset/Ruleset.swift",
        "Document/Ruleset/RulesetValidator.swift",
        "Document/Time/ActorID.swift",
        "Document/Time/TimeTicket.swift",
        "Document/Time/VersionVector.swift",
        "Document/Util/JSONObjectable.swift",
        "Document/Util/Payload.swift",
        "Document/Util/YorkieCountable.swift",
        "Util/Codable+Extension.swift",
        "Util/Collection+Extensions.swift",
        "Util/Dictionary+Extension.swift",
        "Util/Errors.swift",
        "Util/IndexTree.swift",
        "Util/LLRBTree.swift",
        "Util/Optional+Extensions.swift",
        "Util/SplayTree.swift",
        "Util/String+Extensions.swift",
        "Version.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.