The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of aws-crt-swift, reference main (93ac60), with Swift 6.0 for Linux on 6 Nov 2024 19:52:15 UTC.

Swift 6 data race errors: 29

Build Command

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

Build Log

589 |     let userData = SendablePointer(pointer: userData)
590 |     Task {
    |          `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
591 |         do {
592 |             let credentials = try await delegate.getCredentials()
    |                                         `- note: closure captures 'delegate' which is accessible to code in the current task
593 |             callbackFn(credentials.rawValue, AWS_OP_SUCCESS, userData.pointer)
594 |         } catch CommonRunTimeError.crtError(let crtError) {
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/imds/IMDSClient.swift:378:33: warning: task-isolated value of type 'Credentials' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
376 |
377 |     // Success
378 |     imdsClientCore.continuation.resume(returning: Credentials(rawValue: credentialsPointer!))
    |                                 `- warning: task-isolated value of type 'Credentials' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
379 | }
380 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/imds/IMDSClient.swift:391:33: warning: task-isolated value of type 'IAMProfile' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
389 |
390 |     // Success
391 |     imdsClientCore.continuation.resume(returning: IAMProfile(profile: profilePointer!.pointee))
    |                                 `- warning: task-isolated value of type 'IAMProfile' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
392 | }
393 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/imds/IMDSClient.swift:404:33: warning: task-isolated value of type 'IMDSInstanceInfo' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
402 |
403 |     // Success
404 |     imdsClientCore.continuation.resume(returning: IMDSInstanceInfo(instanceInfo: infoPointer!.pointee))
    |                                 `- warning: task-isolated value of type 'IMDSInstanceInfo' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
405 | }
406 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/signing/Signer.swift:206:38: warning: sending 'signRequestCore.request' risks causing data races; this is an error in the Swift 6 language mode
204 |                                                                  signingResult!)
205 |     if signedRequest == AWS_OP_SUCCESS {
206 |         signRequestCore.continuation.resume(returning: signRequestCore.request)
    |                                      |- warning: sending 'signRequestCore.request' risks causing data races; this is an error in the Swift 6 language mode
    |                                      `- note: task-isolated 'signRequestCore.request' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
