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 macOS (SPM) on 6 Nov 2024 20:00:40 UTC.

Swift 6 data race errors: 29

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

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 |
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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()))
[263/286] Compiling AwsCommonRuntimeKit Credentials.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/signing/Signer.swift:225:13: warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
223 |     guard aws_signing_result_get_property(
224 |             signingResult!,
225 |             g_aws_signature_property_name,
    |             `- warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
226 |             &awsStringPointer) == AWS_OP_SUCCESS else {
227 |         chunkSignerCore.continuation.resume(throwing: CommonRunTimeError.crtError(.makeFromLastError()))
AwsCAuth.g_aws_signature_property_name:1:12: note: var declared here
1 | public var g_aws_signature_property_name: UnsafePointer<aws_string>!
  |            `- note: var declared here
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:570:35: 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
568 |
569 |     // Success
570 |     continuationCore.continuation.resume(returning: Credentials(rawValue: credentials!))
    |                                   `- 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
571 | }
572 |
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:590:10: 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
588 |         .takeUnretainedValue().contents
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) {
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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()))
[264/286] Compiling AwsCommonRuntimeKit CredentialsProvider.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/signing/Signer.swift:225:13: warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
223 |     guard aws_signing_result_get_property(
224 |             signingResult!,
225 |             g_aws_signature_property_name,
    |             `- warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
226 |             &awsStringPointer) == AWS_OP_SUCCESS else {
227 |         chunkSignerCore.continuation.resume(throwing: CommonRunTimeError.crtError(.makeFromLastError()))
AwsCAuth.g_aws_signature_property_name:1:12: note: var declared here
1 | public var g_aws_signature_property_name: UnsafePointer<aws_string>!
  |            `- note: var declared here
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:570:35: 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
568 |
569 |     // Success
570 |     continuationCore.continuation.resume(returning: Credentials(rawValue: credentials!))
    |                                   `- 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
571 | }
572 |
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:590:10: 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
588 |         .takeUnretainedValue().contents
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) {
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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()))
[265/286] Compiling AwsCommonRuntimeKit IAMProfile.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/signing/Signer.swift:225:13: warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
223 |     guard aws_signing_result_get_property(
224 |             signingResult!,
225 |             g_aws_signature_property_name,
    |             `- warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
226 |             &awsStringPointer) == AWS_OP_SUCCESS else {
227 |         chunkSignerCore.continuation.resume(throwing: CommonRunTimeError.crtError(.makeFromLastError()))
AwsCAuth.g_aws_signature_property_name:1:12: note: var declared here
1 | public var g_aws_signature_property_name: UnsafePointer<aws_string>!
  |            `- note: var declared here
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:570:35: 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
568 |
569 |     // Success
570 |     continuationCore.continuation.resume(returning: Credentials(rawValue: credentials!))
    |                                   `- 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
571 | }
572 |
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:590:10: 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
588 |         .takeUnretainedValue().contents
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) {
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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()))
[266/286] Compiling AwsCommonRuntimeKit IMDSClient.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/signing/Signer.swift:225:13: warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
223 |     guard aws_signing_result_get_property(
224 |             signingResult!,
225 |             g_aws_signature_property_name,
    |             `- warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
226 |             &awsStringPointer) == AWS_OP_SUCCESS else {
227 |         chunkSignerCore.continuation.resume(throwing: CommonRunTimeError.crtError(.makeFromLastError()))
AwsCAuth.g_aws_signature_property_name:1:12: note: var declared here
1 | public var g_aws_signature_property_name: UnsafePointer<aws_string>!
  |            `- note: var declared here
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:570:35: 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
568 |
569 |     // Success
570 |     continuationCore.continuation.resume(returning: Credentials(rawValue: credentials!))
    |                                   `- 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
571 | }
572 |
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:590:10: 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
588 |         .takeUnretainedValue().contents
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) {
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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()))
[267/286] Compiling AwsCommonRuntimeKit IMDSInstanceInfo.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/signing/Signer.swift:225:13: warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
223 |     guard aws_signing_result_get_property(
224 |             signingResult!,
225 |             g_aws_signature_property_name,
    |             `- warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
226 |             &awsStringPointer) == AWS_OP_SUCCESS else {
227 |         chunkSignerCore.continuation.resume(throwing: CommonRunTimeError.crtError(.makeFromLastError()))
AwsCAuth.g_aws_signature_property_name:1:12: note: var declared here
1 | public var g_aws_signature_property_name: UnsafePointer<aws_string>!
  |            `- note: var declared here
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:570:35: 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
568 |
569 |     // Success
570 |     continuationCore.continuation.resume(returning: Credentials(rawValue: credentials!))
    |                                   `- 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
571 | }
572 |
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:590:10: 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
588 |         .takeUnretainedValue().contents
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) {
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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()))
[268/286] Compiling AwsCommonRuntimeKit Signer.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/signing/Signer.swift:225:13: warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
223 |     guard aws_signing_result_get_property(
224 |             signingResult!,
225 |             g_aws_signature_property_name,
    |             `- warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
226 |             &awsStringPointer) == AWS_OP_SUCCESS else {
227 |         chunkSignerCore.continuation.resume(throwing: CommonRunTimeError.crtError(.makeFromLastError()))
AwsCAuth.g_aws_signature_property_name:1:12: note: var declared here
1 | public var g_aws_signature_property_name: UnsafePointer<aws_string>!
  |            `- note: var declared here
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:570:35: 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
568 |
569 |     // Success
570 |     continuationCore.continuation.resume(returning: Credentials(rawValue: credentials!))
    |                                   `- 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
571 | }
572 |
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:590:10: 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
588 |         .takeUnretainedValue().contents
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) {
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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()))
[269/286] Compiling AwsCommonRuntimeKit SigningConfig.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/signing/Signer.swift:225:13: warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
223 |     guard aws_signing_result_get_property(
224 |             signingResult!,
225 |             g_aws_signature_property_name,
    |             `- warning: reference to var 'g_aws_signature_property_name' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
226 |             &awsStringPointer) == AWS_OP_SUCCESS else {
227 |         chunkSignerCore.continuation.resume(throwing: CommonRunTimeError.crtError(.makeFromLastError()))
AwsCAuth.g_aws_signature_property_name:1:12: note: var declared here
1 | public var g_aws_signature_property_name: UnsafePointer<aws_string>!
  |            `- note: var declared here
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:570:35: 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
568 |
569 |     // Success
570 |     continuationCore.continuation.resume(returning: Credentials(rawValue: credentials!))
    |                                   `- 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
571 | }
572 |
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/auth/credentials/CredentialsProvider.swift:590:10: 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
588 |         .takeUnretainedValue().contents
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) {
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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()))
[270/286] Compiling AwsCommonRuntimeKit AWSString.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/CommonRuntimeError.swift:8:10: warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 6 |
 7 | public enum CommonRunTimeError: Error {
 8 |     case crtError(CRTError)
   |          `- warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | public struct CRTError: Equatable {
   |               `- note: consider making struct 'CRTError' conform to the 'Sendable' protocol
12 |     public let code: Int32
13 |     public let message: String
[271/286] Compiling AwsCommonRuntimeKit Allocator.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/CommonRuntimeError.swift:8:10: warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 6 |
 7 | public enum CommonRunTimeError: Error {
 8 |     case crtError(CRTError)
   |          `- warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | public struct CRTError: Equatable {
   |               `- note: consider making struct 'CRTError' conform to the 'Sendable' protocol
12 |     public let code: Int32
13 |     public let message: String
[272/286] Compiling AwsCommonRuntimeKit ByteBuffer.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/CommonRuntimeError.swift:8:10: warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 6 |
 7 | public enum CommonRunTimeError: Error {
 8 |     case crtError(CRTError)
   |          `- warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | public struct CRTError: Equatable {
   |               `- note: consider making struct 'CRTError' conform to the 'Sendable' protocol
12 |     public let code: Int32
13 |     public let message: String
[273/286] Compiling AwsCommonRuntimeKit CStruct.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/CommonRuntimeError.swift:8:10: warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 6 |
 7 | public enum CommonRunTimeError: Error {
 8 |     case crtError(CRTError)
   |          `- warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | public struct CRTError: Equatable {
   |               `- note: consider making struct 'CRTError' conform to the 'Sendable' protocol
12 |     public let code: Int32
13 |     public let message: String
[274/286] Compiling AwsCommonRuntimeKit Checksums.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/CommonRuntimeError.swift:8:10: warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 6 |
 7 | public enum CommonRunTimeError: Error {
 8 |     case crtError(CRTError)
   |          `- warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | public struct CRTError: Equatable {
   |               `- note: consider making struct 'CRTError' conform to the 'Sendable' protocol
12 |     public let code: Int32
13 |     public let message: String
[275/286] Compiling AwsCommonRuntimeKit CommonRuntimeError.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/CommonRuntimeError.swift:8:10: warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 6 |
 7 | public enum CommonRunTimeError: Error {
 8 |     case crtError(CRTError)
   |          `- warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | public struct CRTError: Equatable {
   |               `- note: consider making struct 'CRTError' conform to the 'Sendable' protocol
12 |     public let code: Int32
13 |     public let message: String
[276/286] Compiling AwsCommonRuntimeKit ContinuationCore.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/CommonRuntimeError.swift:8:10: warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 6 |
 7 | public enum CommonRunTimeError: Error {
 8 |     case crtError(CRTError)
   |          `- warning: associated value 'crtError' of 'Sendable'-conforming enum 'CommonRunTimeError' has non-sendable type 'CRTError'; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | public struct CRTError: Equatable {
   |               `- note: consider making struct 'CRTError' conform to the 'Sendable' protocol
12 |     public let code: Int32
13 |     public let message: String
[277/286] Compiling AwsCommonRuntimeKit Hash.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Logger.swift:14:24: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public struct Logger {
 14 |     private static var logger: aws_logger?
    |                        |- warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'logger' 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
 15 |     private static let lock = NSLock()
 16 |
[278/286] Compiling AwsCommonRuntimeKit Logger.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Logger.swift:14:24: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public struct Logger {
 14 |     private static var logger: aws_logger?
    |                        |- warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'logger' 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
 15 |     private static let lock = NSLock()
 16 |
[279/286] Compiling AwsCommonRuntimeKit ShutdownCallbackCore.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Logger.swift:14:24: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public struct Logger {
 14 |     private static var logger: aws_logger?
    |                        |- warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'logger' 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
 15 |     private static let lock = NSLock()
 16 |
[280/286] Compiling AwsCommonRuntimeKit Utilities.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Logger.swift:14:24: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public struct Logger {
 14 |     private static var logger: aws_logger?
    |                        |- warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'logger' 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
 15 |     private static let lock = NSLock()
 16 |
[281/286] Compiling AwsCommonRuntimeKit EventStreamHeader.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Logger.swift:14:24: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public struct Logger {
 14 |     private static var logger: aws_logger?
    |                        |- warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'logger' 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
 15 |     private static let lock = NSLock()
 16 |
[282/286] Compiling AwsCommonRuntimeKit EventStreamMessage.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Logger.swift:14:24: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public struct Logger {
 14 |     private static var logger: aws_logger?
    |                        |- warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'logger' 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
 15 |     private static let lock = NSLock()
 16 |
[283/286] Compiling AwsCommonRuntimeKit EventStreamMessageDecoder.swift
/Users/admin/builder/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.
/Users/admin/builder/spi-builder-workspace/Source/AwsCommonRuntimeKit/crt/Logger.swift:14:24: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public struct Logger {
 14 |     private static var logger: aws_logger?
    |                        |- warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'logger' 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
 15 |     private static let lock = NSLock()
 16 |
[284/290] Compiling Elasticurl ElasticurlOptions.swift
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
[285/290] Compiling Elasticurl CommandLine.swift
/Users/admin/builder/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
/Users/admin/builder/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
[286/290] Compiling Elasticurl Elasticurl.swift
/Users/admin/builder/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() {
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
[287/290] Emitting module Elasticurl
/Users/admin/builder/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() {
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
/Users/admin/builder/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,
/Users/admin/builder/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>
[287/290] Write Objects.LinkFileList
[288/290] Linking Elasticurl
[289/290] Applying Elasticurl
Build complete! (20.16s)
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/aws-common-runtime/aws-checksums/source/intel/visualc': File not found.
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "aws-crt-swift",
  "name" : "aws-crt-swift",
  "path" : "/Users/admin/builder/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" : "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" : "/Users/admin/builder/spi-builder-workspace/Test/AwsCommonRuntimeKitTests/Resources/example_credentials.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Test/AwsCommonRuntimeKitTests/Resources/example_profile.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Test/AwsCommonRuntimeKitTests/Resources/example_sso_profile.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/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" : "/Users/admin/builder/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/bsd/kqueue_event_loop.c",
        "source/channel.c",
        "source/channel_bootstrap.c",
        "source/darwin/darwin_pki_utils.c",
        "source/darwin/secure_transport_tls_channel_handler.c",
        "source/event_loop.c",
        "source/exponential_backoff_retry_strategy.c",
        "source/future.c",
        "source/host_resolver.c",
        "source/io.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/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"
      ],
      "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/darwin/commoncrypto_aes.c",
        "source/darwin/commoncrypto_hmac.c",
        "source/darwin/commoncrypto_md5.c",
        "source/darwin/commoncrypto_platform_init.c",
        "source/darwin/commoncrypto_sha1.c",
        "source/darwin/commoncrypto_sha256.c",
        "source/darwin/securityframework_ecc.c",
        "source/darwin/securityframework_rsa.c",
        "source/der.c",
        "source/ecc.c",
        "source/hash.c",
        "source/hmac.c",
        "source/rsa.c",
        "source/symmetric_cipher.c"
      ],
      "target_dependencies" : [
        "AwsCCommon"
      ],
      "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"
}
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/aws-common-runtime/aws-checksums/source/intel/visualc': File not found.
Done.