The Swift Package Index logo.Swift Package Index

Build Information

Failed to build swift-api-client, reference 1.74.1 (609467), with Swift 6.1 for Android on 17 Apr 2026 03:37:54 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/URLSessionModifiers.swift:35:13: warning: static property 'apiClient' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | private extension URLSession {
34 |
35 | 	static var apiClient: URLSession = {
   |             |- warning: static property 'apiClient' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'apiClient' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'apiClient' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | 		var configs = URLSessionConfiguration.default
37 | 		configs.headers = .default
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[438/557] Compiling SwiftAPIClient RequestBuilder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
[439/557] Compiling SwiftAPIClient AsyncValue.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
[440/557] Compiling SwiftAPIClient ContentSerializer.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
[441/557] Compiling SwiftAPIClient ContentType.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
[442/557] Compiling SwiftAPIClient Errors.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
[443/557] Compiling SwiftAPIClient HTTPFields.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
[444/557] Compiling SwiftAPIClient HTTPRequestComponents.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
[445/557] Compiling SwiftAPIClient LoggingComponent.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
[446/557] Compiling SwiftAPIClient Mockable.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
[447/557] Compiling SwiftAPIClient RedirectBehaviour.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/AnyAsyncSequence.swift:21:15: warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
19 | 			let box = Box(sequence.makeAsyncIterator())
20 | 			return AsyncIterator {
21 | 				try await box.iterator.next()
   |               `- warning: capture of 'box' with non-sendable type 'AnyAsyncSequence<Element>.Box<S.AsyncIterator>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
22 | 			}
23 | 		}
   :
43 | 	}
44 |
45 | 	private final class Box<I: AsyncIteratorProtocol> where I.Element == Element {
   |                      `- note: generic class 'Box' does not conform to the 'Sendable' protocol
46 | 		var iterator: I
47 | 		init(_ iterator: I) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Types/TimeoutError.swift:100:17: 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
 98 | 	return try await withThrowingTaskGroup(of: T.self, returning: T.self) { group in
 99 | 		group.addTask(operation: operation)
100 | 		group.addTask {
    |                 `- 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
101 | 			try await sleep(timeout)
    |                    `- note: closure captures 'timeout' which is accessible to code in the current task
102 | 			throw TimeoutError(timeout: inSeconds, fileID: fileID, line: line)
103 | 		}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/HTTPClientMiddleware.swift:57:33: warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 1 | import Foundation
 2 |
 3 | public protocol HTTPClientMiddleware {
   |                 `- note: protocol 'HTTPClientMiddleware' does not conform to the 'Sendable' protocol
 4 |
 5 | //#if swift(>=6.0)
   :
55 | 		var next = next
56 | 		for middleware in middlewares {
57 | 			next = { [next] in try await middleware.execute(request: $0, configs: $1, next: next) }
   |                                 `- warning: capture of 'middleware' with non-sendable type 'any HTTPClientMiddleware' in a '@Sendable' closure; this is an error in the Swift 6 language mode
58 | 		}
59 | 		return try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClient.swift:209:6: warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
207 | 		let current = APIClient.globalModifier
208 | 		return try APIClient.$globalModifier.withValue(
209 | 			{ modifiers(current($0)) },
    |      |- warning: capture of 'modifiers' with non-sendable type '(APIClient) -> APIClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
210 | 			operation: operation
211 | 		)
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Clients/HTTPClient.swift:63:16: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 61 | 	public func configs<T: Sendable>(_ keyPath: WritableKeyPath<APIClient.Configs, T>, _ value: T) -> HTTPClient {
 62 | 		configs {
 63 | 			$0[keyPath: keyPath] = value
    |                `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<APIClient.Configs, T>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 64 | 		}
 65 | 	}
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:61:8: 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
59 |
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		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
62 | 			await self._setOnCancel(onCancel)
   |                            `- note: closure captures 'onCancel' which is accessible to code in the current task
63 | 		}
64 | 	}
/host/spi-builder-workspace/Sources/SwiftAPIClient/Extensions/Async++.swift:62:15: warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
60 | 	nonisolated func setOnCancel(_ onCancel: @escaping () -> Void) {
61 | 		Task {
62 | 			await self._setOnCancel(onCancel)
   |               |- warning: sending 'onCancel' risks causing data races; this is an error in the Swift 6 language mode
   |               `- note: sending task-isolated 'onCancel' to actor-isolated instance method '_setOnCancel' risks causing data races between actor-isolated and task-isolated uses
63 | 		}
64 | 	}
[468/557] Compiling SwiftAPIClient ConsoleStyle.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[469/557] Compiling SwiftAPIClient Error+String.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[470/557] Compiling SwiftAPIClient NoneLogger.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[471/557] Compiling SwiftAPIClient Publisher+Create.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[472/557] Compiling SwiftAPIClient Publishers+Task.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[473/557] Compiling SwiftAPIClient Reachability.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[474/557] Compiling SwiftAPIClient Status+Ext.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[475/557] Compiling SwiftAPIClient URLSessionDelegateWrapper.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[476/557] Compiling SwiftAPIClient UpdateMetrics.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[477/557] Compiling SwiftAPIClient WithSynchronizedAccess.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[478/557] Compiling SwiftAPIClient RequestModifiers.swift
[479/557] Compiling SwiftAPIClient RequestValidator.swift
[480/557] Compiling SwiftAPIClient ResponseWrapModifires.swift
[481/557] Compiling SwiftAPIClient RetryModifier.swift
[482/557] Compiling SwiftAPIClient ThrottleModifier.swift
[483/557] Compiling SwiftAPIClient TimeoutModifiers.swift
[484/557] Compiling SwiftAPIClient TokenCacheService.swift
[485/557] Compiling SwiftAPIClient TokenRefresher.swift
[486/557] Compiling SwiftAPIClient URLSessionModifiers.swift
[487/557] Compiling SwiftAPIClient WaitForConnectionModifier.swift
[488/557] Compiling SwiftAPIClient JSONContentEncoders.swift
[489/557] Compiling SwiftAPIClient MultipartFormData.swift
[490/557] Compiling SwiftAPIClient MultipartFormDataEncoder.swift
[491/557] Compiling SwiftAPIClient ParametersEncoder.swift
[492/557] Compiling SwiftAPIClient ParametersValue.swift
[493/557] Compiling SwiftAPIClient QueryEncoder.swift
[494/557] Compiling SwiftAPIClient HTTPHeadersEncoder.swift
[495/557] Compiling SwiftAPIClient PlainCodingKey.swift
[496/557] Compiling SwiftAPIClient Ref.swift
[497/557] Compiling SwiftAPIClient URLQueryEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[518/557] Compiling SwiftAPIClient ErrorHandler.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[519/557] Compiling SwiftAPIClient HTTPClientMiddleware.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[520/557] Compiling SwiftAPIClient HTTPResponseValidator.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[521/557] Compiling SwiftAPIClient ListenerModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[522/557] Compiling SwiftAPIClient LoggingModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[523/557] Compiling SwiftAPIClient MetricsModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[524/557] Compiling SwiftAPIClient MockResponses.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[525/557] Compiling SwiftAPIClient RateLimitModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[526/557] Compiling SwiftAPIClient RedirectModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[527/557] Compiling SwiftAPIClient RequestCompression.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:484:28: warning: conformance of 'AnyHashable' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
482 | 		let backoffPolicy = configs.retryBackoffPolicy
483 | 		if let hash = backoffPolicy.scopeHash(request) {
484 | 			if let interval = await waitForSynchronizedAccess(id: hash, of: UInt64.self) {
    |                            `- warning: conformance of 'AnyHashable' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
485 | 				try await Task.sleep(nanoseconds: configs.retryJitterConfigs.delay(for: interval))
486 | 			}
Swift.AnyHashable:2:11: note: conformance of 'AnyHashable' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: conformance of 'AnyHashable' to 'Sendable' has been explicitly marked unavailable here
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:509:21: warning: conformance of 'AnyHashable' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
507 | 						Logger(label: "SwiftAPIClient")
508 | 							.trace("Backing off requests to '\(hash.base)' for \(Double(interval) / 1_000_000_000) seconds due to \(response.status) status code.")
509 | 						_ = try await withThrowingSynchronizedAccess(id: hash) {
    |                     `- warning: conformance of 'AnyHashable' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
510 | 							try await Task.sleep(nanoseconds: interval)
511 | 							return interval
Swift.AnyHashable:2:11: note: conformance of 'AnyHashable' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: conformance of 'AnyHashable' to 'Sendable' has been explicitly marked unavailable here
3 | }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/22] Write swift-version-24593BA9C3E375BF.txt
[2/44] Emitting module SwiftSyntax602
[3/44] Compiling SwiftSyntax602 Empty.swift
[4/45] Emitting module SwiftSyntax603
[5/45] Compiling SwiftSyntax603 Empty.swift
[6/46] Emitting module SwiftSyntax510
[7/46] Compiling SwiftSyntax510 Empty.swift
[9/46] Emitting module SwiftSyntax600
[10/46] Compiling SwiftSyntax600 Empty.swift
[11/46] Compiling SwiftSyntax601 Empty.swift
[12/46] Emitting module SwiftSyntax601
[13/48] Compiling SwiftSyntax509 Empty.swift
[14/48] Emitting module SwiftSyntax509
[17/47] Compiling CoreMetrics WithMetricsFactory.swift
[21/50] Compiling CoreMetrics Locks.swift
[22/50] Compiling CoreMetrics WithMetricsFactory.swift
[23/74] Emitting module CoreMetrics
[24/74] Compiling Logging LogEvent.swift
[25/74] Compiling Logging MetadataProvider.swift
[26/74] Compiling Logging Locks.swift
[27/137] Emitting module Logging
[28/137] Compiling Logging MetadataProvider.swift
[29/137] Compiling Logging Locks.swift
[30/137] Emitting module CoreMetrics
[31/137] Compiling HTTPTypes HTTPResponse.swift
[32/137] Compiling HTTPTypes ISOLatin1String.swift
[34/138] Compiling HTTPTypes HTTPFields.swift
[35/139] Compiling HTTPTypes HTTPParsedFields.swift
[36/139] Emitting module Logging
[37/139] Compiling CoreMetrics MappingMetricsFactory.swift
[38/139] Compiling CoreMetrics Metrics.swift
[40/140] Compiling HTTPTypes NIOLock.swift
[42/140] Compiling HTTPTypes HTTPRequest+URL.swift
[43/140] Compiling HTTPTypes HTTPParsedFields.swift
[44/142] Compiling HTTPTypes HTTPRequest+URL.swift
[45/142] Compiling HTTPTypes HTTPRequest.swift
[47/142] Compiling HTTPTypes HTTPResponse.swift
[48/142] Emitting module Metrics
[49/142] Compiling Metrics Metrics.swift
[50/142] Compiling CoreMetrics MappingMetricsFactory.swift
[51/142] Compiling CoreMetrics Metrics.swift
[52/142] Compiling CoreMetrics Locks.swift
[55/144] Compiling HTTPTypes HTTPFields.swift
[56/144] Compiling Logging LogEvent.swift
[57/144] Compiling Logging Logging.swift
[58/144] Compiling Logging LogHandler.swift
[60/147] Emitting module HTTPTypes
[61/147] Compiling SwiftSyntax Identifier.swift
[62/147] Compiling SwiftSyntax MemoryLayout.swift
[64/148] Emitting module HTTPTypes
[68/155] Compiling Logging Logging.swift
[69/155] Compiling Logging LogHandler.swift
[71/156] Compiling Metrics Metrics.swift
[72/156] Emitting module Metrics
[74/163] Emitting module HTTPTypesFoundation
[75/163] Compiling HTTPTypesFoundation HTTPTypes+ISOLatin1.swift
[76/163] Compiling HTTPTypesFoundation HTTPTypesFoundation.swift
[77/163] Compiling HTTPTypesFoundation HTTPTypes+ISOLatin1.swift
[78/163] Emitting module HTTPTypesFoundation
[79/163] Compiling HTTPTypesFoundation URLSession+HTTPTypes.swift
[80/163] Compiling HTTPTypesFoundation URLResponse+HTTPTypes.swift
[82/163] Compiling HTTPTypesFoundation URLSession+HTTPTypes.swift
[83/163] Compiling HTTPTypesFoundation URLRequest+HTTPTypes.swift
[84/163] Compiling HTTPTypesFoundation HTTPTypesFoundation.swift
[85/163] Compiling HTTPTypesFoundation URLRequest+HTTPTypes.swift
[88/165] Compiling SwiftSyntax AbsolutePosition.swift
[89/165] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[90/165] Compiling SwiftSyntax ArenaAllocatedBuffer.swift
[91/165] Compiling SwiftSyntax Assert.swift
[92/165] Compiling SwiftSyntax BumpPtrAllocator.swift
[93/165] Compiling SwiftSyntax CommonAncestor.swift
[94/165] Compiling SwiftSyntax Convenience.swift
[95/165] Compiling SwiftSyntax CustomTraits.swift
[96/165] Compiling SwiftSyntax EditorPlaceholder.swift
[99/165] Compiling SwiftSyntax MissingNodeInitializers.swift
[100/165] Compiling SwiftSyntax RawSyntax.swift
[101/165] Compiling SwiftSyntax RawSyntaxArena.swift
[102/165] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[103/165] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[104/165] Compiling SwiftSyntax RawSyntaxTokenView.swift
[105/165] Compiling SwiftSyntax SourceEdit.swift
[106/165] Compiling SwiftSyntax SourceLength.swift
[107/165] Compiling SwiftSyntax SourceLocation.swift
[108/165] Compiling SwiftSyntax SourcePresence.swift
[109/165] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[110/165] Compiling SwiftSyntax Syntax.swift
[111/165] Compiling SwiftSyntax SyntaxChildren.swift
[112/165] Compiling SwiftSyntax SyntaxCollection.swift
[113/165] Compiling SwiftSyntax SyntaxHashable.swift
[114/165] Compiling SwiftSyntax SyntaxIdentifier.swift
[115/173] Emitting module SwiftSyntax
[116/173] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[117/173] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[118/173] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[119/173] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[120/173] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[121/173] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[122/173] Compiling SwiftSyntax RawSyntaxValidation.swift
[123/173] Compiling SwiftSyntax SyntaxNodesAB.swift
[124/173] Compiling SwiftSyntax SyntaxRewriter.swift
[125/173] Compiling SwiftSyntax SyntaxTraits.swift
[126/173] Compiling SwiftSyntax SyntaxVisitor.swift
[127/173] Compiling SwiftSyntax TokenKind.swift
[128/173] Compiling SwiftSyntax Tokens.swift
[129/173] Compiling SwiftSyntax TriviaPieces.swift
[130/173] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[131/173] Compiling SwiftSyntax RawSyntaxNodesC.swift
[132/173] Compiling SwiftSyntax RawSyntaxNodesD.swift
[133/173] Compiling SwiftSyntax SyntaxNodeStructure.swift
[134/173] Compiling SwiftSyntax SyntaxProtocol.swift
[135/173] Compiling SwiftSyntax SyntaxText.swift
[136/173] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[137/173] Compiling SwiftSyntax TokenDiagnostic.swift
[138/173] Compiling SwiftSyntax TokenSequence.swift
[139/173] Compiling SwiftSyntax TokenSyntax.swift
[140/173] Compiling SwiftSyntax Trivia.swift
[141/173] Compiling SwiftSyntax Utils.swift
[142/173] Compiling SwiftSyntax ChildNameForKeyPath.swift
[143/173] Compiling SwiftSyntax Keyword.swift
[144/173] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[145/173] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[146/173] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[147/173] Compiling SwiftSyntax SyntaxBaseNodes.swift
[148/173] Compiling SwiftSyntax SyntaxCollections.swift
[149/173] Compiling SwiftSyntax SyntaxEnum.swift
[150/173] Compiling SwiftSyntax SyntaxKind.swift
[151/173] Compiling SwiftSyntax SyntaxNodesC.swift
[152/173] Compiling SwiftSyntax SyntaxNodesD.swift
[153/173] Compiling SwiftSyntax SyntaxNodesEF.swift
[154/173] Compiling SwiftSyntax SyntaxNodesGHI.swift
[155/173] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[156/173] Compiling SwiftSyntax SyntaxNodesOP.swift
[157/173] Compiling SwiftSyntax SyntaxNodesQRS.swift
[158/173] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[160/215] Compiling SwiftDiagnostics Message.swift
[161/233] Compiling SwiftDiagnostics Note.swift
[162/233] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[163/233] Compiling SwiftBasicFormat Syntax+Extensions.swift
[164/233] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[165/233] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[166/233] Compiling SwiftDiagnostics FixIt.swift
[167/233] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[168/233] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[169/233] Emitting module SwiftDiagnostics
[170/233] Compiling SwiftParser Directives.swift
[171/233] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[172/233] Compiling SwiftParser Expressions.swift
[173/233] Compiling SwiftParser IncrementalParseTransition.swift
[174/234] Compiling SwiftBasicFormat Indenter.swift
[175/234] Compiling SwiftBasicFormat InferIndentation.swift
[177/234] Compiling SwiftBasicFormat BasicFormat.swift
[178/234] Emitting module SwiftBasicFormat
[180/233] Compiling SwiftParser TokenSpec.swift
[181/233] Compiling SwiftParser TokenSpecSet.swift
[182/233] Compiling SwiftParser TopLevel.swift
[183/233] Compiling SwiftParser TriviaParser.swift
[184/233] Compiling SwiftParser Types.swift
[185/233] Compiling SwiftParser StringLiterals.swift
[186/233] Compiling SwiftParser SwiftParserCompatibility.swift
[187/233] Compiling SwiftParser SwiftVersion.swift
[188/233] Compiling SwiftParser SyntaxUtils.swift
[189/233] Compiling SwiftParser TokenConsumer.swift
[190/233] Compiling SwiftParser TokenPrecedence.swift
[191/238] Compiling SwiftParser Lexeme.swift
[192/238] Compiling SwiftParser LexemeSequence.swift
[193/238] Compiling SwiftParser Lexer.swift
[194/238] Compiling SwiftParser RegexLiteralLexer.swift
[195/238] Compiling SwiftParser UnicodeScalarExtensions.swift
[196/238] Compiling SwiftParser Lookahead.swift
[197/238] Compiling SwiftParser Parser.swift
[198/238] Compiling SwiftParser Patterns.swift
[199/238] Compiling SwiftParser Recovery.swift
[200/238] Compiling SwiftParser Specifiers.swift
[201/238] Compiling SwiftParser Statements.swift
[202/238] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[203/238] Compiling SwiftParser LoopProgressCondition.swift
[204/238] Compiling SwiftParser Modifiers.swift
[205/238] Compiling SwiftParser Names.swift
[206/238] Compiling SwiftParser Nominals.swift
[207/238] Compiling SwiftParser Parameters.swift
[208/238] Compiling SwiftParser ParseSourceFile.swift
[209/238] Emitting module SwiftParser
[210/238] Compiling SwiftParser Attributes.swift
[211/238] Compiling SwiftParser Availability.swift
[212/238] Compiling SwiftParser CharacterInfo.swift
[213/238] Compiling SwiftParser CollectionNodes+Parsable.swift
[214/238] Compiling SwiftParser CompilerFiles.swift
[215/238] Compiling SwiftParser Declarations.swift
[220/238] Compiling SwiftParser IsValidIdentifier.swift
[221/238] Compiling SwiftParser Cursor.swift
[222/238] Compiling SwiftParser ExperimentalFeatures.swift
[223/238] Compiling SwiftParser IsLexerClassified.swift
[224/238] Compiling SwiftParser LayoutNodes+Parsable.swift
[225/238] Compiling SwiftParser Parser+TokenSpecSet.swift
[226/238] Compiling SwiftParser TokenSpecStaticMembers.swift
[228/261] Compiling SwiftOperators PrecedenceGroup.swift
[229/262] Compiling SwiftOperators OperatorTable.swift
[230/262] Compiling SwiftOperators PrecedenceGraph.swift
[231/262] Emitting module SwiftOperators
[232/262] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[233/262] Compiling SwiftParserDiagnostics Utils.swift
[234/263] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[235/263] Compiling SwiftOperators OperatorTable+Folding.swift
[236/263] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[237/263] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[238/263] Compiling SwiftOperators OperatorTable+Semantics.swift
[239/263] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[240/263] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[241/263] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[242/263] Compiling SwiftOperators SyntaxSynthesis.swift
[244/264] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[245/264] Emitting module SwiftParserDiagnostics
[248/264] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[249/264] Compiling SwiftParserDiagnostics PresenceUtils.swift
[252/263] Compiling SwiftParserDiagnostics MissingNodesError.swift
[253/263] Compiling SwiftParserDiagnostics MissingTokenError.swift
[255/278] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[256/278] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[257/278] Emitting module SwiftSyntaxBuilder
[258/278] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[259/278] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[260/279] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[261/279] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[262/279] Compiling SwiftSyntaxBuilder Indenter.swift
[263/279] Compiling SwiftSyntaxBuilder ListBuilder.swift
[264/279] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[265/279] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[266/279] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[267/279] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[268/279] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[269/279] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[270/279] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[272/294] Compiling SwiftIfConfig SyntaxProtocol+IfConfig.swift
[273/294] Compiling SwiftIfConfig VersionTuple+Parsing.swift
[274/295] Compiling SwiftIfConfig StaticBuildConfiguration.swift
[275/295] Compiling SwiftIfConfig SyntaxLiteralUtils.swift
[276/295] Compiling SwiftIfConfig IfConfigFunctions.swift
[277/295] Compiling SwiftIfConfig IfConfigRegionState.swift
[278/295] Compiling SwiftIfConfig ConfiguredRegions.swift
[279/295] Compiling SwiftIfConfig IfConfigDecl+IfConfig.swift
[280/295] Compiling SwiftIfConfig ActiveClauseEvaluator.swift
[281/295] Compiling SwiftIfConfig ActiveSyntaxRewriter.swift
[282/295] Compiling SwiftIfConfig ActiveSyntaxVisitor.swift
[283/295] Compiling SwiftIfConfig BuildConfiguration.swift
[284/295] Emitting module SwiftIfConfig
[285/295] Compiling SwiftIfConfig IfConfigDiagnostic.swift
[286/295] Compiling SwiftIfConfig IfConfigEvaluation.swift
[287/295] Compiling SwiftIfConfig VersionTuple.swift
[289/312] Compiling SwiftSyntaxMacros Macro.swift
[290/312] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[291/312] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[292/312] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[293/312] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[294/312] Compiling SwiftSyntaxMacros Macro+Format.swift
[295/312] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[296/312] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[297/312] Compiling SwiftSyntaxMacros AccessorMacro.swift
[298/312] Compiling SwiftSyntaxMacros AttachedMacro.swift
[299/312] Compiling SwiftSyntaxMacros BodyMacro.swift
[300/312] Compiling SwiftSyntaxMacros MemberMacro.swift
[301/312] Compiling SwiftSyntaxMacros PeerMacro.swift
[302/314] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[303/314] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[304/314] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[305/314] Emitting module SwiftSyntaxMacros
[306/314] Compiling SwiftSyntaxMacros PreambleMacro.swift
[307/314] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[309/323] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[310/324] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[311/324] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[312/324] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[313/324] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[314/324] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[315/324] Emitting module SwiftSyntaxMacroExpansion
[316/324] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[317/324] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[318/324] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[320/336] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[321/336] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[322/337] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[323/337] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[324/337] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[325/337] Emitting module SwiftCompilerPluginMessageHandling
[326/337] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[327/337] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[328/337] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[329/337] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[330/337] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[331/337] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[332/337] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[334/339] Emitting module SwiftCompilerPlugin
[335/339] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[337/344] Compiling SwiftAPIClientMacros MacroError.swift
[338/344] Compiling SwiftAPIClientMacros Collection++.swift
[339/344] Emitting module SwiftAPIClientMacros
/host/spi-builder-workspace/Sources/SwiftAPIClientMacros/SwiftAPIClientMacros.swift:149:15: warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter
147 | }
148 |
149 | public struct SwiftAPIClientPathMacro: MemberMacro, MemberAttributeMacro, PeerMacro, ExtensionMacro {
    |               `- warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter
150 |
151 | 	public static func expansion(
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntaxMacros/MacroProtocols/MemberMacro.swift:89:22: note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
53 |   /// - Returns: the set of member declarations introduced by this macro, which
54 |   /// are nested inside the `attachedTo` declaration.
55 |   static func expansion(
   |               `- note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
56 |     of node: AttributeSyntax,
57 |     providingMembersOf declaration: some DeclGroupSyntax,
   :
87 |     message: "`MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter"
88 |   )
89 |   public static func expansion(
   |                      `- note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
90 |     of node: AttributeSyntax,
91 |     providingMembersOf declaration: some DeclGroupSyntax,
[340/344] Compiling SwiftAPIClientMacros String++.swift
[341/344] Compiling SwiftAPIClientMacros SwiftAPIClientMacros.swift
/host/spi-builder-workspace/Sources/SwiftAPIClientMacros/SwiftAPIClientMacros.swift:149:15: warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter
147 | }
148 |
149 | public struct SwiftAPIClientPathMacro: MemberMacro, MemberAttributeMacro, PeerMacro, ExtensionMacro {
    |               `- warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter
150 |
151 | 	public static func expansion(
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntaxMacros/MacroProtocols/MemberMacro.swift:89:22: note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
53 |   /// - Returns: the set of member declarations introduced by this macro, which
54 |   /// are nested inside the `attachedTo` declaration.
55 |   static func expansion(
   |               `- note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
56 |     of node: AttributeSyntax,
57 |     providingMembersOf declaration: some DeclGroupSyntax,
   :
87 |     message: "`MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter"
88 |   )
89 |   public static func expansion(
   |                      `- note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
90 |     of node: AttributeSyntax,
91 |     providingMembersOf declaration: some DeclGroupSyntax,
/host/spi-builder-workspace/Sources/SwiftAPIClientMacros/SwiftAPIClientMacros.swift:41:40: warning: 'throwsSpecifier' is deprecated: use throwsClause.throwsSpecifier
 39 | 			funcDecl.signature.effectSpecifiers = FunctionEffectSpecifiersSyntax()
 40 | 		}
 41 | 		funcDecl.signature.effectSpecifiers?.throwsSpecifier = "throws"
    |                                        `- warning: 'throwsSpecifier' is deprecated: use throwsClause.throwsSpecifier
 42 |
 43 | 		let isAsync = attribute.caller == "http" || funcDecl.signature.effectSpecifiers?.asyncSpecifier != nil
/host/spi-builder-workspace/Sources/SwiftAPIClientMacros/SwiftAPIClientMacros.swift:278:19: warning: 'macro' is deprecated: renamed to 'macroName'
276 |
277 | 	public static func expansion(of node: some FreestandingMacroExpansionSyntax, in context: some MacroExpansionContext) throws -> [DeclSyntax] {
278 | 		let name = node.macro.text.lowercased()
    |                   |- warning: 'macro' is deprecated: renamed to 'macroName'
    |                   `- note: use 'macroName' instead
279 | 		var type = node.argumentList.first?.expression.trimmed.description ?? ""
280 | 		if type.hasSuffix(".self") {
/host/spi-builder-workspace/Sources/SwiftAPIClientMacros/SwiftAPIClientMacros.swift:279:19: warning: 'argumentList' is deprecated: renamed to 'arguments'
277 | 	public static func expansion(of node: some FreestandingMacroExpansionSyntax, in context: some MacroExpansionContext) throws -> [DeclSyntax] {
278 | 		let name = node.macro.text.lowercased()
279 | 		var type = node.argumentList.first?.expression.trimmed.description ?? ""
    |                   |- warning: 'argumentList' is deprecated: renamed to 'arguments'
    |                   `- note: use 'arguments' instead
280 | 		if type.hasSuffix(".self") {
281 | 			type.removeLast(5)
[342/344] Write Objects.LinkFileList
[343/344] Linking SwiftAPIClientMacros-tool
[345/486] Compiling SwiftAPIClient APIClient.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[346/486] Compiling SwiftAPIClient APIClientCaller.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[347/486] Compiling SwiftAPIClient APIClientConfigs.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[348/486] Compiling SwiftAPIClient APIClientType.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[349/486] Compiling SwiftAPIClient HTTPClient.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[350/486] Compiling SwiftAPIClient HTTPDownloadClient.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[351/486] Compiling SwiftAPIClient HTTPPublisher.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[352/486] Compiling SwiftAPIClient HTTPUploadClient.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[353/486] Compiling SwiftAPIClient URLSession+Client.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[354/486] Compiling SwiftAPIClient Async++.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[355/496] Compiling SwiftAPIClient JSONContentEncoders.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[356/496] Compiling SwiftAPIClient MultipartFormData.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[357/496] Compiling SwiftAPIClient MultipartFormDataEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[358/496] Compiling SwiftAPIClient ParametersEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[359/496] Compiling SwiftAPIClient ParametersValue.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[360/496] Compiling SwiftAPIClient QueryEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[361/496] Compiling SwiftAPIClient HTTPHeadersEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[362/496] Compiling SwiftAPIClient PlainCodingKey.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[363/496] Compiling SwiftAPIClient Ref.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[364/496] Compiling SwiftAPIClient URLQueryEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[365/496] Compiling SwiftAPIClient ConsoleStyle.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[366/496] Compiling SwiftAPIClient Error+String.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[367/496] Compiling SwiftAPIClient NoneLogger.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[368/496] Compiling SwiftAPIClient Publisher+Create.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[369/496] Compiling SwiftAPIClient Publishers+Task.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[370/496] Compiling SwiftAPIClient Reachability.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[371/496] Compiling SwiftAPIClient Status+Ext.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[372/496] Compiling SwiftAPIClient URLSessionDelegateWrapper.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[373/496] Compiling SwiftAPIClient UpdateMetrics.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[374/496] Compiling SwiftAPIClient WithSynchronizedAccess.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[375/496] Compiling SwiftAPIClient Serializer.swift
[376/496] Compiling SwiftAPIClient TimeoutError.swift
[377/496] Compiling SwiftAPIClient AnyAsyncSequence.swift
[378/496] Compiling SwiftAPIClient AnyEncodable.swift
[379/496] Compiling SwiftAPIClient ContentEncoder.swift
[380/496] Compiling SwiftAPIClient DataDecoder.swift
[381/496] Compiling SwiftAPIClient EncodingStrategies.swift
[382/496] Compiling SwiftAPIClient ErrorDecoder.swift
[383/496] Compiling SwiftAPIClient FormURLEncoder.swift
[384/496] Compiling SwiftAPIClient HeadersEncoder.swift
[385/506] Compiling SwiftAPIClient RequestBuilder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[386/506] Compiling SwiftAPIClient AsyncValue.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[387/506] Compiling SwiftAPIClient ContentSerializer.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[388/506] Compiling SwiftAPIClient ContentType.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[389/506] Compiling SwiftAPIClient Errors.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[390/506] Compiling SwiftAPIClient HTTPFields.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[391/506] Compiling SwiftAPIClient HTTPRequestComponents.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[392/506] Compiling SwiftAPIClient LoggingComponent.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[393/506] Compiling SwiftAPIClient Mockable.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[394/506] Compiling SwiftAPIClient RedirectBehaviour.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[405/506] Emitting module SwiftAPIClient
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[406/506] Compiling SwiftAPIClient String++.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[407/506] Compiling SwiftAPIClient URLComponentBuilder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[408/506] Compiling SwiftAPIClient URLResponse++.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[409/506] Compiling SwiftAPIClient Imports.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[410/506] Compiling SwiftAPIClient Macros.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[411/506] Compiling SwiftAPIClient AuthModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[412/506] Compiling SwiftAPIClient BackgroundModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[413/506] Compiling SwiftAPIClient CodeLocation.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[414/506] Compiling SwiftAPIClient CodersModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[415/506] Compiling SwiftAPIClient ErrorDecodeModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[436/506] Emitting module SwiftAPIClient
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
1 | public class PartialKeyPath<Root> : AnyKeyPath {
  |              `- note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/APIClientConfigs.swift:12:15: warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 10 | 	struct Configs: Sendable {
 11 |
 12 | 		private var values: [PartialKeyPath<APIClient.Configs>: Any] = [:]
    |               `- warning: stored property 'values' of 'Sendable'-conforming struct 'Configs' has non-sendable type '[PartialKeyPath<APIClient.Configs> : Any]'; this is an error in the Swift 6 language mode
 13 |
 14 | 		/// Initializes a new configuration set for `APIClient`.
[447/506] Compiling SwiftAPIClient ConsoleStyle.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[448/506] Compiling SwiftAPIClient Error+String.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[449/506] Compiling SwiftAPIClient NoneLogger.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[450/506] Compiling SwiftAPIClient Publisher+Create.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[451/506] Compiling SwiftAPIClient Publishers+Task.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[452/506] Compiling SwiftAPIClient Reachability.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[453/506] Compiling SwiftAPIClient Status+Ext.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[454/506] Compiling SwiftAPIClient URLSessionDelegateWrapper.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[455/506] Compiling SwiftAPIClient UpdateMetrics.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[456/506] Compiling SwiftAPIClient WithSynchronizedAccess.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/NoneLogger.swift:14:16: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
12 | }
13 |
14 | private struct NoneLogger: LogHandler {
   |                `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
15 |
16 |   var metadata: Logger.Metadata = [:]
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
[467/506] Compiling SwiftAPIClient ErrorHandler.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[468/506] Compiling SwiftAPIClient HTTPClientMiddleware.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[469/506] Compiling SwiftAPIClient HTTPResponseValidator.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[470/506] Compiling SwiftAPIClient ListenerModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[471/506] Compiling SwiftAPIClient LoggingModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[472/506] Compiling SwiftAPIClient MetricsModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[473/506] Compiling SwiftAPIClient MockResponses.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[474/506] Compiling SwiftAPIClient RateLimitModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[475/506] Compiling SwiftAPIClient RedirectModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[476/506] Compiling SwiftAPIClient RequestCompression.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[477/506] Compiling SwiftAPIClient RequestModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[478/506] Compiling SwiftAPIClient RequestValidator.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[479/506] Compiling SwiftAPIClient ResponseWrapModifires.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[480/506] Compiling SwiftAPIClient RetryModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[481/506] Compiling SwiftAPIClient ThrottleModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[482/506] Compiling SwiftAPIClient TimeoutModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[483/506] Compiling SwiftAPIClient TokenCacheService.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[484/506] Compiling SwiftAPIClient TokenRefresher.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[485/506] Compiling SwiftAPIClient URLSessionModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
[486/506] Compiling SwiftAPIClient WaitForConnectionModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:10:8: error: no such module 'Glibc'
  8 | import Darwin
  9 | #else
 10 | import Glibc
    |        `- error: no such module 'Glibc'
 11 | #endif
 12 |
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RetryModifier.swift:484:28: warning: conformance of 'AnyHashable' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
482 | 		let backoffPolicy = configs.retryBackoffPolicy
483 | 		if let hash = backoffPolicy.scopeHash(request) {
484 | 			if let interval = await waitForSynchronizedAccess(id: hash, of: UInt64.self) {
    |                            `- warning: conformance of 'AnyHashable' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
485 | 				try await Task.sleep(nanoseconds: configs.retryJitterConfigs.delay(for: interval))
486 | 			}
Swift.AnyHashable:2:11: note: conformance of 'AnyHashable' to 'Sendable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | extension AnyHashable : Sendable {
  |           `- note: conformance of 'AnyHashable' to 'Sendable' has been explicitly marked unavailable here
3 | }
BUILD FAILURE 6.1 android