207 |     } else {
208 |         signRequestCore.continuation.resume(throwing: CommonRunTimeError.crtError(.makeFromLastError()))
[421/459] Compiling AwsCommonRuntimeKit Utilities.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[422/459] Compiling AwsCommonRuntimeKit EventStreamHeader.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[423/459] Compiling AwsCommonRuntimeKit EventStreamMessage.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[424/459] Compiling AwsCommonRuntimeKit EventStreamMessageDecoder.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[425/459] Compiling AwsCommonRuntimeKit HTTP1Stream.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[426/459] Compiling AwsCommonRuntimeKit HTTP2ClientConnection.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[427/459] Compiling AwsCommonRuntimeKit HTTP2Error.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[428/459] Compiling AwsCommonRuntimeKit HTTP2Settings.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[429/459] Compiling AwsCommonRuntimeKit HTTP2Stream.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[430/459] Compiling AwsCommonRuntimeKit HTTPMonitoringOptions.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[431/459] Compiling AwsCommonRuntimeKit HTTPProxyAuthenticationType.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[432/459] Compiling AwsCommonRuntimeKit HTTPProxyConnectionType.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[433/459] Compiling AwsCommonRuntimeKit HTTPProxyEnvSettings.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[434/459] Compiling AwsCommonRuntimeKit HTTPProxyEnvType.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[435/459] Compiling AwsCommonRuntimeKit HTTPProxyOptions.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[436/459] Compiling AwsCommonRuntimeKit HTTPRequest.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[437/459] Compiling AwsCommonRuntimeKit HTTPRequestBase.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[438/459] Compiling AwsCommonRuntimeKit HTTPRequestOptions.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
[439/459] Compiling AwsCommonRuntimeKit HTTP2StreamManager.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTP2StreamManager.swift:87:36: warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
85 |     // SUCCESS
86 |     let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
87 |     acquireStreamCore.continuation.resume(returning: http2Stream)
   |                                    |- warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
   |                                    `- note: task-isolated 'http2Stream' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
88 | }
89 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:51:43: warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
49 |     // Success
50 |     switch aws_http_connection_get_version(connection) {
51 |     case AWS_HTTP_VERSION_2: continuation.resume(
   |                                           `- warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
52 |         returning: HTTP2ClientConnection(
53 |             manager: callbackDataCore.connectionManager,
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:56:22: warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
54 |             connection: connection!))
55 |     case AWS_HTTP_VERSION_1_1:
56 |         continuation.resume(
   |                      `- warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
57 |             returning: HTTPClientConnection(
58 |                 manager: callbackDataCore.connectionManager,
[440/459] Compiling AwsCommonRuntimeKit HTTP2StreamManagerOptions.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTP2StreamManager.swift:87:36: warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
85 |     // SUCCESS
86 |     let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
87 |     acquireStreamCore.continuation.resume(returning: http2Stream)
   |                                    |- warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
   |                                    `- note: task-isolated 'http2Stream' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
88 | }
89 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:51:43: warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
49 |     // Success
50 |     switch aws_http_connection_get_version(connection) {
51 |     case AWS_HTTP_VERSION_2: continuation.resume(
   |                                           `- warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
52 |         returning: HTTP2ClientConnection(
53 |             manager: callbackDataCore.connectionManager,
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:56:22: warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
54 |             connection: connection!))
55 |     case AWS_HTTP_VERSION_1_1:
56 |         continuation.resume(
   |                      `- warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
57 |             returning: HTTPClientConnection(
58 |                 manager: callbackDataCore.connectionManager,
[441/459] Compiling AwsCommonRuntimeKit HTTPClientConnection.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTP2StreamManager.swift:87:36: warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
85 |     // SUCCESS
86 |     let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
87 |     acquireStreamCore.continuation.resume(returning: http2Stream)
   |                                    |- warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
   |                                    `- note: task-isolated 'http2Stream' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
88 | }
89 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:51:43: warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
49 |     // Success
50 |     switch aws_http_connection_get_version(connection) {
51 |     case AWS_HTTP_VERSION_2: continuation.resume(
   |                                           `- warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
52 |         returning: HTTP2ClientConnection(
53 |             manager: callbackDataCore.connectionManager,
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:56:22: warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
54 |             connection: connection!))
55 |     case AWS_HTTP_VERSION_1_1:
56 |         continuation.resume(
   |                      `- warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
57 |             returning: HTTPClientConnection(
58 |                 manager: callbackDataCore.connectionManager,
[442/459] Compiling AwsCommonRuntimeKit HTTPClientConnectionManager.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTP2StreamManager.swift:87:36: warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
85 |     // SUCCESS
86 |     let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
87 |     acquireStreamCore.continuation.resume(returning: http2Stream)
   |                                    |- warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
   |                                    `- note: task-isolated 'http2Stream' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
88 | }
89 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:51:43: warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
49 |     // Success
50 |     switch aws_http_connection_get_version(connection) {
51 |     case AWS_HTTP_VERSION_2: continuation.resume(
   |                                           `- warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
52 |         returning: HTTP2ClientConnection(
53 |             manager: callbackDataCore.connectionManager,
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:56:22: warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
54 |             connection: connection!))
55 |     case AWS_HTTP_VERSION_1_1:
56 |         continuation.resume(
   |                      `- warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
57 |             returning: HTTPClientConnection(
58 |                 manager: callbackDataCore.connectionManager,
[443/459] Compiling AwsCommonRuntimeKit HTTPClientConnectionManagerCallbackCore.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTP2StreamManager.swift:87:36: warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
85 |     // SUCCESS
86 |     let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
87 |     acquireStreamCore.continuation.resume(returning: http2Stream)
   |                                    |- warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
   |                                    `- note: task-isolated 'http2Stream' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
88 | }
89 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:51:43: warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
49 |     // Success
50 |     switch aws_http_connection_get_version(connection) {
51 |     case AWS_HTTP_VERSION_2: continuation.resume(
   |                                           `- warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
52 |         returning: HTTP2ClientConnection(
53 |             manager: callbackDataCore.connectionManager,
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:56:22: warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
54 |             connection: connection!))
55 |     case AWS_HTTP_VERSION_1_1:
56 |         continuation.resume(
   |                      `- warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
57 |             returning: HTTPClientConnection(
58 |                 manager: callbackDataCore.connectionManager,
[444/459] Compiling AwsCommonRuntimeKit HTTPClientConnectionManagerMetrics.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTP2StreamManager.swift:87:36: warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
85 |     // SUCCESS
86 |     let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
87 |     acquireStreamCore.continuation.resume(returning: http2Stream)
   |                                    |- warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
   |                                    `- note: task-isolated 'http2Stream' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
88 | }
89 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:51:43: warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
49 |     // Success
50 |     switch aws_http_connection_get_version(connection) {
51 |     case AWS_HTTP_VERSION_2: continuation.resume(
   |                                           `- warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
52 |         returning: HTTP2ClientConnection(
53 |             manager: callbackDataCore.connectionManager,
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:56:22: warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
54 |             connection: connection!))
55 |     case AWS_HTTP_VERSION_1_1:
56 |         continuation.resume(
   |                      `- warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
57 |             returning: HTTPClientConnection(
58 |                 manager: callbackDataCore.connectionManager,
[445/459] Compiling AwsCommonRuntimeKit HTTPClientConnectionOptions.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTP2StreamManager.swift:87:36: warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
85 |     // SUCCESS
86 |     let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
87 |     acquireStreamCore.continuation.resume(returning: http2Stream)
   |                                    |- warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
   |                                    `- note: task-isolated 'http2Stream' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
88 | }
89 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:51:43: warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
49 |     // Success
50 |     switch aws_http_connection_get_version(connection) {
51 |     case AWS_HTTP_VERSION_2: continuation.resume(
   |                                           `- warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
52 |         returning: HTTP2ClientConnection(
53 |             manager: callbackDataCore.connectionManager,
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:56:22: warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
54 |             connection: connection!))
55 |     case AWS_HTTP_VERSION_1_1:
56 |         continuation.resume(
   |                      `- warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
57 |             returning: HTTPClientConnection(
58 |                 manager: callbackDataCore.connectionManager,
[446/459] Compiling AwsCommonRuntimeKit HTTPHeader.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTP2StreamManager.swift:87:36: warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
85 |     // SUCCESS
86 |     let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
87 |     acquireStreamCore.continuation.resume(returning: http2Stream)
   |                                    |- warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
   |                                    `- note: task-isolated 'http2Stream' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
88 | }
89 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:51:43: warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
49 |     // Success
50 |     switch aws_http_connection_get_version(connection) {
51 |     case AWS_HTTP_VERSION_2: continuation.resume(
   |                                           `- warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
52 |         returning: HTTP2ClientConnection(
53 |             manager: callbackDataCore.connectionManager,
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:56:22: warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
54 |             connection: connection!))
55 |     case AWS_HTTP_VERSION_1_1:
56 |         continuation.resume(
   |                      `- warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
57 |             returning: HTTPClientConnection(
58 |                 manager: callbackDataCore.connectionManager,
[447/459] Compiling AwsCommonRuntimeKit HTTPHeaderBlock.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTP2StreamManager.swift:87:36: warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
85 |     // SUCCESS
86 |     let http2Stream = HTTP2Stream(rawValue: stream!, callbackData: acquireStreamCore.callbackCore)
87 |     acquireStreamCore.continuation.resume(returning: http2Stream)
   |                                    |- warning: sending 'http2Stream' risks causing data races; this is an error in the Swift 6 language mode
   |                                    `- note: task-isolated 'http2Stream' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
88 | }
89 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:51:43: warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
49 |     // Success
50 |     switch aws_http_connection_get_version(connection) {
51 |     case AWS_HTTP_VERSION_2: continuation.resume(
   |                                           `- warning: task-isolated value of type 'HTTP2ClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
52 |         returning: HTTP2ClientConnection(
53 |             manager: callbackDataCore.connectionManager,
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerCallbackCore.swift:56:22: warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
54 |             connection: connection!))
55 |     case AWS_HTTP_VERSION_1_1:
56 |         continuation.resume(
   |                      `- warning: task-isolated value of type 'HTTPClientConnection' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
57 |             returning: HTTPClientConnection(
58 |                 manager: callbackDataCore.connectionManager,
[448/459] Compiling AwsCommonRuntimeKit RetryStrategy.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:140:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 |
139 |     // Success
140 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
141 | }
142 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:126:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
124 |     // Success
125 |     aws_retry_token_acquire(token!)
126 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
127 | }
128 |
[449/459] Compiling AwsCommonRuntimeKit RetryToken.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:140:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 |
139 |     // Success
140 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
141 | }
142 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:126:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
124 |     // Success
125 |     aws_retry_token_acquire(token!)
126 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
127 | }
128 |
[450/459] Compiling AwsCommonRuntimeKit FileBasedConfiguration.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:140:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 |
139 |     // Success
140 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
141 | }
142 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:126:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
124 |     // Success
125 |     aws_retry_token_acquire(token!)
126 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
127 | }
128 |
[451/459] Compiling AwsCommonRuntimeKit EndpointProperty.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:140:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 |
139 |     // Success
140 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
141 | }
142 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:126:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
124 |     // Success
125 |     aws_retry_token_acquire(token!)
126 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
127 | }
128 |
[452/459] Compiling AwsCommonRuntimeKit EndpointsRequestContext.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:140:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 |
139 |     // Success
140 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
141 | }
142 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:126:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
124 |     // Success
125 |     aws_retry_token_acquire(token!)
126 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
127 | }
128 |
[453/459] Compiling AwsCommonRuntimeKit EndpointsRuleEngine.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:140:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 |
139 |     // Success
140 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
141 | }
142 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:126:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
124 |     // Success
125 |     aws_retry_token_acquire(token!)
126 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
127 | }
128 |
[454/459] Compiling AwsCommonRuntimeKit ResolvedEndpointType.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:140:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 |
139 |     // Success
140 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
141 | }
142 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:126:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
124 |     // Success
125 |     aws_retry_token_acquire(token!)
126 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
127 | }
128 |
[455/459] Compiling AwsCommonRuntimeKit resource_bundle_accessor.swift
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Allocator.swift:9:5: warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  7 |  You are probably looking to use `allocator` instead.
  8 |  */
  9 | var allocator = aws_default_allocator()!
    |     |- warning: var 'allocator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'allocator' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'allocator' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |
 11 | /// An allocator is used to allocate memory on the heap.
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:140:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
138 |
139 |     // Success
140 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
141 | }
142 |
/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/io/retryer/RetryStrategy.swift:126:39: warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
124 |     // Success
125 |     aws_retry_token_acquire(token!)
126 |     crtRetryStrategyCore.continuation.resume(returning: RetryToken(rawValue: token!))
    |                                       `- warning: task-isolated value of type 'RetryToken' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
127 | }
128 |
[456/460] Wrapping AST for AwsCommonRuntimeKit for debugging
[458/464] Compiling Elasticurl ElasticurlOptions.swift
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:8:16: warning: static property 'caCert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | // swiftlint:disable identifier_name
  7 | public struct ElasticurlOptions {
  8 |     static let caCert = AWSCLIOption(name: "cacert",
    |                |- warning: static property 'caCert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'caCert' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |                                      hasArg: .required,
 10 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:12:16: warning: static property 'caPath' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |                                      flag: nil,
 11 |                                      val: "a")
 12 |     static let caPath = AWSCLIOption(name: "capath",
    |                |- warning: static property 'caPath' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'caPath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |                                      hasArg: .required,
 14 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:16:16: warning: static property 'cert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |                                      flag: nil,
 15 |                                      val: "b")
 16 |     static let cert = AWSCLIOption(name: "cert",
    |                |- warning: static property 'cert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cert' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |                                    hasArg: .required,
 18 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:20:16: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 18 |                                    flag: nil,
 19 |                                    val: "c")
 20 |     static let key = AWSCLIOption(name: "key",
    |                |- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |                                   hasArg: .required,
 22 |                                   flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:24:16: warning: static property 'connectTimeout' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |                                   flag: nil,
 23 |                                   val: "e")
 24 |     static let connectTimeout = AWSCLIOption(name: "connect-timeout",
    |                |- warning: static property 'connectTimeout' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'connectTimeout' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |                                              hasArg: .required,
 26 |                                              flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:28:16: warning: static property 'header' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |                                              flag: nil,
 27 |                                              val: "f")
 28 |     static let header = AWSCLIOption(name: "header",
    |                |- warning: static property 'header' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'header' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |                                      hasArg: .required,
 30 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:32:16: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |                                      flag: nil,
 31 |                                      val: "H")
 32 |     static let data = AWSCLIOption(name: "data",
    |                |- warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |                                    hasArg: .required,
 34 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:36:16: warning: static property 'dataFile' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |                                    flag: nil,
 35 |                                    val: "d")
 36 |     static let dataFile = AWSCLIOption(name: "data-file",
    |                |- warning: static property 'dataFile' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dataFile' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |                                        hasArg: .required,
 38 |                                        flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:40:16: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 38 |                                        flag: nil,
 39 |                                        val: "g")
 40 |     static let method = AWSCLIOption(name: "method",
    |                |- warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'method' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |                                      hasArg: .required,
 42 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:44:16: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 42 |                                      flag: nil,
 43 |                                      val: "M")
 44 |     static let get = AWSCLIOption(name: "get",
    |                |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'get' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |                                   hasArg: .none,
 46 |                                   flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:48:16: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |                                   flag: nil,
 47 |                                   val: "G")
 48 |     static let post = AWSCLIOption(name: "post",
    |                |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'post' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |                                    hasArg: .none,
 50 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:52:16: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 50 |                                    flag: nil,
 51 |                                    val: "P")
 52 |     static let head = AWSCLIOption(name: "head",
    |                |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |                                    hasArg: .none,
 54 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:56:16: warning: static property 'signingLib' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 54 |                                    flag: nil,
 55 |                                    val: "I")
 56 |     static let signingLib = AWSCLIOption(name: "signing-lib",
    |                |- warning: static property 'signingLib' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'signingLib' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |                                          hasArg: .required,
 58 |                                          flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:60:16: warning: static property 'include' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 58 |                                          flag: nil,
 59 |                                          val: "j")
 60 |     static let include = AWSCLIOption(name: "include",
    |                |- warning: static property 'include' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'include' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |                                       hasArg: .none,
 62 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:64:16: warning: static property 'insecure' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |                                       flag: nil,
 63 |                                       val: "i")
 64 |     static let insecure = AWSCLIOption(name: "insecure",
    |                |- warning: static property 'insecure' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'insecure' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |                                        hasArg: .none,
 66 |                                        flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:68:16: warning: static property 'signingFunc' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 66 |                                        flag: nil,
 67 |                                        val: "k")
 68 |     static let signingFunc = AWSCLIOption(name: "signing-func",
    |                |- warning: static property 'signingFunc' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'signingFunc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |                                           hasArg: .required,
 70 |                                           flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:72:16: warning: static property 'signingContext' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |                                           flag: nil,
 71 |                                           val: "l")
 72 |     static let signingContext = AWSCLIOption(name: "signing-context",
    |                |- warning: static property 'signingContext' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'signingContext' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |                                              hasArg: .required,
 74 |                                              flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:76:16: warning: static property 'output' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |                                              flag: nil,
 75 |                                              val: "m")
 76 |     static let output = AWSCLIOption(name: "output",
    |                |- warning: static property 'output' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'output' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |                                      hasArg: .required,
 78 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:80:16: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 78 |                                      flag: nil,
 79 |                                      val: "o")
 80 |     static let trace = AWSCLIOption(name: "trace",
    |                |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'trace' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |                                     hasArg: .required,
 82 |                                     flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:84:16: warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 82 |                                     flag: nil,
 83 |                                     val: "t")
 84 |     static let verbose = AWSCLIOption(name: "verbose",
    |                |- warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'verbose' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |                                       hasArg: .required,
 86 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:88:16: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |                                       flag: nil,
 87 |                                       val: "v")
 88 |     static let version = AWSCLIOption(name: "version",
    |                |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |                                       hasArg: .none,
 90 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:92:16: warning: static property 'http2' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 90 |                                       flag: nil,
 91 |                                       val: "V")
 92 |     static let http2 = AWSCLIOption(name: "http2",
    |                |- warning: static property 'http2' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'http2' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |                                     hasArg: .none,
 94 |                                     flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:96:16: warning: static property 'http1_1' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 94 |                                     flag: nil,
 95 |                                     val: "w")
 96 |     static let http1_1 = AWSCLIOption(name: "http1_1",
    |                |- warning: static property 'http1_1' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'http1_1' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |                                       hasArg: .none,
 98 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:100:16: warning: static property 'help' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 98 |                                       flag: nil,
 99 |                                       val: "W")
100 |     static let help = AWSCLIOption(name: "help",
    |                |- warning: static property 'help' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'help' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |                                    hasArg: .none,
102 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:104:16: warning: static property 'lastOption' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
102 |                                    flag: nil,
103 |                                    val: "h")
104 |     static let lastOption = AWSCLIOption(name: "",
    |                |- warning: static property 'lastOption' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'lastOption' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |                                          hasArg: .none,
106 |                                          flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
[459/464] Compiling Elasticurl CommandLine.swift
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:30:20: warning: reference to var 'aws_cli_optarg' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
28 |             }
29 |             if let char = UnicodeScalar(Int(opt)) {
30 |                 if aws_cli_optarg != nil {
   |                    `- warning: reference to var 'aws_cli_optarg' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
31 |                     argumentsDict[String(char)] = String(cString: aws_cli_optarg)
32 |                 } else {
AwsCCommon.aws_cli_optarg:1:12: note: var declared here
1 | public var aws_cli_optarg: UnsafePointer<CChar>!
  |            `- note: var declared here
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:31:67: warning: reference to var 'aws_cli_optarg' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
29 |             if let char = UnicodeScalar(Int(opt)) {
30 |                 if aws_cli_optarg != nil {
31 |                     argumentsDict[String(char)] = String(cString: aws_cli_optarg)
   |                                                                   `- warning: reference to var 'aws_cli_optarg' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
32 |                 } else {
33 |                     // if argument doesnt have a value just mark it as present in the dictionary
AwsCCommon.aws_cli_optarg:1:12: note: var declared here
1 | public var aws_cli_optarg: UnsafePointer<CChar>!
  |            `- note: var declared here
[460/464] Compiling Elasticurl Elasticurl.swift
/host/spi-builder-workspace/Source/Elasticurl/Elasticurl.swift:32:24: warning: static property 'context' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 | struct Elasticurl {
 31 |     private static let version = "0.1.0"
 32 |     private static var context = Context()
    |                        |- warning: static property 'context' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'context' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'context' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |     static func parseArguments() {
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:8:16: warning: static property 'caCert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | // swiftlint:disable identifier_name
  7 | public struct ElasticurlOptions {
  8 |     static let caCert = AWSCLIOption(name: "cacert",
    |                |- warning: static property 'caCert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'caCert' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |                                      hasArg: .required,
 10 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:12:16: warning: static property 'caPath' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |                                      flag: nil,
 11 |                                      val: "a")
 12 |     static let caPath = AWSCLIOption(name: "capath",
    |                |- warning: static property 'caPath' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'caPath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |                                      hasArg: .required,
 14 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:16:16: warning: static property 'cert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |                                      flag: nil,
 15 |                                      val: "b")
 16 |     static let cert = AWSCLIOption(name: "cert",
    |                |- warning: static property 'cert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cert' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |                                    hasArg: .required,
 18 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:24:16: warning: static property 'connectTimeout' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |                                   flag: nil,
 23 |                                   val: "e")
 24 |     static let connectTimeout = AWSCLIOption(name: "connect-timeout",
    |                |- warning: static property 'connectTimeout' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'connectTimeout' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |                                              hasArg: .required,
 26 |                                              flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:32:16: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |                                      flag: nil,
 31 |                                      val: "H")
 32 |     static let data = AWSCLIOption(name: "data",
    |                |- warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |                                    hasArg: .required,
 34 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:36:16: warning: static property 'dataFile' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |                                    flag: nil,
 35 |                                    val: "d")
 36 |     static let dataFile = AWSCLIOption(name: "data-file",
    |                |- warning: static property 'dataFile' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dataFile' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |                                        hasArg: .required,
 38 |                                        flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:44:16: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 42 |                                      flag: nil,
 43 |                                      val: "M")
 44 |     static let get = AWSCLIOption(name: "get",
    |                |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'get' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |                                   hasArg: .none,
 46 |                                   flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:52:16: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 50 |                                    flag: nil,
 51 |                                    val: "P")
 52 |     static let head = AWSCLIOption(name: "head",
    |                |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |                                    hasArg: .none,
 54 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:28:16: warning: static property 'header' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |                                              flag: nil,
 27 |                                              val: "f")
 28 |     static let header = AWSCLIOption(name: "header",
    |                |- warning: static property 'header' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'header' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |                                      hasArg: .required,
 30 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:100:16: warning: static property 'help' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 98 |                                       flag: nil,
 99 |                                       val: "W")
100 |     static let help = AWSCLIOption(name: "help",
    |                |- warning: static property 'help' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'help' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |                                    hasArg: .none,
102 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:92:16: warning: static property 'http2' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 90 |                                       flag: nil,
 91 |                                       val: "V")
 92 |     static let http2 = AWSCLIOption(name: "http2",
    |                |- warning: static property 'http2' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'http2' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |                                     hasArg: .none,
 94 |                                     flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:96:16: warning: static property 'http1_1' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 94 |                                     flag: nil,
 95 |                                     val: "w")
 96 |     static let http1_1 = AWSCLIOption(name: "http1_1",
    |                |- warning: static property 'http1_1' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'http1_1' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |                                       hasArg: .none,
 98 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:60:16: warning: static property 'include' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 58 |                                          flag: nil,
 59 |                                          val: "j")
 60 |     static let include = AWSCLIOption(name: "include",
    |                |- warning: static property 'include' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'include' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |                                       hasArg: .none,
 62 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:64:16: warning: static property 'insecure' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |                                       flag: nil,
 63 |                                       val: "i")
 64 |     static let insecure = AWSCLIOption(name: "insecure",
    |                |- warning: static property 'insecure' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'insecure' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |                                        hasArg: .none,
 66 |                                        flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:20:16: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 18 |                                    flag: nil,
 19 |                                    val: "c")
 20 |     static let key = AWSCLIOption(name: "key",
    |                |- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |                                   hasArg: .required,
 22 |                                   flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:40:16: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 38 |                                        flag: nil,
 39 |                                        val: "g")
 40 |     static let method = AWSCLIOption(name: "method",
    |                |- warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'method' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |                                      hasArg: .required,
 42 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:76:16: warning: static property 'output' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |                                              flag: nil,
 75 |                                              val: "m")
 76 |     static let output = AWSCLIOption(name: "output",
    |                |- warning: static property 'output' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'output' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |                                      hasArg: .required,
 78 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:48:16: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |                                   flag: nil,
 47 |                                   val: "G")
 48 |     static let post = AWSCLIOption(name: "post",
    |                |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'post' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |                                    hasArg: .none,
 50 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:72:16: warning: static property 'signingContext' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |                                           flag: nil,
 71 |                                           val: "l")
 72 |     static let signingContext = AWSCLIOption(name: "signing-context",
    |                |- warning: static property 'signingContext' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'signingContext' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |                                              hasArg: .required,
 74 |                                              flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:68:16: warning: static property 'signingFunc' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 66 |                                        flag: nil,
 67 |                                        val: "k")
 68 |     static let signingFunc = AWSCLIOption(name: "signing-func",
    |                |- warning: static property 'signingFunc' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'signingFunc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |                                           hasArg: .required,
 70 |                                           flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:56:16: warning: static property 'signingLib' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 54 |                                    flag: nil,
 55 |                                    val: "I")
 56 |     static let signingLib = AWSCLIOption(name: "signing-lib",
    |                |- warning: static property 'signingLib' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'signingLib' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |                                          hasArg: .required,
 58 |                                          flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:80:16: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 78 |                                      flag: nil,
 79 |                                      val: "o")
 80 |     static let trace = AWSCLIOption(name: "trace",
    |                |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'trace' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |                                     hasArg: .required,
 82 |                                     flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:88:16: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |                                       flag: nil,
 87 |                                       val: "v")
 88 |     static let version = AWSCLIOption(name: "version",
    |                |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |                                       hasArg: .none,
 90 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:84:16: warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 82 |                                     flag: nil,
 83 |                                     val: "t")
 84 |     static let verbose = AWSCLIOption(name: "verbose",
    |                |- warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'verbose' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |                                       hasArg: .required,
 86 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:104:16: warning: static property 'lastOption' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
102 |                                    flag: nil,
103 |                                    val: "h")
104 |     static let lastOption = AWSCLIOption(name: "",
    |                |- warning: static property 'lastOption' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'lastOption' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |                                          hasArg: .none,
106 |                                          flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/Elasticurl.swift:209:25: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
207 |             let fileManager = FileManager.default
208 |             let path = FileManager.default.currentDirectoryPath + "/" + fileName
209 |             fileManager.createFile(atPath: path, contents: nil, attributes: nil)
    |                         `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
210 |             context.outputStream = FileHandle(forWritingAtPath: fileName) ?? FileHandle.standardOutput
211 |         }
[461/464] Emitting module Elasticurl
/host/spi-builder-workspace/Source/Elasticurl/Elasticurl.swift:32:24: warning: static property 'context' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 | struct Elasticurl {
 31 |     private static let version = "0.1.0"
 32 |     private static var context = Context()
    |                        |- warning: static property 'context' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'context' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'context' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |     static func parseArguments() {
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:8:16: warning: static property 'caCert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | // swiftlint:disable identifier_name
  7 | public struct ElasticurlOptions {
  8 |     static let caCert = AWSCLIOption(name: "cacert",
    |                |- warning: static property 'caCert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'caCert' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |                                      hasArg: .required,
 10 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:12:16: warning: static property 'caPath' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |                                      flag: nil,
 11 |                                      val: "a")
 12 |     static let caPath = AWSCLIOption(name: "capath",
    |                |- warning: static property 'caPath' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'caPath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |                                      hasArg: .required,
 14 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:16:16: warning: static property 'cert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |                                      flag: nil,
 15 |                                      val: "b")
 16 |     static let cert = AWSCLIOption(name: "cert",
    |                |- warning: static property 'cert' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cert' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |                                    hasArg: .required,
 18 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:20:16: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 18 |                                    flag: nil,
 19 |                                    val: "c")
 20 |     static let key = AWSCLIOption(name: "key",
    |                |- warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |                                   hasArg: .required,
 22 |                                   flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:24:16: warning: static property 'connectTimeout' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |                                   flag: nil,
 23 |                                   val: "e")
 24 |     static let connectTimeout = AWSCLIOption(name: "connect-timeout",
    |                |- warning: static property 'connectTimeout' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'connectTimeout' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |                                              hasArg: .required,
 26 |                                              flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:28:16: warning: static property 'header' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |                                              flag: nil,
 27 |                                              val: "f")
 28 |     static let header = AWSCLIOption(name: "header",
    |                |- warning: static property 'header' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'header' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |                                      hasArg: .required,
 30 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:32:16: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |                                      flag: nil,
 31 |                                      val: "H")
 32 |     static let data = AWSCLIOption(name: "data",
    |                |- warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |                                    hasArg: .required,
 34 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:36:16: warning: static property 'dataFile' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 34 |                                    flag: nil,
 35 |                                    val: "d")
 36 |     static let dataFile = AWSCLIOption(name: "data-file",
    |                |- warning: static property 'dataFile' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dataFile' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |                                        hasArg: .required,
 38 |                                        flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:40:16: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 38 |                                        flag: nil,
 39 |                                        val: "g")
 40 |     static let method = AWSCLIOption(name: "method",
    |                |- warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'method' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |                                      hasArg: .required,
 42 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:44:16: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 42 |                                      flag: nil,
 43 |                                      val: "M")
 44 |     static let get = AWSCLIOption(name: "get",
    |                |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'get' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |                                   hasArg: .none,
 46 |                                   flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:48:16: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |                                   flag: nil,
 47 |                                   val: "G")
 48 |     static let post = AWSCLIOption(name: "post",
    |                |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'post' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |                                    hasArg: .none,
 50 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:52:16: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 50 |                                    flag: nil,
 51 |                                    val: "P")
 52 |     static let head = AWSCLIOption(name: "head",
    |                |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |                                    hasArg: .none,
 54 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:56:16: warning: static property 'signingLib' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 54 |                                    flag: nil,
 55 |                                    val: "I")
 56 |     static let signingLib = AWSCLIOption(name: "signing-lib",
    |                |- warning: static property 'signingLib' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'signingLib' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |                                          hasArg: .required,
 58 |                                          flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:60:16: warning: static property 'include' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 58 |                                          flag: nil,
 59 |                                          val: "j")
 60 |     static let include = AWSCLIOption(name: "include",
    |                |- warning: static property 'include' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'include' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |                                       hasArg: .none,
 62 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:64:16: warning: static property 'insecure' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |                                       flag: nil,
 63 |                                       val: "i")
 64 |     static let insecure = AWSCLIOption(name: "insecure",
    |                |- warning: static property 'insecure' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'insecure' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |                                        hasArg: .none,
 66 |                                        flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:68:16: warning: static property 'signingFunc' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 66 |                                        flag: nil,
 67 |                                        val: "k")
 68 |     static let signingFunc = AWSCLIOption(name: "signing-func",
    |                |- warning: static property 'signingFunc' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'signingFunc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |                                           hasArg: .required,
 70 |                                           flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:72:16: warning: static property 'signingContext' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |                                           flag: nil,
 71 |                                           val: "l")
 72 |     static let signingContext = AWSCLIOption(name: "signing-context",
    |                |- warning: static property 'signingContext' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'signingContext' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |                                              hasArg: .required,
 74 |                                              flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:76:16: warning: static property 'output' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |                                              flag: nil,
 75 |                                              val: "m")
 76 |     static let output = AWSCLIOption(name: "output",
    |                |- warning: static property 'output' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'output' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |                                      hasArg: .required,
 78 |                                      flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:80:16: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 78 |                                      flag: nil,
 79 |                                      val: "o")
 80 |     static let trace = AWSCLIOption(name: "trace",
    |                |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'trace' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |                                     hasArg: .required,
 82 |                                     flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:84:16: warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 82 |                                     flag: nil,
 83 |                                     val: "t")
 84 |     static let verbose = AWSCLIOption(name: "verbose",
    |                |- warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'verbose' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |                                       hasArg: .required,
 86 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:88:16: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |                                       flag: nil,
 87 |                                       val: "v")
 88 |     static let version = AWSCLIOption(name: "version",
    |                |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |                                       hasArg: .none,
 90 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:92:16: warning: static property 'http2' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 90 |                                       flag: nil,
 91 |                                       val: "V")
 92 |     static let http2 = AWSCLIOption(name: "http2",
    |                |- warning: static property 'http2' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'http2' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |                                     hasArg: .none,
 94 |                                     flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:96:16: warning: static property 'http1_1' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 94 |                                     flag: nil,
 95 |                                     val: "w")
 96 |     static let http1_1 = AWSCLIOption(name: "http1_1",
    |                |- warning: static property 'http1_1' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'http1_1' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |                                       hasArg: .none,
 98 |                                       flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:100:16: warning: static property 'help' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
 98 |                                       flag: nil,
 99 |                                       val: "W")
100 |     static let help = AWSCLIOption(name: "help",
    |                |- warning: static property 'help' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'help' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |                                    hasArg: .none,
102 |                                    flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
/host/spi-builder-workspace/Source/Elasticurl/ElasticurlOptions.swift:104:16: warning: static property 'lastOption' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
102 |                                    flag: nil,
103 |                                    val: "h")
104 |     static let lastOption = AWSCLIOption(name: "",
    |                |- warning: static property 'lastOption' is not concurrency-safe because non-'Sendable' type 'AWSCLIOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'lastOption' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |                                          hasArg: .none,
106 |                                          flag: nil,
/host/spi-builder-workspace/Source/Elasticurl/CommandLine.swift:63:7: note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
61 | }
62 |
63 | class AWSCLIOption {
   |       `- note: class 'AWSCLIOption' does not conform to the 'Sendable' protocol
64 |     let rawValue: aws_cli_option
65 |     let name: UnsafeMutablePointer<CChar>
[462/465] Wrapping AST for Elasticurl for debugging
[463/465] Write Objects.LinkFileList
[464/465] Linking Elasticurl
Build complete! (46.49s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "aws-crt-swift",
  "name" : "aws-crt-swift",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "AwsCommonRuntimeKit",
      "targets" : [
        "AwsCommonRuntimeKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Elasticurl",
      "targets" : [
        "Elasticurl"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "S2N_TLS",
      "module_type" : "ClangTarget",
      "name" : "S2N_TLS",
      "path" : "aws-common-runtime/s2n",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "crypto/s2n_aead_cipher_aes_gcm.c",
        "crypto/s2n_aead_cipher_chacha20_poly1305.c",
        "crypto/s2n_cbc_cipher_3des.c",
        "crypto/s2n_cbc_cipher_aes.c",
        "crypto/s2n_certificate.c",
        "crypto/s2n_cipher.c",
        "crypto/s2n_composite_cipher_aes_sha.c",
        "crypto/s2n_crypto.c",
        "crypto/s2n_dhe.c",
        "crypto/s2n_drbg.c",
        "crypto/s2n_ecc_evp.c",
        "crypto/s2n_ecdsa.c",
        "crypto/s2n_evp.c",
        "crypto/s2n_evp_kem.c",
        "crypto/s2n_evp_signing.c",
        "crypto/s2n_fips.c",
        "crypto/s2n_fips_rules.c",
        "crypto/s2n_hash.c",
        "crypto/s2n_hkdf.c",
        "crypto/s2n_hmac.c",
        "crypto/s2n_libcrypto.c",
        "crypto/s2n_locking.c",
        "crypto/s2n_openssl_x509.c",
        "crypto/s2n_pkey.c",
        "crypto/s2n_pq.c",
        "crypto/s2n_rsa.c",
        "crypto/s2n_rsa_pss.c",
        "crypto/s2n_rsa_signing.c",
        "crypto/s2n_sequence.c",
        "crypto/s2n_stream_cipher_null.c",
        "crypto/s2n_stream_cipher_rc4.c",
        "crypto/s2n_tls13_keys.c",
        "error/s2n_errno.c",
        "stuffer/s2n_stuffer.c",
        "stuffer/s2n_stuffer_base64.c",
        "stuffer/s2n_stuffer_file.c",
        "stuffer/s2n_stuffer_hex.c",
        "stuffer/s2n_stuffer_network_order.c",
        "stuffer/s2n_stuffer_pem.c",
        "stuffer/s2n_stuffer_text.c",
        "tls/extensions/s2n_cert_authorities.c",
        "tls/extensions/s2n_cert_status.c",
        "tls/extensions/s2n_cert_status_response.c",
        "tls/extensions/s2n_client_alpn.c",
        "tls/extensions/s2n_client_cert_status_request.c",
        "tls/extensions/s2n_client_cookie.c",
        "tls/extensions/s2n_client_early_data_indication.c",
        "tls/extensions/s2n_client_ems.c",
        "tls/extensions/s2n_client_key_share.c",
        "tls/extensions/s2n_client_max_frag_len.c",
        "tls/extensions/s2n_client_pq_kem.c",
        "tls/extensions/s2n_client_psk.c",
        "tls/extensions/s2n_client_renegotiation_info.c",
        "tls/extensions/s2n_client_sct_list.c",
        "tls/extensions/s2n_client_server_name.c",
        "tls/extensions/s2n_client_session_ticket.c",
        "tls/extensions/s2n_client_signature_algorithms.c",
        "tls/extensions/s2n_client_supported_groups.c",
        "tls/extensions/s2n_client_supported_versions.c",
        "tls/extensions/s2n_ec_point_format.c",
        "tls/extensions/s2n_extension_list.c",
        "tls/extensions/s2n_extension_type.c",
        "tls/extensions/s2n_extension_type_lists.c",
        "tls/extensions/s2n_key_share.c",
        "tls/extensions/s2n_npn.c",
        "tls/extensions/s2n_nst_early_data_indication.c",
        "tls/extensions/s2n_psk_key_exchange_modes.c",
        "tls/extensions/s2n_quic_transport_params.c",
        "tls/extensions/s2n_server_alpn.c",
        "tls/extensions/s2n_server_cert_status_request.c",
        "tls/extensions/s2n_server_cookie.c",
        "tls/extensions/s2n_server_early_data_indication.c",
        "tls/extensions/s2n_server_ems.c",
        "tls/extensions/s2n_server_key_share.c",
        "tls/extensions/s2n_server_max_fragment_length.c",
        "tls/extensions/s2n_server_psk.c",
        "tls/extensions/s2n_server_renegotiation_info.c",
        "tls/extensions/s2n_server_sct_list.c",
        "tls/extensions/s2n_server_server_name.c",
        "tls/extensions/s2n_server_session_ticket.c",
        "tls/extensions/s2n_server_signature_algorithms.c",
        "tls/extensions/s2n_server_supported_versions.c",
        "tls/extensions/s2n_supported_versions.c",
        "tls/s2n_aead.c",
        "tls/s2n_alerts.c",
        "tls/s2n_async_pkey.c",
        "tls/s2n_auth_selection.c",
        "tls/s2n_cbc.c",
        "tls/s2n_certificate_keys.c",
        "tls/s2n_change_cipher_spec.c",
        "tls/s2n_cipher_preferences.c",
        "tls/s2n_cipher_suites.c",
        "tls/s2n_client_cert.c",
        "tls/s2n_client_cert_verify.c",
        "tls/s2n_client_finished.c",
        "tls/s2n_client_hello.c",
        "tls/s2n_client_hello_request.c",
        "tls/s2n_client_key_exchange.c",
        "tls/s2n_config.c",
        "tls/s2n_connection.c",
        "tls/s2n_connection_serialize.c",
        "tls/s2n_crl.c",
        "tls/s2n_crypto.c",
        "tls/s2n_early_data.c",
        "tls/s2n_early_data_io.c",
        "tls/s2n_ecc_preferences.c",
        "tls/s2n_encrypted_extensions.c",
        "tls/s2n_establish_session.c",
        "tls/s2n_fingerprint.c",
        "tls/s2n_fingerprint_ja3.c",
        "tls/s2n_fingerprint_ja4.c",
        "tls/s2n_handshake.c",
        "tls/s2n_handshake_hashes.c",
        "tls/s2n_handshake_io.c",
        "tls/s2n_handshake_transcript.c",
        "tls/s2n_handshake_type.c",
        "tls/s2n_kem.c",
        "tls/s2n_kem_preferences.c",
        "tls/s2n_kex.c",
        "tls/s2n_key_log.c",
        "tls/s2n_key_update.c",
        "tls/s2n_ktls.c",
        "tls/s2n_ktls_io.c",
        "tls/s2n_next_protocol.c",
        "tls/s2n_ocsp_stapling.c",
        "tls/s2n_post_handshake.c",
        "tls/s2n_prf.c",
        "tls/s2n_protocol_preferences.c",
        "tls/s2n_psk.c",
        "tls/s2n_quic_support.c",
        "tls/s2n_record_read.c",
        "tls/s2n_record_read_aead.c",
        "tls/s2n_record_read_cbc.c",
        "tls/s2n_record_read_composite.c",
        "tls/s2n_record_read_stream.c",
        "tls/s2n_record_write.c",
        "tls/s2n_recv.c",
        "tls/s2n_renegotiate.c",
        "tls/s2n_resume.c",
        "tls/s2n_security_policies.c",
        "tls/s2n_security_rules.c",
        "tls/s2n_send.c",
        "tls/s2n_server_cert.c",
        "tls/s2n_server_cert_request.c",
        "tls/s2n_server_done.c",
        "tls/s2n_server_extensions.c",
        "tls/s2n_server_finished.c",
        "tls/s2n_server_hello.c",
        "tls/s2n_server_hello_retry.c",
        "tls/s2n_server_key_exchange.c",
        "tls/s2n_server_new_session_ticket.c",
        "tls/s2n_shutdown.c",
        "tls/s2n_signature_algorithms.c",
        "tls/s2n_signature_scheme.c",
        "tls/s2n_tls.c",
        "tls/s2n_tls13.c",
        "tls/s2n_tls13_certificate_verify.c",
        "tls/s2n_tls13_handshake.c",
        "tls/s2n_tls13_key_schedule.c",
        "tls/s2n_tls13_secrets.c",
        "tls/s2n_x509_validator.c",
        "utils/s2n_array.c",
        "utils/s2n_atomic.c",
        "utils/s2n_blob.c",
        "utils/s2n_ensure.c",
        "utils/s2n_fork_detection.c",
        "utils/s2n_init.c",
        "utils/s2n_io.c",
        "utils/s2n_map.c",
        "utils/s2n_mem.c",
        "utils/s2n_random.c",
        "utils/s2n_rfc5952.c",
        "utils/s2n_safety.c",
        "utils/s2n_set.c",
        "utils/s2n_socket.c",
        "utils/s2n_timer.c"
      ],
      "target_dependencies" : [
        "LibCrypto"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LibCrypto",
      "module_type" : "SystemLibraryTarget",
      "name" : "LibCrypto",
      "path" : "Source/LibCrypto",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
      ],
      "type" : "system-target"
    },
    {
      "c99name" : "Elasticurl",
      "module_type" : "SwiftTarget",
      "name" : "Elasticurl",
      "path" : "Source/Elasticurl",
      "product_memberships" : [
        "Elasticurl"
      ],
      "sources" : [
        "CommandLine.swift",
        "Elasticurl.swift",
        "ElasticurlOptions.swift"
      ],
      "target_dependencies" : [
        "AwsCommonRuntimeKit"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "AwsCommonRuntimeKitTests",
      "module_type" : "SwiftTarget",
      "name" : "AwsCommonRuntimeKitTests",
      "path" : "Test/AwsCommonRuntimeKitTests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Test/AwsCommonRuntimeKitTests/Resources/example_credentials.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Test/AwsCommonRuntimeKitTests/Resources/example_profile.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Test/AwsCommonRuntimeKitTests/Resources/example_sso_profile.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Test/AwsCommonRuntimeKitTests/Resources/stream-test.txt",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "XCBaseTestCase.swift",
        "auth/ChunkSignerTests.swift",
        "auth/CredentialsProviderTests.swift",
        "auth/CredentialsTests.swift",
        "auth/IMDSClientTests.swift",
        "auth/SignerTests.swift",
        "auth/SigningConfigTests.swift",
        "crt/AllocatorTests.swift",
        "crt/ChecksumsTests.swift",
        "crt/HashTests.swift",
        "crt/ShutDownCallbackOptionsTests.swift",
        "crt/Utilities.swift",
        "event-stream/EventStreamTests.swift",
        "http/HTTP2ClientConnectionTests.swift",
        "http/HTTP2SettingsTests.swift",
        "http/HTTP2StreamManagerTests.swift",
        "http/HTTPClientConnectionManagerTests.swift",
        "http/HTTPClientConnectionOptionsTests.swift",
        "http/HTTPClientTestFixture.swift",
        "http/HTTPMessageTests.swift",
        "http/HTTPMonitoringOptionsTests.swift",
        "http/HTTPProxyEnvSettingsTests.swift",
        "http/HTTPProxyOptionsTests.swift",
        "http/HTTPProxyTests.swift",
        "http/HTTPRequestTests.swift",
        "http/HTTPTests.swift",
        "io/BootstrapTests.swift",
        "io/EventLoopGroupTests.swift",
        "io/HostResolverTests.swift",
        "io/RetryerTests.swift",
        "io/SocketOptionsTest.swift",
        "io/StreamTests.swift",
        "io/TLSContextTests.swift",
        "sdkutils/EndpointPropertyTests.swift",
        "sdkutils/EndpointsRuleEngineTests.swift",
        "sdkutils/FileBasedConfigurationTests.swift"
      ],
      "target_dependencies" : [
        "AwsCommonRuntimeKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AwsCommonRuntimeKit",
      "module_type" : "SwiftTarget",
      "name" : "AwsCommonRuntimeKit",
      "path" : "Source/AwsCommonRuntimeKit",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Source/AwsCommonRuntimeKit/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "CommonRuntimeKit.swift",
        "auth/credentials/Credentials.swift",
        "auth/credentials/CredentialsProvider.swift",
        "auth/imds/IAMProfile.swift",
        "auth/imds/IMDSClient.swift",
        "auth/imds/IMDSInstanceInfo.swift",
        "auth/signing/Signer.swift",
        "auth/signing/SigningConfig.swift",
        "crt/AWSString.swift",
        "crt/Allocator.swift",
        "crt/ByteBuffer.swift",
        "crt/CStruct.swift",
        "crt/Checksums.swift",
        "crt/CommonRuntimeError.swift",
        "crt/ContinuationCore.swift",
        "crt/Hash.swift",
        "crt/Logger.swift",
        "crt/ShutdownCallbackCore.swift",
        "crt/Utilities.swift",
        "event-stream/EventStreamHeader.swift",
        "event-stream/EventStreamMessage.swift",
        "event-stream/EventStreamMessageDecoder.swift",
        "http/HTTP1Stream.swift",
        "http/HTTP2ClientConnection.swift",
        "http/HTTP2Error.swift",
        "http/HTTP2Settings.swift",
        "http/HTTP2Stream.swift",
        "http/HTTP2StreamManager.swift",
        "http/HTTP2StreamManagerOptions.swift",
        "http/HTTPClientConnection.swift",
        "http/HTTPClientConnectionManager.swift",
        "http/HTTPClientConnectionManagerCallbackCore.swift",
        "http/HTTPClientConnectionManagerMetrics.swift",
        "http/HTTPClientConnectionOptions.swift",
        "http/HTTPHeader.swift",
        "http/HTTPHeaderBlock.swift",
        "http/HTTPMonitoringOptions.swift",
        "http/HTTPProxyAuthenticationType.swift",
        "http/HTTPProxyConnectionType.swift",
        "http/HTTPProxyEnvSettings.swift",
        "http/HTTPProxyEnvType.swift",
        "http/HTTPProxyOptions.swift",
        "http/HTTPRequest.swift",
        "http/HTTPRequestBase.swift",
        "http/HTTPRequestOptions.swift",
        "http/HTTPStream.swift",
        "http/HTTPStreamCallbackCore.swift",
        "http/HTTPVersion.swift",
        "io/ClientBootstrap.swift",
        "io/EventLoopGroup.swift",
        "io/HostAddress.swift",
        "io/HostAddressType.swift",
        "io/HostResolver.swift",
        "io/SocketDomain.swift",
        "io/SocketOptions.swift",
        "io/SocketType.swift",
        "io/Stream.swift",
        "io/StreamCore.swift",
        "io/TLSConnectionOptions.swift",
        "io/TLSContext.swift",
        "io/TLSContextOptions.swift",
        "io/retryer/ExponentialBackoffJitterMode.swift",
        "io/retryer/RetryError.swift",
        "io/retryer/RetryStrategy.swift",
        "io/retryer/RetryToken.swift",
        "sdkutils/FileBasedConfiguration.swift",
        "sdkutils/endpoint/EndpointProperty.swift",
        "sdkutils/endpoint/EndpointsRequestContext.swift",
        "sdkutils/endpoint/EndpointsRuleEngine.swift",
        "sdkutils/endpoint/ResolvedEndpointType.swift"
      ],
      "target_dependencies" : [
        "AwsCAuth",
        "AwsCHttp",
        "AwsCCal",
        "AwsCCompression",
        "AwsCIo",
        "AwsCCommon",
        "AwsCChecksums",
        "AwsCEventStream"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCSdkUtils",
      "module_type" : "ClangTarget",
      "name" : "AwsCSdkUtils",
      "path" : "aws-common-runtime/aws-c-sdkutils",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "source/aws_profile.c",
        "source/endpoints_regex.c",
        "source/endpoints_rule_engine.c",
        "source/endpoints_ruleset.c",
        "source/endpoints_standard_lib.c",
        "source/endpoints_types_impl.c",
        "source/endpoints_util.c",
        "source/partitions.c",
        "source/resource_name.c",
        "source/sdkutils.c"
      ],
      "target_dependencies" : [
        "AwsCCommon"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCPlatformConfig",
      "module_type" : "ClangTarget",
      "name" : "AwsCPlatformConfig",
      "path" : "aws-common-runtime/config",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "empty.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCIo",
      "module_type" : "ClangTarget",
      "name" : "AwsCIo",
      "path" : "aws-common-runtime/aws-c-io",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "source/alpn_handler.c",
        "source/async_stream.c",
        "source/channel.c",
        "source/channel_bootstrap.c",
        "source/event_loop.c",
        "source/exponential_backoff_retry_strategy.c",
        "source/future.c",
        "source/host_resolver.c",
        "source/io.c",
        "source/linux/epoll_event_loop.c",
        "source/message_pool.c",
        "source/pem.c",
        "source/pkcs11_lib.c",
        "source/pkcs11_tls_op_handler.c",
        "source/posix/host_resolver.c",
        "source/posix/pipe.c",
        "source/posix/shared_library.c",
        "source/posix/socket.c",
        "source/retry_strategy.c",
        "source/s2n/s2n_tls_channel_handler.c",
        "source/socket_channel_handler.c",
        "source/socket_shared.c",
        "source/standard_retry_strategy.c",
        "source/statistics.c",
        "source/stream.c",
        "source/tls_channel_handler.c",
        "source/tls_channel_handler_shared.c",
        "source/tracing.c"
      ],
      "target_dependencies" : [
        "AwsCCommon",
        "AwsCCal",
        "S2N_TLS"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCHttp",
      "module_type" : "ClangTarget",
      "name" : "AwsCHttp",
      "path" : "aws-common-runtime/aws-c-http",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "source/connection.c",
        "source/connection_manager.c",
        "source/connection_monitor.c",
        "source/h1_connection.c",
        "source/h1_decoder.c",
        "source/h1_encoder.c",
        "source/h1_stream.c",
        "source/h2_connection.c",
        "source/h2_decoder.c",
        "source/h2_frames.c",
        "source/h2_stream.c",
        "source/hpack.c",
        "source/hpack_decoder.c",
        "source/hpack_encoder.c",
        "source/hpack_huffman_static.c",
        "source/http.c",
        "source/http2_stream_manager.c",
        "source/proxy_connection.c",
        "source/proxy_strategy.c",
        "source/random_access_set.c",
        "source/request_response.c",
        "source/statistics.c",
        "source/strutil.c",
        "source/websocket.c",
        "source/websocket_bootstrap.c",
        "source/websocket_decoder.c",
        "source/websocket_encoder.c"
      ],
      "target_dependencies" : [
        "AwsCCompression",
        "AwsCIo",
        "AwsCCal",
        "AwsCCommon"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCEventStream",
      "module_type" : "ClangTarget",
      "name" : "AwsCEventStream",
      "path" : "aws-common-runtime/aws-c-event-stream",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "source/event_stream.c",
        "source/event_stream_channel_handler.c",
        "source/event_stream_rpc.c",
        "source/event_stream_rpc_client.c",
        "source/event_stream_rpc_server.c"
      ],
      "target_dependencies" : [
        "AwsCChecksums",
        "AwsCCommon",
        "AwsCIo",
        "AwsCCal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCCompression",
      "module_type" : "ClangTarget",
      "name" : "AwsCCompression",
      "path" : "aws-common-runtime/aws-c-compression",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "source/compression.c",
        "source/huffman.c",
        "source/huffman_testing.c"
      ],
      "target_dependencies" : [
        "AwsCCommon"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCCommon",
      "module_type" : "ClangTarget",
      "name" : "AwsCCommon",
      "path" : "aws-common-runtime/aws-c-common",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "source/allocator.c",
        "source/allocator_sba.c",
        "source/arch/generic/cpuid.c",
        "source/array_list.c",
        "source/assert.c",
        "source/byte_buf.c",
        "source/cache.c",
        "source/cbor.c",
        "source/codegen.c",
        "source/command_line_parser.c",
        "source/common.c",
        "source/condition_variable.c",
        "source/date_time.c",
        "source/device_random.c",
        "source/encoding.c",
        "source/error.c",
        "source/external/cJSON.c",
        "source/external/libcbor/allocators.c",
        "source/external/libcbor/cbor.c",
        "source/external/libcbor/cbor/arrays.c",
        "source/external/libcbor/cbor/bytestrings.c",
        "source/external/libcbor/cbor/callbacks.c",
        "source/external/libcbor/cbor/common.c",
        "source/external/libcbor/cbor/encoding.c",
        "source/external/libcbor/cbor/floats_ctrls.c",
        "source/external/libcbor/cbor/internal/builder_callbacks.c",
        "source/external/libcbor/cbor/internal/encoders.c",
        "source/external/libcbor/cbor/internal/loaders.c",
        "source/external/libcbor/cbor/internal/memory_utils.c",
        "source/external/libcbor/cbor/internal/stack.c",
        "source/external/libcbor/cbor/internal/unicode.c",
        "source/external/libcbor/cbor/ints.c",
        "source/external/libcbor/cbor/maps.c",
        "source/external/libcbor/cbor/serialization.c",
        "source/external/libcbor/cbor/streaming.c",
        "source/external/libcbor/cbor/strings.c",
        "source/external/libcbor/cbor/tags.c",
        "source/fifo_cache.c",
        "source/file.c",
        "source/hash_table.c",
        "source/host_utils.c",
        "source/json.c",
        "source/lifo_cache.c",
        "source/linked_hash_table.c",
        "source/log_channel.c",
        "source/log_formatter.c",
        "source/log_writer.c",
        "source/logging.c",
        "source/lru_cache.c",
        "source/math.c",
        "source/memtrace.c",
        "source/platform_fallback_stubs/system_info.c",
        "source/posix/clock.c",
        "source/posix/condition_variable.c",
        "source/posix/cross_process_lock.c",
        "source/posix/device_random.c",
        "source/posix/environment.c",
        "source/posix/file.c",
        "source/posix/mutex.c",
        "source/posix/process.c",
        "source/posix/rw_lock.c",
        "source/posix/system_info.c",
        "source/posix/system_resource_utils.c",
        "source/posix/thread.c",
        "source/posix/time.c",
        "source/priority_queue.c",
        "source/process_common.c",
        "source/ref_count.c",
        "source/ring_buffer.c",
        "source/statistics.c",
        "source/string.c",
        "source/system_info.c",
        "source/task_scheduler.c",
        "source/thread_scheduler.c",
        "source/thread_shared.c",
        "source/uri.c",
        "source/uuid.c",
        "source/xml_parser.c"
      ],
      "target_dependencies" : [
        "AwsCPlatformConfig"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCChecksums",
      "module_type" : "ClangTarget",
      "name" : "AwsCChecksums",
      "path" : "aws-common-runtime/aws-checksums",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "source/crc.c",
        "source/crc64.c",
        "source/crc64_sw.c",
        "source/crc_sw.c"
      ],
      "target_dependencies" : [
        "AwsCCommon"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCCal",
      "module_type" : "ClangTarget",
      "name" : "AwsCCal",
      "path" : "aws-common-runtime/aws-c-cal",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "source/cal.c",
        "source/der.c",
        "source/ecc.c",
        "source/hash.c",
        "source/hmac.c",
        "source/rsa.c",
        "source/symmetric_cipher.c",
        "source/unix/openssl_aes.c",
        "source/unix/openssl_platform_init.c",
        "source/unix/openssl_rsa.c",
        "source/unix/opensslcrypto_ecc.c",
        "source/unix/opensslcrypto_hash.c",
        "source/unix/opensslcrypto_hmac.c"
      ],
      "target_dependencies" : [
        "AwsCCommon",
        "LibCrypto"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AwsCAuth",
      "module_type" : "ClangTarget",
      "name" : "AwsCAuth",
      "path" : "aws-common-runtime/aws-c-auth",
      "product_memberships" : [
        "AwsCommonRuntimeKit",
        "Elasticurl"
      ],
      "sources" : [
        "source/auth.c",
        "source/aws_imds_client.c",
        "source/aws_profile.c",
        "source/aws_signing.c",
        "source/credentials.c",
        "source/credentials_provider_anonymous.c",
        "source/credentials_provider_cached.c",
        "source/credentials_provider_chain.c",
        "source/credentials_provider_cognito.c",
        "source/credentials_provider_default_chain.c",
        "source/credentials_provider_delegate.c",
        "source/credentials_provider_ecs.c",
        "source/credentials_provider_environment.c",
        "source/credentials_provider_imds.c",
        "source/credentials_provider_process.c",
        "source/credentials_provider_profile.c",
        "source/credentials_provider_sso.c",
        "source/credentials_provider_static.c",
        "source/credentials_provider_sts.c",
        "source/credentials_provider_sts_web_identity.c",
        "source/credentials_provider_x509.c",
        "source/credentials_utils.c",
        "source/key_derivation.c",
        "source/signable.c",
        "source/signable_chunk.c",
        "source/signable_http_request.c",
        "source/signable_trailer.c",
        "source/signing.c",
        "source/signing_config.c",
        "source/signing_result.c",
        "source/sigv4_http_request.c",
        "source/sso_token_utils.c",
        "source/token_provider_sso_profile.c",
        "source/token_provider_sso_session.c"
      ],
      "target_dependencies" : [
        "AwsCHttp",
        "AwsCCompression",
        "AwsCCal",
        "AwsCIo",
        "AwsCSdkUtils",
        "AwsCCommon"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
warning: 'spi-builder-workspace': Invalid Exclude '/host/spi-builder-workspace/aws-common-runtime/s2n/docker-images': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/host/spi-builder-workspace/aws-common-runtime/aws-checksums/source/intel/visualc': File not found.
Done.