The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Yorkie, reference 0.6.35 (6e8020), with Swift 6.1 for macOS (SPM) on 12 Jan 2026 04:23:37 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

 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 {
[712/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 {
[713/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 {
[714/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 |     /**
[715/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 |     /**
[716/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 |     /**
[717/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 |     /**
[718/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 |     /**
[719/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 |     /**
[720/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 |     /**
[721/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 |     /**
/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/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/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/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/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/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/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,
[729/742] Compiling Atomics AtomicBool.swift
[730/742] Compiling Atomics IntegerConformances.swift
[731/742] Emitting module Atomics
[731/742] Compiling c-nioatomics.c
[732/742] Compiling c-atomics.c
[734/748] 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
[735/748] 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
[736/748] 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
[737/748] 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
[738/748] 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
[739/748] 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/812] 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
[741/812] 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/812] 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/812] 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/812] 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/812] 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/812] 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/812] 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
[748/812] 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/812] 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/812] 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/812] 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/812] 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/812] 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/819] Compiling NIOCore AddressedEnvelope.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[755/819] Compiling NIOCore AsyncAwaitSupport.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[756/819] Compiling NIOCore AsyncChannel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[757/819] Compiling NIOCore AsyncChannelHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[758/819] Compiling NIOCore AsyncChannelInboundStream.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[759/819] Compiling NIOCore AsyncChannelOutboundWriter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[760/819] Compiling NIOCore NIOAsyncSequenceProducer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[761/819] 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"),
[762/819] Compiling NIOCore NIOAsyncWriter.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"),
[763/819] Compiling NIOCore NIOThrowingAsyncSequenceProducer.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"),
[764/819] Compiling NIOCore BSDSocketAPI.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"),
[765/819] Compiling NIOCore ByteBuffer-aux.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"),
[766/819] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.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"),
[767/819] Compiling NIOCore ByteBuffer-conversions.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"),
/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"),
[769/819] 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 |     /**
[770/819] 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
[771/819] 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
[772/819] 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
[773/819] 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
[774/819] 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
[775/819] 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
[776/819] 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
[777/819] 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
[778/819] 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
[779/819] 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
[780/819] 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
[781/819] 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
[782/819] 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
[783/819] 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
[784/819] 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
[785/819] 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
[786/819] 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
[787/819] 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
[788/819] 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
[789/819] 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
[790/819] 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
[791/819] 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
[792/819] 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
[793/819] 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
[794/819] 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
[795/819] 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
[796/819] 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
[797/819] 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
[798/819] 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
[799/819] 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
[800/819] 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
[801/819] 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
[802/819] 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
[803/819] 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
[804/819] 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
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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
[812/819] 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/819] 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
[814/819] 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
[815/819] 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
[816/819] 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
[817/819] 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
[818/819] 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
[819/819] 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
[820/875] 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
[821/875] 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
[822/875] 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
[823/875] 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/875] 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
[825/875] 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
[826/875] 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
[827/875] 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
[828/875] 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
[829/880] 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
[830/880] 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
[831/880] 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
[832/880] 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
[833/880] Compiling NIOPosix UnsafeTransfer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[834/880] 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
[835/880] 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
[836/880] 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
[837/880] 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
[838/880] 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
[839/880] 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
[840/880] 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
[841/880] 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
[842/880] 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
[843/880] 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
[844/880] 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
[845/880] 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/880] 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/880] 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/880] 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/880] 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/880] 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
[851/880] 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
[852/880] 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
[853/880] 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
[854/880] 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
[855/880] 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
[856/880] 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
[857/880] 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
[858/880] 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
[859/880] 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
[860/880] 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
[861/880] 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
[862/880] 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
[863/880] 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
[864/880] 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
[865/880] 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
[866/880] 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
[867/880] 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
[868/880] 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
[869/880] 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
[870/880] 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
[871/880] 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
[872/880] 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
[873/880] 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
[874/880] 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
[875/880] 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
[876/880] 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
[877/880] 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
[878/880] 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
[879/880] 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
[880/880] 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
[881/882] 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
[882/882] 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
[883/910] 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
[884/910] 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
[885/910] 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
[886/910] 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
[887/911] 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
[888/911] 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
[889/911] 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/911] 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
[891/911] 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
[892/911] 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
[893/911] 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
[894/911] 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
[895/911] 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
[896/911] 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
[897/911] 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
[898/942] 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
[899/942] Compiling NIOSSL SSLConnection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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/942] Compiling NIOSSL SSLContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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/942] 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
[902/942] 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
[903/942] 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
[904/942] 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
[905/942] 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
[906/942] 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
[907/942] 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
[908/942] 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
[909/942] 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
[910/942] 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
[911/942] 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
[912/953] 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
[913/953] 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
[914/954] 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
[915/954] 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
[916/954] 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
[917/954] 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
[918/954] 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
[919/954] 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
[920/954] 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
[921/957] 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
[922/957] 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
[923/957] 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
[924/957] 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
[925/1019] 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
[926/1019] 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
[927/1019] 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
[928/1019] 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
[929/1019] 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
[930/1019] 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
[931/1019] 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
[932/1019] 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
[933/1019] 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
[934/1019] 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
[935/1019] 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
[936/1019] 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
[937/1019] 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
[938/1019] 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
[939/1019] 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
[940/1019] 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
[941/1019] 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
[942/1019] 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
[943/1019] 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
[944/1019] 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
[945/1019] 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
[946/1019] 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
[947/1019] 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
[948/1019] 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
[949/1019] 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
[950/1019] 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
[951/1019] 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
[952/1019] 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
[953/1019] 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/1019] 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/1019] 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
[956/1019] 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
[957/1019] 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
[958/1019] 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
[959/1019] 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
[960/1019] 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
[961/1019] 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
[962/1019] 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
[963/1019] 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
[964/1019] 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
[965/1019] 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
[966/1019] 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
[967/1019] 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
[968/1019] 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
[969/1019] 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
[970/1019] 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
[971/1025] 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
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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
[977/1025] 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
[978/1025] 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
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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
[993/1025] 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
[994/1025] 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
[995/1025] 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
[996/1025] 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
[997/1025] 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
[998/1025] 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
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming 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
[1013/1025] 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
[1014/1025] 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
[1015/1025] 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
[1016/1025] 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
[1017/1025] 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
[1018/1025] 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
[1019/1025] 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
[1020/1025] 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
[1021/1025] 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
[1022/1025] 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
[1023/1025] 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
[1024/1025] 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
[1025/1025] 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
[1026/1034] 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
[1027/1034] 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
[1028/1034] 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
[1029/1034] 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
[1030/1034] 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
[1031/1034] 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
[1032/1034] 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
[1033/1034] 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
[1034/1034] 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
[1035/1038] 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
[1036/1038] 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 |
[1037/1038] 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 {
[1038/1038] 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! (99.60s)
Fetching https://github.com/groue/Semaphore.git
Fetching https://github.com/connectrpc/connect-swift
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/2158] Fetching swift-docc-plugin
[88/2451] Fetching swift-docc-plugin, semaphore
[510/11397] Fetching swift-docc-plugin, semaphore, connect-swift
Fetched https://github.com/apple/swift-docc-plugin from cache (4.34s)
Fetched https://github.com/connectrpc/connect-swift from cache (4.34s)
Fetched https://github.com/groue/Semaphore.git from cache (4.34s)
Fetched https://github.com/apple/swift-log.git from cache (4.36s)
Fetched https://github.com/apple/swift-protobuf.git from cache (4.39s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.3 (5.08s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.07s)
Computing version for https://github.com/groue/Semaphore.git
Computed https://github.com/groue/Semaphore.git at 0.0.8 (1.69s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.46s)
Computing version for https://github.com/connectrpc/connect-swift
Computed https://github.com/connectrpc/connect-swift at 1.0.3 (0.55s)
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.24s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (2.87s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.39.0 (0.47s)
Fetching https://github.com/apple/swift-atomics.git from cache
Fetched https://github.com/apple/swift-atomics.git from cache (0.72s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.19s)
Computing version for https://github.com/apple/swift-protobuf.git
Computed https://github.com/apple/swift-protobuf.git at 1.33.3 (0.48s)
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.47s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.92.1 (0.60s)
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.01s)
Fetched https://github.com/apple/swift-collections.git from cache (1.42s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.3 (1.92s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.3.0 (0.57s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
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.3
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-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-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.92.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-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.36.0
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.39.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/apple/swift-protobuf.git
Working copy of https://github.com/apple/swift-protobuf.git resolved at 1.33.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.