This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of request-dl-nio with Swift 6.0 (beta) for macOS (SPM).

Swift 6 data race errors: 41

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

 94 |         download: Download
 95 |     ) -> ModifiedRequestTask<Modifiers.Progress<Element, TaskResult<Data>>> {
 96 |         modifier(Modifiers.Progress(
    |         `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 97 |             upload: upload,
 98 |             download: download
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:96:18: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 94 |         download: Download
 95 |     ) -> ModifiedRequestTask<Modifiers.Progress<Element, TaskResult<Data>>> {
 96 |         modifier(Modifiers.Progress(
    |                  `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 97 |             upload: upload,
 98 |             download: download
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:110:9: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
108 |         upload: Upload
109 |     ) -> ModifiedRequestTask<Modifiers.Progress<Element, TaskResult<AsyncBytes>>> {
110 |         modifier(Modifiers.Progress(upload))
    |         `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
111 |     }
112 | }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:110:18: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
108 |         upload: Upload
109 |     ) -> ModifiedRequestTask<Modifiers.Progress<Element, TaskResult<AsyncBytes>>> {
110 |         modifier(Modifiers.Progress(upload))
    |                  `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
111 |     }
112 | }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Group/GroupTask.swift:28:15: warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
26 |  You can get the result individually or by using the `\.keys`, `\.values` properties of dictionary or by using the `subscript` method.
27 |  */
28 | public struct GroupTask<Data: Sequence, Content: RequestTask>: RequestTask where Data.Element: Hashable, Data: Sendable {
   |               `- warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
29 |     // swiftlint:enable line_length
30 |
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Group/GroupTask.swift:62:17: warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
60 |       */
61 |       public func result() async throws -> GroupResult<Data.Element, Content.Element> {
62 |           await withTaskGroup(of: (Data.Element, Result<Content.Element, Error>).self) { group in
   |                 `- warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
63 |               for element in data {
64 |                   group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Group/GroupTask.swift:64:25: warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
62 |           await withTaskGroup(of: (Data.Element, Result<Content.Element, Error>).self) { group in
63 |               for element in data {
64 |                   group.addTask {
   |                         `- warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
65 |                       do {
66 |                           var task = transform(element)
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Group/GroupTask.swift:66:48: warning: capture of 'element' with non-sendable type 'Data.Element' in a `@Sendable` closure; this is an error in the Swift 6 language mode
64 |                   group.addTask {
65 |                       do {
66 |                           var task = transform(element)
   |                                                `- warning: capture of 'element' with non-sendable type 'Data.Element' in a `@Sendable` closure; this is an error in the Swift 6 language mode
67 |                           task.environment = environment
68 |                           return (element, .success(try await task.result()))
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Published/PublishedTask.swift:41:25: warning: capture of 'subscriber' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
11 | public struct PublishedTask<Output>: Publisher {
12 |
13 |     class Subscription<S: Subscriber>: Combine.Subscription where S.Failure == Error {
   |                        `- note: consider making generic parameter 'S' conform to the 'Sendable' protocol
14 |
15 |         // MARK: - Private properties
   :
39 |             task = _Concurrency.Task {
40 |                 do {
41 |                     _ = subscriber.receive(try await wrapper())
   |                         `- warning: capture of 'subscriber' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
42 |                     subscriber.receive(completion: .finished)
43 |                 } catch {
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Published/PublishedTask.swift:41:54: warning: capture of 'self' with non-sendable type 'PublishedTask<Output>.Subscription<S>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
11 | public struct PublishedTask<Output>: Publisher {
12 |
13 |     class Subscription<S: Subscriber>: Combine.Subscription where S.Failure == Error {
   |           `- note: generic class 'Subscription' does not conform to the 'Sendable' protocol
14 |
15 |         // MARK: - Private properties
   :
39 |             task = _Concurrency.Task {
40 |                 do {
41 |                     _ = subscriber.receive(try await wrapper())
   |                                                      `- warning: capture of 'self' with non-sendable type 'PublishedTask<Output>.Subscription<S>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
42 |                     subscriber.receive(completion: .finished)
43 |                 } catch {
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Data/DataTask.swift:63:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
61 |         try await task
62 |             .collectData()
63 |             .result()
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
64 |     }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1208/1232] Compiling RequestDL TaskError.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Key Path/Modifiers.KeyPath.swift:83:36: warning: capture of 'keyPath' with non-sendable type 'KeyPath<AbstractKeyPath, String>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |     ) -> ModifiedRequestTask<Modifiers.KeyPath<Element>> {
 82 |         modifier(Modifiers.KeyPath(
 83 |             keyPath: { $0[keyPath: keyPath] },
    |                                    `- warning: capture of 'keyPath' with non-sendable type 'KeyPath<AbstractKeyPath, String>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 84 |             data: \.payload,
 85 |             element: {
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Key Path/Modifiers.KeyPath.swift:108:36: warning: capture of 'keyPath' with non-sendable type 'KeyPath<AbstractKeyPath, String>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
106 |     ) -> ModifiedRequestTask<Modifiers.KeyPath<Element>> {
107 |         modifier(Modifiers.KeyPath(
108 |             keyPath: { $0[keyPath: keyPath] },
    |                                    `- warning: capture of 'keyPath' with non-sendable type 'KeyPath<AbstractKeyPath, String>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
109 |             data: { $0 },
110 |             element: { $1 }
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/On Status Code/Models/InvalidStatusCodeError.swift:26:16: warning: stored property 'data' of 'Sendable'-conforming generic struct 'InvalidStatusCodeError' has non-sendable type 'Element'; this is an error in the Swift 6 language mode
21 |  ```
22 | */
23 | public struct InvalidStatusCodeError<Element>: TaskError {
   |                                      `- note: consider making generic parameter 'Element' conform to the 'Sendable' protocol
24 |
25 |     /// The data that caused the validation error.
26 |     public let data: Element
   |                `- warning: stored property 'data' of 'Sendable'-conforming generic struct 'InvalidStatusCodeError' has non-sendable type 'Element'; this is an error in the Swift 6 language mode
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:21:13: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 19 |             _ progress: Progress
 20 |         ) where Input == AsyncResponse, Output == TaskResult<AsyncBytes> {
 21 |             transform = {
    |             `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 22 |                 try await $0.collect(with: progress)
 23 |             }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:22:44: warning: capture of 'progress' with non-sendable type 'Progress' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 16 |         let transform: @Sendable (Input) async throws -> Output
 17 |
 18 |         init<Progress: UploadProgress>(
    |              `- note: consider making generic parameter 'Progress' conform to the 'Sendable' protocol
 19 |             _ progress: Progress
 20 |         ) where Input == AsyncResponse, Output == TaskResult<AsyncBytes> {
 21 |             transform = {
 22 |                 try await $0.collect(with: progress)
    |                                            `- warning: capture of 'progress' with non-sendable type 'Progress' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 23 |             }
 24 |         }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:32:55: warning: capture of 'progress' with non-sendable type 'Download' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 24 |         }
 25 |
 26 |         init<Download: DownloadProgress>(
    |              `- note: consider making generic parameter 'Download' conform to the 'Sendable' protocol
 27 |             _ progress: Download
 28 |         ) where Input == TaskResult<AsyncBytes>, Output == TaskResult<Data> {
    :
 30 |                 try await .init(
 31 |                     head: $0.head,
 32 |                     payload: $0.payload.collect(with: progress)
    |                                                       `- warning: capture of 'progress' with non-sendable type 'Download' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 33 |                 )
 34 |             }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:41:44: warning: capture of 'progress' with non-sendable type 'Download' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 35 |         }
 36 |
 37 |         init<Download: DownloadProgress>(
    |              `- note: consider making generic parameter 'Download' conform to the 'Sendable' protocol
 38 |             _ progress: Download
 39 |         ) where Input == AsyncBytes, Output == Data {
 40 |             transform = {
 41 |                 try await $0.collect(with: progress)
    |                                            `- warning: capture of 'progress' with non-sendable type 'Download' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 42 |             }
 43 |         }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:49:13: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 47 |             download: Download
 48 |         ) where Input == AsyncResponse, Output == TaskResult<Data> {
 49 |             transform = {
    |             `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 50 |                 let result = try await $0.collect(with: upload)
 51 |                 return try await .init(
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:50:57: warning: capture of 'upload' with non-sendable type 'Upload' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |         }
 44 |
 45 |         init<Upload: UploadProgress, Download: DownloadProgress>(
    |              `- note: consider making generic parameter 'Upload' conform to the 'Sendable' protocol
 46 |             upload: Upload,
 47 |             download: Download
 48 |         ) where Input == AsyncResponse, Output == TaskResult<Data> {
 49 |             transform = {
 50 |                 let result = try await $0.collect(with: upload)
    |                                                         `- warning: capture of 'upload' with non-sendable type 'Upload' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 51 |                 return try await .init(
 52 |                     head: result.head,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:53:59: warning: capture of 'download' with non-sendable type 'Download' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |         }
 44 |
 45 |         init<Upload: UploadProgress, Download: DownloadProgress>(
    |                                      `- note: consider making generic parameter 'Download' conform to the 'Sendable' protocol
 46 |             upload: Upload,
 47 |             download: Download
    :
 51 |                 return try await .init(
 52 |                     head: result.head,
 53 |                     payload: result.payload.collect(with: download)
    |                                                           `- warning: capture of 'download' with non-sendable type 'Download' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 54 |                 )
 55 |             }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:96:9: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 94 |         download: Download
 95 |     ) -> ModifiedRequestTask<Modifiers.Progress<Element, TaskResult<Data>>> {
 96 |         modifier(Modifiers.Progress(
    |         `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 97 |             upload: upload,
 98 |             download: download
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:96:18: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 94 |         download: Download
 95 |     ) -> ModifiedRequestTask<Modifiers.Progress<Element, TaskResult<Data>>> {
 96 |         modifier(Modifiers.Progress(
    |                  `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 97 |             upload: upload,
 98 |             download: download
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:110:9: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
108 |         upload: Upload
109 |     ) -> ModifiedRequestTask<Modifiers.Progress<Element, TaskResult<AsyncBytes>>> {
110 |         modifier(Modifiers.Progress(upload))
    |         `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
111 |     }
112 | }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift:110:18: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
108 |         upload: Upload
109 |     ) -> ModifiedRequestTask<Modifiers.Progress<Element, TaskResult<AsyncBytes>>> {
110 |         modifier(Modifiers.Progress(upload))
    |                  `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
111 |     }
112 | }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Group/GroupTask.swift:28:15: warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
26 |  You can get the result individually or by using the `\.keys`, `\.values` properties of dictionary or by using the `subscript` method.
27 |  */
28 | public struct GroupTask<Data: Sequence, Content: RequestTask>: RequestTask where Data.Element: Hashable, Data: Sendable {
   |               `- warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
29 |     // swiftlint:enable line_length
30 |
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Group/GroupTask.swift:62:17: warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
60 |       */
61 |       public func result() async throws -> GroupResult<Data.Element, Content.Element> {
62 |           await withTaskGroup(of: (Data.Element, Result<Content.Element, Error>).self) { group in
   |                 `- warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
63 |               for element in data {
64 |                   group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Group/GroupTask.swift:64:25: warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
62 |           await withTaskGroup(of: (Data.Element, Result<Content.Element, Error>).self) { group in
63 |               for element in data {
64 |                   group.addTask {
   |                         `- warning: type 'Data.Element' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
65 |                       do {
66 |                           var task = transform(element)
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Group/GroupTask.swift:66:48: warning: capture of 'element' with non-sendable type 'Data.Element' in a `@Sendable` closure; this is an error in the Swift 6 language mode
64 |                   group.addTask {
65 |                       do {
66 |                           var task = transform(element)
   |                                                `- warning: capture of 'element' with non-sendable type 'Data.Element' in a `@Sendable` closure; this is an error in the Swift 6 language mode
67 |                           task.environment = environment
68 |                           return (element, .success(try await task.result()))
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Published/PublishedTask.swift:41:25: warning: capture of 'subscriber' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
11 | public struct PublishedTask<Output>: Publisher {
12 |
13 |     class Subscription<S: Subscriber>: Combine.Subscription where S.Failure == Error {
   |                        `- note: consider making generic parameter 'S' conform to the 'Sendable' protocol
14 |
15 |         // MARK: - Private properties
   :
39 |             task = _Concurrency.Task {
40 |                 do {
41 |                     _ = subscriber.receive(try await wrapper())
   |                         `- warning: capture of 'subscriber' with non-sendable type 'S' in a `@Sendable` closure; this is an error in the Swift 6 language mode
42 |                     subscriber.receive(completion: .finished)
43 |                 } catch {
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Other Tasks/Published/PublishedTask.swift:41:54: warning: capture of 'self' with non-sendable type 'PublishedTask<Output>.Subscription<S>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
11 | public struct PublishedTask<Output>: Publisher {
12 |
13 |     class Subscription<S: Subscriber>: Combine.Subscription where S.Failure == Error {
   |           `- note: generic class 'Subscription' does not conform to the 'Sendable' protocol
14 |
15 |         // MARK: - Private properties
   :
39 |             task = _Concurrency.Task {
40 |                 do {
41 |                     _ = subscriber.receive(try await wrapper())
   |                                                      `- warning: capture of 'self' with non-sendable type 'PublishedTask<Output>.Subscription<S>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
42 |                     subscriber.receive(completion: .finished)
43 |                 } catch {
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Data/DataTask.swift:63:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
61 |         try await task
62 |             .collectData()
63 |             .result()
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
64 |     }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1209/1232] Compiling RequestDL TaskResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1210/1232] Compiling RequestDL DownloadTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1211/1232] Compiling RequestDL AsyncBytes.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1212/1232] Compiling RequestDL MockedTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1213/1232] Compiling RequestDL MockedTaskPayload.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1214/1232] Compiling RequestDL PropertyMockedTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1215/1232] Compiling RequestDL EmptyResponseError.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1216/1232] Compiling RequestDL RawTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1217/1232] Compiling RequestDL AsyncResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1218/1232] Compiling RequestDL DownloadStep.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1219/1232] Compiling RequestDL HTTPHeaders.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1220/1232] Compiling RequestDL ResponseHead.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1221/1232] Compiling RequestDL ResponseStep.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1222/1232] Compiling RequestDL UploadStep.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1223/1232] Compiling RequestDL UploadTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1224/1232] Compiling RequestDL RequestTaskInternals.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1225/1232] Compiling RequestDL TaskEnvironmentKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1226/1232] Compiling RequestDL TaskEnvironmentValues.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1227/1232] Compiling RequestDL RequestTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1228/1232] Compiling RequestDL InterceptedRequestTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1229/1232] Compiling RequestDL RequestTaskInterceptor.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1230/1232] Compiling RequestDL RequestTaskModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1231/1232] Compiling RequestDL _RequestTaskModifier_Content.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
[1232/1232] Compiling RequestDL ModifiedRequestTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/MockedTask.swift:57:14: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
55 |         @PropertyBuilder content: () -> Content
56 |     ) where Element == AsyncResponse {
57 |         self.payload = PropertyMockedTask(
   |              `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
58 |             version: version,
59 |             status: status,
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:8:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  6 | import NIOCore
  7 |
  8 | struct PropertyMockedTask<Content: Property>: MockedTaskPayload {
    |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  9 |
 10 |     // MARK: - Internal properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift:99:13: warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |
 98 |         eventLoop.execute {
 99 |             body.stream(.init {
    |             `- warning: capture of 'body' with non-sendable type 'HTTPClient.Body' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                 if case .byteBuffer(let byteBuffer) = $0 {
101 |                     buffer.append(Internals.DataBuffer(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/async-http-client/Sources/AsyncHTTPClient/HTTPHandler.swift:26:19: note: struct 'Body' does not conform to the 'Sendable' protocol
 24 | extension HTTPClient {
 25 |     /// A request body.
 26 |     public struct Body {
    |                   `- note: struct 'Body' does not conform to the 'Sendable' protocol
 27 |         /// A streaming uploader.
 28 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Raw/RawTask.swift:7:8: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 5 | import Foundation
 6 |
 7 | struct RawTask<Content: Property>: RequestTask {
   |        `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 8 |
 9 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/UploadTask.swift:38:15: warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
36 |  such as its URL, headers, body and etc.
37 |  */
38 | public struct UploadTask<Content: Property>: RequestTask {
   |               `- warning: type 'AsyncResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
39 |
40 |     // MARK: - Public properties
/Users/admin/builder/spi-builder-workspace/Sources/RequestDL/Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift:10:15: note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
 8 |  A structure that represents an asynchronous response.
 9 |  */
10 | public struct AsyncResponse: AsyncSequence {
   |               `- note: consider making struct 'AsyncResponse' conform to the 'Sendable' protocol
11 |
12 |     /**
Build complete! (104.35s)
Fetching https://github.com/apple/swift-docc-symbolkit
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-numerics.git
Fetching https://github.com/apple/swift-docc-plugin.git
Fetching https://github.com/apple/swift-nio-extras.git
[1/3518] Fetching swift-system
[72/8990] Fetching swift-system, swift-numerics
[127/10448] Fetching swift-system, swift-numerics, swift-docc-plugin
[366/15281] Fetching swift-system, swift-numerics, swift-docc-plugin, swift-nio-extras
[1092/18634] Fetching swift-system, swift-numerics, swift-docc-plugin, swift-nio-extras, swift-log
[1575/32497] Fetching swift-system, swift-numerics, swift-docc-plugin, swift-nio-extras, swift-log, swift-collections
[7302/35354] Fetching swift-system, swift-numerics, swift-docc-plugin, swift-nio-extras, swift-log, swift-collections, swift-docc-symbolkit
Fetched https://github.com/apple/swift-docc-symbolkit from cache (1.39s)
Fetching https://github.com/apple/swift-nio.git
Fetched https://github.com/apple/swift-docc-plugin.git from cache (1.39s)
Fetching https://github.com/apple/swift-nio-transport-services.git
[20088/31039] Fetching swift-system, swift-numerics, swift-nio-extras, swift-log, swift-collections
Fetched https://github.com/apple/swift-numerics.git from cache (1.90s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.90s)
Fetched https://github.com/apple/swift-collections.git from cache (1.90s)
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-algorithms
Fetching https://github.com/apple/swift-nio-http2.git
Fetched https://github.com/apple/swift-log.git from cache (1.90s)
Fetching https://github.com/apple/swift-atomics.git
Fetched https://github.com/apple/swift-system.git from cache (1.90s)
Fetching https://github.com/swift-server/async-http-client
[1/2105] Fetching swift-nio-transport-services
[2106/7333] Fetching swift-nio-transport-services, swift-algorithms
[2107/8896] Fetching swift-nio-transport-services, swift-algorithms, swift-atomics
[2310/74424] Fetching swift-nio-transport-services, swift-algorithms, swift-atomics, swift-nio
[2577/87088] Fetching swift-nio-transport-services, swift-algorithms, swift-atomics, swift-nio, async-http-client
[2578/97321] Fetching swift-nio-transport-services, swift-algorithms, swift-atomics, swift-nio, async-http-client, swift-nio-http2
[2835/109589] Fetching swift-nio-transport-services, swift-algorithms, swift-atomics, swift-nio, async-http-client, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/swift-server/async-http-client from cache (1.54s)
Fetching https://github.com/apple/swift-http-types
[48366/96925] Fetching swift-nio-transport-services, swift-algorithms, swift-atomics, swift-nio, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-atomics.git from cache (1.84s)
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.84s)
Fetched https://github.com/apple/swift-algorithms from cache (1.84s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.84s)
[38203/67633] Fetching swift-nio-transport-services, swift-nio
[41423/68047] Fetching swift-nio-transport-services, swift-nio, swift-http-types
Fetched https://github.com/apple/swift-http-types from cache (0.83s)
[42733/67633] Fetching swift-nio-transport-services, swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (4.78s)
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (4.78s)
Computing version for https://github.com/apple/swift-log
Computed https://github.com/apple/swift-log at 1.5.4 (0.70s)
Computing version for https://github.com/apple/swift-nio-ssl
Computed https://github.com/apple/swift-nio-ssl at 2.26.0 (0.75s)
Computing version for https://github.com/apple/swift-nio-extras
Computed https://github.com/apple/swift-nio-extras at 1.21.0 (0.71s)
Computing version for https://github.com/apple/swift-nio
Computed https://github.com/apple/swift-nio at 2.63.0 (0.75s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.3.0 (0.66s)
Computing version for https://github.com/swift-server/async-http-client
Computed https://github.com/swift-server/async-http-client at 1.20.1 (0.67s)
Computing version for https://github.com/apple/swift-http-types
Computed https://github.com/apple/swift-http-types at 1.0.3 (0.65s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.30.0 (0.66s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.2.1 (0.64s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.0.4 (0.67s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.1.0 (0.67s)
Computing version for https://github.com/apple/swift-docc-symbolkit
Computed https://github.com/apple/swift-docc-symbolkit at 1.0.0 (0.70s)
Computing version for https://github.com/apple/swift-algorithms
Computed https://github.com/apple/swift-algorithms at 1.2.0 (0.65s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.19.0 (0.66s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.2 (0.66s)
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.30.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.0.4
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.2
Creating working copy for https://github.com/apple/swift-docc-plugin.git
Working copy of https://github.com/apple/swift-docc-plugin.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-algorithms
Working copy of https://github.com/apple/swift-algorithms resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.63.0
Creating working copy for https://github.com/apple/swift-http-types
Working copy of https://github.com/apple/swift-http-types resolved at 1.0.3
Creating working copy for https://github.com/swift-server/async-http-client
Working copy of https://github.com/swift-server/async-http-client resolved at 1.20.1
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.21.0
Creating working copy for https://github.com/apple/swift-docc-symbolkit
Working copy of https://github.com/apple/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.1.0
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.26.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.5.4
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.19.0
warning: 'swift-algorithms': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-algorithms/Sources/Algorithms/Documentation.docc
Build complete.
{
  "dependencies" : [
    {
      "identity" : "async-http-client",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.20.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-server/async-http-client"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.63.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio"
    },
    {
      "identity" : "swift-nio-extras",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.21.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-extras"
    },
    {
      "identity" : "swift-nio-ssl",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.26.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-ssl"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.4",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log"
    }
  ],
  "manifest_display_name" : "request-dl-nio",
  "name" : "request-dl-nio",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "RequestDL",
      "targets" : [
        "RequestDL"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RequestDLTests",
      "module_type" : "SwiftTarget",
      "name" : "RequestDLTests",
      "path" : "Tests/RequestDLTests",
      "product_dependencies" : [
        "AsyncHTTPClient",
        "NIO",
        "NIOPosix",
        "NIOSSL",
        "Logging"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/client_password/client.password.public.cer",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/server/server.public.pem",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/template_document.pdf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/client/client.private.pem",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/server/server.private.pem",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/client/client.public.pem",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/client/client.public.cer",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/client/client.private.cer",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/client_password/client.password.public.pem",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/template_image.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/client_password/client.password.private.cer",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/server/server.private.cer",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/SSL.md",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/server/server.public.cer",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RequestDLTests/Resources/client_password/client.password.private.pem",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Internals/AnyError.swift",
        "Internals/Extensions/Array.ByteBuffer+.swift",
        "Internals/Extensions/Array.UInt8+.swift",
        "Internals/Extensions/Data+.swift",
        "Internals/Extensions/Date+.swift",
        "Internals/Extensions/Internals.Body+.swift",
        "Internals/Extensions/String+.swift",
        "Internals/Extensions/XCTestCase+.swift",
        "Internals/Sources/Body/InternalsBodyTests.swift",
        "Internals/Sources/Body/Models/BytesSequence.swift",
        "Internals/Sources/Body/Models/InternalsBodySequenceTests.swift",
        "Internals/Sources/Buffers/Data/InternalsDataBufferTests.swift",
        "Internals/Sources/Buffers/Data/Models/InternalsByteURLTests.swift",
        "Internals/Sources/Buffers/File/InternalsFileBufferTests.swift",
        "Internals/Sources/Client/Client Manager/InternalsClientManagerTests.swift",
        "Internals/Sources/Data Stream/Data/InternalsAsyncStreamTests.swift",
        "Internals/Sources/Data Stream/Download/InternalsDownloadBufferTests.swift",
        "Internals/Sources/Log/Log/InternalsLogTests.swift",
        "Internals/Sources/Secure Connection/Additional Trust Roots/InternalsAdditionalTrustRootsTests.swift",
        "Internals/Sources/Secure Connection/Certificate Chain/InternalsCertificateChainTests.swift",
        "Internals/Sources/Secure Connection/Certificate/InternalsCertificateTests.swift",
        "Internals/Sources/Secure Connection/Certificate/Models/InternalsCertificateFormatTests.swift",
        "Internals/Sources/Secure Connection/Private Key Source/InternalsPrivateKeySourceTests.swift",
        "Internals/Sources/Secure Connection/Private Key/InternalsPrivateKeyTests.swift",
        "Internals/Sources/Secure Connection/Secure Connection/InternalsSecureConnectionTests.swift",
        "Internals/Sources/Secure Connection/Trust Roots/InternalsTrustRootsTests.swift",
        "Internals/Sources/Server/Certificates/Certificates.swift",
        "Internals/Sources/Server/Certificates/Models/CertificateResource.swift",
        "Internals/Sources/Server/HTTP/LocalServer.HTTPHandler.swift",
        "Internals/Sources/Server/HTTP/Models/HTTPResult.swift",
        "Internals/Sources/Server/Local Server/LocalServer.swift",
        "Internals/Sources/Server/Local Server/Models/LocalServer.Configuration.swift",
        "Internals/Sources/Server/Local Server/Models/LocalServer.ResponseConfiguration.swift",
        "Internals/Sources/Server/Local Server/Models/LocalServer.TLSOption.swift",
        "Internals/Sources/Session/Async Bytes/InternalsAsyncBytesTests.swift",
        "Internals/Sources/Session/Async Response/InternalsAsyncResponseTests.swift",
        "Internals/Sources/Session/Event Loop Manager/InternalsEventLoopManagerTests.swift",
        "Internals/Sources/Session/Event Loop Manager/Models/MultiThreadedEventLoopGroupTests.swift",
        "Internals/Sources/Session/Session Configuration/InternalsSessionConfigurationTests.swift",
        "Internals/Sources/Session/Session Configuration/Models/InternalsDecompressionLimitTests.swift",
        "Internals/Sources/Session/Session Configuration/Models/InternalsDecompressionTests.swift",
        "Internals/Sources/Session/Session Configuration/Models/InternalsHTTPVersionTests.swift",
        "Internals/Sources/Session/Session Configuration/Models/InternalsRedirectConfigurationTests.swift",
        "Internals/Sources/Session/Session Configuration/Models/InternalsTimeoutTests.swift",
        "Internals/Sources/Session/Session/InternalsSessionTests.swift",
        "Internals/Sources/Session/Session/Models/InternalsRequestTests.swift",
        "Internals/Sources/Session/Session/Models/InternalsResponseHeadTests.swift",
        "Internals/Sources/Storage/InternalsStorageTests.swift",
        "Properties/Extensions/Array+Methods.swift",
        "Properties/Extensions/NeverPropertyTests.swift",
        "Properties/Sources/Cache/Cache Properties/CachePropertiesTests.swift",
        "Properties/Sources/Cache/Cached Request/CachedRequestTests.swift",
        "Properties/Sources/Cache/Data Cache/DataCacheTests.swift",
        "Properties/Sources/Extra Properties/Any/AnyPropertyTests.swift",
        "Properties/Sources/Extra Properties/Async/AsyncPropertyTests.swift",
        "Properties/Sources/Extra Properties/Empty/EmptyPropertyTests.swift",
        "Properties/Sources/Extra Properties/Environment/EnvironmentTests.swift",
        "Properties/Sources/Extra Properties/ForEach/ForEachTests.swift",
        "Properties/Sources/Extra Properties/Group/GroupTests.swift",
        "Properties/Sources/Extra Properties/Modifier/PropertyModifierTests.swift",
        "Properties/Sources/Extra Properties/Namespace/NamespaceTests.swift",
        "Properties/Sources/Graph/Node/NodeTests.swift",
        "Properties/Sources/Graph/Resolve/ResolveTests.swift",
        "Properties/Sources/Headers/Authorization/AuthorizationTests.swift",
        "Properties/Sources/Headers/Authorization/Models/AuthorizationTokenTypeTests.swift",
        "Properties/Sources/Headers/Header Group/HeaderGroupTests.swift",
        "Properties/Sources/Headers/Headers/Accept Charset/AcceptCharsetHeaderTests.swift",
        "Properties/Sources/Headers/Headers/Accept/AcceptHeaderTests.swift",
        "Properties/Sources/Headers/Headers/Cache/CacheHeaderTests.swift",
        "Properties/Sources/Headers/Headers/Custom/CustomHeaderTests.swift",
        "Properties/Sources/Headers/Headers/HeadersTests.swift",
        "Properties/Sources/Headers/Headers/Host/HostHeaderTests.swift",
        "Properties/Sources/Headers/Headers/Origin/OriginHeaderTests.swift",
        "Properties/Sources/Headers/Headers/Referer/RefererHeaderTests.swift",
        "Properties/Sources/Headers/Headers/User Agent/UserAgentHeaderTests.swift",
        "Properties/Sources/Headers/Method/Models/HTTPMethodTests.swift",
        "Properties/Sources/Headers/Method/RequestMethodTests.swift",
        "Properties/Sources/Headers/Reading Mode/ReadingModeTests.swift",
        "Properties/Sources/Headers/Session/SessionTests.swift",
        "Properties/Sources/Headers/Timeout/Models/TimeoutSourceTests.swift",
        "Properties/Sources/Headers/Timeout/Models/UnitTimeTests.swift",
        "Properties/Sources/Headers/Timeout/TimeoutTests.swift",
        "Properties/Sources/Payloads/Charset/CharsetTests.swift",
        "Properties/Sources/Payloads/Form Group/FormGroupTests.swift",
        "Properties/Sources/Payloads/Form Group/Models/MultipartForm.swift",
        "Properties/Sources/Payloads/Form Group/Models/MultipartFormParser.swift",
        "Properties/Sources/Payloads/Form Group/Models/MultipartFormParserError.swift",
        "Properties/Sources/Payloads/Form Group/Models/PartForm.swift",
        "Properties/Sources/Payloads/Form Group/Models/RawData.swift",
        "Properties/Sources/Payloads/Form/FormTests.swift",
        "Properties/Sources/Payloads/Payload/Models/ContentTypeTests.swift",
        "Properties/Sources/Payloads/Payload/Models/PayloadMock.swift",
        "Properties/Sources/Payloads/Payload/PayloadTests.swift",
        "Properties/Sources/Result Builder/Either/_EitherContentTests.swift",
        "Properties/Sources/Result Builder/Optional/_OptionalContentTests.swift",
        "Properties/Sources/Result Builder/Partial/_PartialContentTests.swift",
        "Properties/Sources/Result Builder/Property Builder/PropertyBuilderTests.swift",
        "Properties/Sources/Secure Connection/Additional Trust/AdditionalTrustsTests.swift",
        "Properties/Sources/Secure Connection/Certificates/CertificatesTests.swift",
        "Properties/Sources/Secure Connection/PSK/PSKIdentityTests.swift",
        "Properties/Sources/Secure Connection/Private Key/PrivateKeyTests.swift",
        "Properties/Sources/Secure Connection/Secure Connection/Models/TLSCipherTests.swift",
        "Properties/Sources/Secure Connection/Secure Connection/Models/TLSVersionTests.swift",
        "Properties/Sources/Secure Connection/Secure Connection/SecureConnectionTests.swift",
        "Properties/Sources/Secure Connection/Trusts/DefaultTrustsTests.swift",
        "Properties/Sources/Secure Connection/Trusts/TrustsTests.swift",
        "Properties/Sources/URL/Path/PathTests.swift",
        "Properties/Sources/URL/Query Group/QueryGroupTests.swift",
        "Properties/Sources/URL/Query/Models/URLEncoderTests.swift",
        "Properties/Sources/URL/Query/QueryTests.swift",
        "Properties/Sources/URL/URL/BaseURLTests.swift",
        "Properties/Sources/URL/URL/Models/URLSchemeTests.swift",
        "Properties/Sources/Value/Stored Object/Models/Index.swift",
        "Properties/Sources/Value/Stored Object/Models/IndexFactory.swift",
        "Properties/Sources/Value/Stored Object/Models/IndexProducer.swift",
        "Properties/Sources/Value/Stored Object/Models/StoredObjectToolbox.CombinedPath.swift",
        "Properties/Sources/Value/Stored Object/Models/StoredObjectToolbox.MultiplePath.swift",
        "Properties/Sources/Value/Stored Object/Models/StoredObjectToolbox.OneNamespaceModifier.swift",
        "Properties/Sources/Value/Stored Object/Models/StoredObjectToolbox.Path.swift",
        "Properties/Sources/Value/Stored Object/Models/StoredObjectToolbox.Query.swift",
        "Properties/Sources/Value/Stored Object/Models/StoredObjectToolbox.TwoNamespaceModifier.swift",
        "Properties/Sources/Value/Stored Object/Models/StoredObjectToolbox.swift",
        "Properties/Sources/Value/Stored Object/StoredObjectTests.swift",
        "Tasks/Extensions/TaskMethodsTests.swift",
        "Tasks/Sources/Interceptors/Breakpoint/InterceptorsBreakpointTests.swift",
        "Tasks/Sources/Interceptors/Detach/InterceptorsDetachTests.swift",
        "Tasks/Sources/Interceptors/Log In Console/InterceptorsLogInConsoleTests.swift",
        "Tasks/Sources/Modifiers/Accept Only Status Code/ModifiersAcceptOnlyStatusCodeTests.swift",
        "Tasks/Sources/Modifiers/Collect Bytes/ModifiersCollectBytesTests.swift",
        "Tasks/Sources/Modifiers/Collect Data/ModifiersCollectDataTests.swift",
        "Tasks/Sources/Modifiers/Decode/ModifiersDecodeTests.swift",
        "Tasks/Sources/Modifiers/Environment/ModifiersEnvironmentTests.swift",
        "Tasks/Sources/Modifiers/Extract Payload/ModifiersExtractPayloadTests.swift",
        "Tasks/Sources/Modifiers/Flat Map Error/ModifiersFlatMapErrorTests.swift",
        "Tasks/Sources/Modifiers/Flat Map/ModifiersFlatMapTests.swift",
        "Tasks/Sources/Modifiers/Ignores Progress/ModifiersIgnoresProgressTests.swift",
        "Tasks/Sources/Modifiers/Key Path/Models/AbstractKeyPathTests.swift",
        "Tasks/Sources/Modifiers/Key Path/Models/KeyPathInvalidDataErrorTests.swift",
        "Tasks/Sources/Modifiers/Key Path/Models/KeyPathNotFoundTests.swift",
        "Tasks/Sources/Modifiers/Key Path/ModifiersKeyPathTests.swift",
        "Tasks/Sources/Modifiers/Logger/ModifiersLoggerTests.swift",
        "Tasks/Sources/Modifiers/Map Error/ModifiersMapErrorTests.swift",
        "Tasks/Sources/Modifiers/Map/ModifiersMapTests.swift",
        "Tasks/Sources/Modifiers/On Status Code/Models/InvalidStatusCodeErrorTests.swift",
        "Tasks/Sources/Modifiers/On Status Code/Models/StatusCodeSetTests.swift",
        "Tasks/Sources/Modifiers/On Status Code/Models/StatusCodeTests.swift",
        "Tasks/Sources/Modifiers/On Status Code/ModifiersOnStatusCodeTests.swift",
        "Tasks/Sources/Modifiers/Progress/DeprecatedModifiersProgressTests.swift",
        "Tasks/Sources/Modifiers/Progress/ModifiersProgressTests.swift",
        "Tasks/Sources/Other Tasks/Any/AnyTaskTests.swift",
        "Tasks/Sources/Other Tasks/Group/GroupTaskTests.swift",
        "Tasks/Sources/Other Tasks/Published/PublishedTaskTests.swift",
        "Tasks/Sources/Raw Task/Data/DataTaskTests.swift",
        "Tasks/Sources/Raw Task/Data/Models/TaskResultTests.swift",
        "Tasks/Sources/Raw Task/Download/DownloadTaskTests.swift",
        "Tasks/Sources/Raw Task/Mocked/MockedTaskTests.swift",
        "Tasks/Sources/Raw Task/Upload/Models/HTTPHeadersTests.swift",
        "Tasks/Sources/Raw Task/Upload/Models/ResponseHeadTests.swift",
        "Tasks/Sources/Raw Task/Upload/UploadTaskTests.swift",
        "Tasks/Sources/Request Task/Task Interceptor/InterceptedRequestTaskTests.swift",
        "Tasks/Sources/Request Task/Task Modifier/ModifiedRequestTaskTests.swift",
        "Utils/ResourceFile.swift",
        "Utils/SendableBox.swift",
        "Utils/TestProperty.swift",
        "Utils/resolve.swift"
      ],
      "target_dependencies" : [
        "RequestDL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RequestDL",
      "module_type" : "SwiftTarget",
      "name" : "RequestDL",
      "path" : "Sources/RequestDL",
      "product_dependencies" : [
        "AsyncHTTPClient",
        "NIO",
        "NIOConcurrencyHelpers",
        "NIOFoundationCompat",
        "NIOHTTP1",
        "NIOPosix",
        "NIOHTTPCompression",
        "NIOSSL",
        "Logging"
      ],
      "product_memberships" : [
        "RequestDL"
      ],
      "sources" : [
        "Internals/Extensions/Array+AsyncSequence.swift",
        "Internals/Extensions/Bundle+Methods.swift",
        "Internals/Extensions/CharacterSet+Methods.swift",
        "Internals/Extensions/Override/Internals.Override.FatalError.swift",
        "Internals/Extensions/Override/Internals.Override.Print.swift",
        "Internals/Extensions/Override/Internals.Override.Raise.swift",
        "Internals/Extensions/Override/Internals.Override.swift",
        "Internals/Extensions/ProcessInfo+.swift",
        "Internals/Extensions/String+Methods.swift",
        "Internals/Extensions/URL+Extensions.swift",
        "Internals/Internals.swift",
        "Internals/Sources/Body/Internals.Body.swift",
        "Internals/Sources/Body/Models/Internals.BodySequence.swift",
        "Internals/Sources/Body/Models/Internals.StreamWriterSequence.swift",
        "Internals/Sources/Buffers/Any/Internals.AnyBuffer.swift",
        "Internals/Sources/Buffers/Any/Models/_BufferRepresentable.swift",
        "Internals/Sources/Buffers/Buffer/Internals.Buffer.swift",
        "Internals/Sources/Buffers/Buffer/Models/BufferURL.swift",
        "Internals/Sources/Buffers/Buffer/Models/Internals.ByteBufferURL.swift",
        "Internals/Sources/Buffers/Buffer/Models/Internals.ByteStreamBuffer.swift",
        "Internals/Sources/Buffers/Buffer/Models/Internals.FileBufferURL.swift",
        "Internals/Sources/Buffers/Buffer/Models/Internals.FileStreamBuffer.swift",
        "Internals/Sources/Buffers/Buffer/Models/StreamBuffer.swift",
        "Internals/Sources/Buffers/Data/Internals.DataBuffer.swift",
        "Internals/Sources/Buffers/Data/Models/Internals.ByteHandle.swift",
        "Internals/Sources/Buffers/Data/Models/Internals.ByteURL.swift",
        "Internals/Sources/Buffers/File/Internals.FileBuffer.swift",
        "Internals/Sources/Cache/Cache Configuration/Internals.CacheConfiguration.swift",
        "Internals/Sources/Cache/Cache Control/Internal.CacheControl.swift",
        "Internals/Sources/Client/Client Manager/Internals.ClientManager.swift",
        "Internals/Sources/Client/Client Manager/Models/Internals.ClientManager.Item.swift",
        "Internals/Sources/Client/Client Operation Queue/Internals.ClientOperationQueue.swift",
        "Internals/Sources/Client/Client Operation Queue/Models/Internals.ClientOperation.swift",
        "Internals/Sources/Client/Client Operation Queue/Models/QueueClientOperationDelegate.swift",
        "Internals/Sources/Client/Client/Internals.Client.swift",
        "Internals/Sources/Client/Client/Models/Internals.TaskSeed.swift",
        "Internals/Sources/Client/Client/Models/Internals.UnsafeTask.swift",
        "Internals/Sources/Lock/Async Lock/AsyncLock.swift",
        "Internals/Sources/Lock/Async Signal/AsyncSignal.swift",
        "Internals/Sources/Lock/Lock/Lock.swift",
        "Internals/Sources/Log/Log/Internals.Log.swift",
        "Internals/Sources/Log/Message/Internals.Log.Message.swift",
        "Internals/Sources/Secure Connection/Additional Trust Roots/Internals.AdditionalTrustRoots.swift",
        "Internals/Sources/Secure Connection/Certificate Chain/Internals.CertificateChain.swift",
        "Internals/Sources/Secure Connection/Certificate/Internals.Certificate.swift",
        "Internals/Sources/Secure Connection/Certificate/Models/Internals.Certificate.Format.swift",
        "Internals/Sources/Secure Connection/Private Key Source/Internals.PrivateKeySource.swift",
        "Internals/Sources/Secure Connection/Private Key/Internals.PrivateKey.swift",
        "Internals/Sources/Secure Connection/Secure Connection/Internals.SecureConnection.swift",
        "Internals/Sources/Secure Connection/Secure Connection/Models/SSLKeyLogger.swift",
        "Internals/Sources/Secure Connection/Secure Connection/Models/SSLPSKIdentityResolver.swift",
        "Internals/Sources/Secure Connection/Trust Roots/Internals.TrustRoots.swift",
        "Internals/Sources/Session/Async Bytes/Internals.AsyncBytes.swift",
        "Internals/Sources/Session/Async Response/Internals.AsyncResponse.swift",
        "Internals/Sources/Session/Event Loop Manager/Internals.EventLoopGroupManager.swift",
        "Internals/Sources/Session/Event Loop Manager/Models/MultiThreadedEventLoopGroup.swift",
        "Internals/Sources/Session/Session Configuration/Internals.Session.Configuration.swift",
        "Internals/Sources/Session/Session Configuration/Models/Internals.Decompression.Limit.swift",
        "Internals/Sources/Session/Session Configuration/Models/Internals.Decompression.swift",
        "Internals/Sources/Session/Session Configuration/Models/Internals.HTTPVersion.swift",
        "Internals/Sources/Session/Session Configuration/Models/Internals.RedirectConfiguration.swift",
        "Internals/Sources/Session/Session Configuration/Models/Internals.Timeout.swift",
        "Internals/Sources/Session/Session Provider/Models/CustomSessionProvider.swift",
        "Internals/Sources/Session/Session Provider/Models/IdentifiedSessionProvider.swift",
        "Internals/Sources/Session/Session Provider/Models/SharedSessionProvider.swift",
        "Internals/Sources/Session/Session Provider/SessionProvider.swift",
        "Internals/Sources/Session/Session/Internals.Session.swift",
        "Internals/Sources/Session/Session/Models/Internals.ClientResponseReceiver.swift",
        "Internals/Sources/Session/Session/Models/Internals.DownloadStep.swift",
        "Internals/Sources/Session/Session/Models/Internals.Query.swift",
        "Internals/Sources/Session/Session/Models/Internals.Request.swift",
        "Internals/Sources/Session/Session/Models/Internals.ResponseHead.swift",
        "Internals/Sources/Session/Session/Models/Internals.ResponseStep.swift",
        "Internals/Sources/Session/Session/Models/Internals.UploadStep.swift",
        "Internals/Sources/Session/Session/Models/SessionTask.swift",
        "Internals/Sources/Storage/Storage/Internals.Storage.swift",
        "Internals/Sources/Stream/Async Queue/Internals.AsyncQueue.swift",
        "Internals/Sources/Stream/Async/Internals.AsyncStream.swift",
        "Internals/Sources/Stream/Download/Internals.DownloadBuffer.swift",
        "Properties/Extensions/HTTPHeaders+.swift",
        "Properties/Extensions/Never+Property.swift",
        "Properties/Extensions/String+Shifted.swift",
        "Properties/Sources/Cache/Cache Configuration/CacheConfigurationProperty.swift",
        "Properties/Sources/Cache/Cache Policy/CachePolicyProperty.swift",
        "Properties/Sources/Cache/Cache Strategy/CacheStrategyProperty.swift",
        "Properties/Sources/Cache/Cache Strategy/Models/CacheStrategy.swift",
        "Properties/Sources/Cache/Cache Strategy/Models/EmptyCachedDataError.swift",
        "Properties/Sources/Cache/Data Cache/DataCache.swift",
        "Properties/Sources/Cache/Data Cache/Models/CachedData.swift",
        "Properties/Sources/Cache/Data Cache/Models/CachedResponse.swift",
        "Properties/Sources/Cache/Data Cache/Models/DataCache.Buffer.swift",
        "Properties/Sources/Cache/Data Cache/Models/DataCache.Policy.Set.swift",
        "Properties/Sources/Cache/Data Cache/Models/DataCache.Policy.swift",
        "Properties/Sources/Cache/Data Cache/Models/DiskStorage.swift",
        "Properties/Sources/Cache/Data Cache/Models/MemoryStorage.swift",
        "Properties/Sources/Extra Properties/Any/AnyProperty.swift",
        "Properties/Sources/Extra Properties/Async/AsyncProperty.swift",
        "Properties/Sources/Extra Properties/Empty/EmptyProperty.swift",
        "Properties/Sources/Extra Properties/Environment/EnvironmentProperty.swift",
        "Properties/Sources/Extra Properties/Environment/Models/DynamicEnvironment.swift",
        "Properties/Sources/Extra Properties/Environment/Models/GraphEnvironmentOperation.swift",
        "Properties/Sources/Extra Properties/Environment/Models/PropertyEnvironment.swift",
        "Properties/Sources/Extra Properties/Environment/Models/PropertyEnvironmentKey.swift",
        "Properties/Sources/Extra Properties/Environment/Models/PropertyEnvironmentValues.swift",
        "Properties/Sources/Extra Properties/ForEach/PropertyForEach.swift",
        "Properties/Sources/Extra Properties/Group/PropertyGroup.swift",
        "Properties/Sources/Extra Properties/Modifier/Models/PropertyModifier.swift",
        "Properties/Sources/Extra Properties/Modifier/Models/_PropertyModifier_Content.swift",
        "Properties/Sources/Extra Properties/Modifier/ModifiedProperty.swift",
        "Properties/Sources/Graph/Children/ChildrenNode.swift",
        "Properties/Sources/Graph/Empty/EmptyLeafNode.swift",
        "Properties/Sources/Graph/Graph/Models/GraphID.swift",
        "Properties/Sources/Graph/Graph/Models/IdentifiedGraphValue.swift",
        "Properties/Sources/Graph/Graph/_GraphValue.swift",
        "Properties/Sources/Graph/Leaf/LeafNode.swift",
        "Properties/Sources/Graph/Node/Models/NodeDebug.swift",
        "Properties/Sources/Graph/Node/Models/NodeStringConvertible.swift",
        "Properties/Sources/Graph/Node/Models/PropertyNode.swift",
        "Properties/Sources/Graph/Node/Node.swift",
        "Properties/Sources/Graph/Resolve/Models/Make.swift",
        "Properties/Sources/Graph/Resolve/Models/PropertyInputs.swift",
        "Properties/Sources/Graph/Resolve/Models/PropertyOutputs.swift",
        "Properties/Sources/Graph/Resolve/Models/Resolved.swift",
        "Properties/Sources/Graph/Resolve/Resolve.swift",
        "Properties/Sources/Headers/Authorization/Authorization.swift",
        "Properties/Sources/Headers/Authorization/Models/Authorization.TokenType.swift",
        "Properties/Sources/Headers/Header Group/HeaderGroup.swift",
        "Properties/Sources/Headers/Headers/Accept Charset/AcceptCharsetHeader.swift",
        "Properties/Sources/Headers/Headers/Accept/AcceptHeader.swift",
        "Properties/Sources/Headers/Headers/Cache/CacheHeader.swift",
        "Properties/Sources/Headers/Headers/Custom/CustomHeader.swift",
        "Properties/Sources/Headers/Headers/Header Node/HeaderNode.swift",
        "Properties/Sources/Headers/Headers/Header Node/Models/HeaderSeparatorKey.swift",
        "Properties/Sources/Headers/Headers/Header Node/Models/HeaderStrategy.swift",
        "Properties/Sources/Headers/Headers/Header Node/Models/HeaderStrategyKey.swift",
        "Properties/Sources/Headers/Headers/Host/HostHeader.swift",
        "Properties/Sources/Headers/Headers/Origin/OriginHeader.swift",
        "Properties/Sources/Headers/Headers/Referer/RefererHeader.swift",
        "Properties/Sources/Headers/Headers/User Agent/UserAgentHeader.swift",
        "Properties/Sources/Headers/Method/Models/HTTPMethod.swift",
        "Properties/Sources/Headers/Method/RequestMethod.swift",
        "Properties/Sources/Headers/Reading Mode/ReadingMode.swift",
        "Properties/Sources/Headers/Session/Models/Session.DecompressionLimit.swift",
        "Properties/Sources/Headers/Session/Session.swift",
        "Properties/Sources/Headers/Timeout/Models/Timeout.Source.swift",
        "Properties/Sources/Headers/Timeout/Models/UnitTime.swift",
        "Properties/Sources/Headers/Timeout/Timeout.swift",
        "Properties/Sources/Payloads/Charset/CharsetEnvironmentKey.swift",
        "Properties/Sources/Payloads/Charset/Models/Charset.swift",
        "Properties/Sources/Payloads/Form Group/FormGroup.swift",
        "Properties/Sources/Payloads/Form Group/Models/FormGroupBuilder.swift",
        "Properties/Sources/Payloads/Form Group/Models/FormItem.swift",
        "Properties/Sources/Payloads/Form Group/Models/FormNode.swift",
        "Properties/Sources/Payloads/Form/Form.swift",
        "Properties/Sources/Payloads/Payload Part Length/PayloadPartLength.swift",
        "Properties/Sources/Payloads/Payload/Models/ContentType.swift",
        "Properties/Sources/Payloads/Payload/Models/DataPayloadFactory.swift",
        "Properties/Sources/Payloads/Payload/Models/EncodablePayloadFactory.swift",
        "Properties/Sources/Payloads/Payload/Models/EncodingPayloadError.swift",
        "Properties/Sources/Payloads/Payload/Models/FilePayloadFactory.swift",
        "Properties/Sources/Payloads/Payload/Models/JSONPayloadFactory.swift",
        "Properties/Sources/Payloads/Payload/Models/PayloadFactory.swift",
        "Properties/Sources/Payloads/Payload/Models/PayloadNode.swift",
        "Properties/Sources/Payloads/Payload/Models/StringPayloadFactory.swift",
        "Properties/Sources/Payloads/Payload/Payload.swift",
        "Properties/Sources/Property.swift",
        "Properties/Sources/Result Builder/Either/_EitherContent.swift",
        "Properties/Sources/Result Builder/Optional/_OptionalContent.swift",
        "Properties/Sources/Result Builder/Partial/_PartialContent.swift",
        "Properties/Sources/Result Builder/Property Builder/PropertyBuilder.swift",
        "Properties/Sources/Secure Connection/Additional Trusts/AdditionalTrusts.swift",
        "Properties/Sources/Secure Connection/Certificate/Certificate.swift",
        "Properties/Sources/Secure Connection/Certificate/Models/CertificateNode.swift",
        "Properties/Sources/Secure Connection/Certificate/Models/CertificateProperty.swift",
        "Properties/Sources/Secure Connection/Certificate/Models/CertificatePropertyKey.swift",
        "Properties/Sources/Secure Connection/Certificates/Certificates.swift",
        "Properties/Sources/Secure Connection/PSK/PSKIdentity.swift",
        "Properties/Sources/Secure Connection/Private Key/PrivateKey.swift",
        "Properties/Sources/Secure Connection/Secure Connection/Models/CertificateVerification.swift",
        "Properties/Sources/Secure Connection/Secure Connection/Models/RenegotiationSupport.swift",
        "Properties/Sources/Secure Connection/Secure Connection/Models/SecureConnectionNode.swift",
        "Properties/Sources/Secure Connection/Secure Connection/Models/SignatureAlgorithm.swift",
        "Properties/Sources/Secure Connection/Secure Connection/Models/TLSCipher.swift",
        "Properties/Sources/Secure Connection/Secure Connection/Models/TLSVersion.swift",
        "Properties/Sources/Secure Connection/Secure Connection/SecureConnection.swift",
        "Properties/Sources/Secure Connection/Trusts/DefaultTrusts.swift",
        "Properties/Sources/Secure Connection/Trusts/Trusts.swift",
        "Properties/Sources/URL/Path/Path.swift",
        "Properties/Sources/URL/Query Group/Models/QueryNode.swift",
        "Properties/Sources/URL/Query Group/QueryGroup.swift",
        "Properties/Sources/URL/Query/Models/QueryItem.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLEncoder.ArrayEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLEncoder.BoolEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLEncoder.DataEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLEncoder.DateEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLEncoder.DictionaryEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLEncoder.KeyEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLEncoder.OptionalEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLEncoder.WhitespaceEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/Strategies/URLSingleEncodingStrategy.swift",
        "Properties/Sources/URL/Query/Models/URLEncoder.Encoder.swift",
        "Properties/Sources/URL/Query/Models/URLEncoder.KeyContainer.swift",
        "Properties/Sources/URL/Query/Models/URLEncoder.ValueContainer.swift",
        "Properties/Sources/URL/Query/Models/URLEncoder.swift",
        "Properties/Sources/URL/Query/Models/URLEncoderEnvironmentKey.swift",
        "Properties/Sources/URL/Query/Models/URLEncoderError.swift",
        "Properties/Sources/URL/Query/Query.swift",
        "Properties/Sources/URL/URL/BaseURL.swift",
        "Properties/Sources/URL/URL/Models/BaseURLError.swift",
        "Properties/Sources/URL/URL/Models/URLScheme.swift",
        "Properties/Sources/Value/Dynamic Value/DynamicValue.swift",
        "Properties/Sources/Value/Dynamic Value/Model/DynamicValueDeepSearch.swift",
        "Properties/Sources/Value/Dynamic Value/Model/DynamicValueMirror.swift",
        "Properties/Sources/Value/Dynamic Value/Model/GraphOperation.swift",
        "Properties/Sources/Value/Dynamic Value/Model/GraphProperties.swift",
        "Properties/Sources/Value/Dynamic Value/Model/GraphValueOperation.swift",
        "Properties/Sources/Value/Dynamic Value/Model/Seed.swift",
        "Properties/Sources/Value/Dynamic Value/Model/SeedFactory.swift",
        "Properties/Sources/Value/Namespace/Models/GraphNamespaceOperation.swift",
        "Properties/Sources/Value/Namespace/Models/Namespace.ID.swift",
        "Properties/Sources/Value/Namespace/PropertyNamespace.swift",
        "Properties/Sources/Value/Stored Object/Models/DynamicStoredObject.swift",
        "Properties/Sources/Value/Stored Object/Models/GraphStoredObjectOperation.swift",
        "Properties/Sources/Value/Stored Object/Models/StoredObjectConfiguration.swift",
        "Properties/Sources/Value/Stored Object/StoredObject.swift",
        "Properties/Sources/Value/_Container/_Container.swift",
        "Tasks/Extensions/Task+Methods.swift",
        "Tasks/Sources/Interceptors/Breakpoint/Interceptors.Breakpoint.swift",
        "Tasks/Sources/Interceptors/Detach/Interceptors.Detach.swift",
        "Tasks/Sources/Interceptors/Interceptors.swift",
        "Tasks/Sources/Interceptors/Log In Console/Interceptors.LogInConsole.swift",
        "Tasks/Sources/Modifiers/Accept Only Status Code/Modifiers.AcceptOnlyStatusCode.swift",
        "Tasks/Sources/Modifiers/Collect Bytes/Modifiers.CollectBytes.swift",
        "Tasks/Sources/Modifiers/Collect Data/Modifiers.CollectData.swift",
        "Tasks/Sources/Modifiers/Decode/Modifiers.Decode.swift",
        "Tasks/Sources/Modifiers/Environment/Modifiers.Environment.swift",
        "Tasks/Sources/Modifiers/Extract Payload/Modifiers.ExtractPayload.swift",
        "Tasks/Sources/Modifiers/Flat Map Error/Modifiers.FlatMapError.swift",
        "Tasks/Sources/Modifiers/Flat Map/Modifiers.FlatMap.swift",
        "Tasks/Sources/Modifiers/Ignores Progress/Modifiers.IgnoresProgress.swift",
        "Tasks/Sources/Modifiers/Key Path/Models/AbstractKeyPath.swift",
        "Tasks/Sources/Modifiers/Key Path/Models/KeyPathInvalidDataError.swift",
        "Tasks/Sources/Modifiers/Key Path/Models/KeyPathNotFound.swift",
        "Tasks/Sources/Modifiers/Key Path/Modifiers.KeyPath.swift",
        "Tasks/Sources/Modifiers/Logger/Extensions/Logging+.swift",
        "Tasks/Sources/Modifiers/Logger/Models/LoggerPropertyEnvironmentKey.swift",
        "Tasks/Sources/Modifiers/Logger/Models/LoggerTaskEnvironmentKey.swift",
        "Tasks/Sources/Modifiers/Logger/Modifiers.Logger.swift",
        "Tasks/Sources/Modifiers/Map Error/Modifiers.MapError.swift",
        "Tasks/Sources/Modifiers/Map/Modifiers.Map.swift",
        "Tasks/Sources/Modifiers/Modifiers.swift",
        "Tasks/Sources/Modifiers/On Status Code/Models/InvalidStatusCodeError.swift",
        "Tasks/Sources/Modifiers/On Status Code/Models/StatusCode.swift",
        "Tasks/Sources/Modifiers/On Status Code/Models/StatusCodeSet.swift",
        "Tasks/Sources/Modifiers/On Status Code/Modifiers.OnStatusCode.swift",
        "Tasks/Sources/Modifiers/Progress/Extensions/AsyncBytes+Collect.swift",
        "Tasks/Sources/Modifiers/Progress/Extensions/AsyncResponse+Collect.swift",
        "Tasks/Sources/Modifiers/Progress/Models/DownloadProgress.swift",
        "Tasks/Sources/Modifiers/Progress/Models/Progress.swift",
        "Tasks/Sources/Modifiers/Progress/Models/UploadProgress.swift",
        "Tasks/Sources/Modifiers/Progress/Modifiers.Progress.swift",
        "Tasks/Sources/Other Tasks/Any/AnyTask.swift",
        "Tasks/Sources/Other Tasks/Group/GroupTask.swift",
        "Tasks/Sources/Other Tasks/Published/PublishedTask.swift",
        "Tasks/Sources/Raw Task/Data/DataTask.swift",
        "Tasks/Sources/Raw Task/Data/Models/TaskError.swift",
        "Tasks/Sources/Raw Task/Data/Models/TaskResult.swift",
        "Tasks/Sources/Raw Task/Download/DownloadTask.swift",
        "Tasks/Sources/Raw Task/Download/Models/AsyncBytes.swift",
        "Tasks/Sources/Raw Task/Mocked/MockedTask.swift",
        "Tasks/Sources/Raw Task/Mocked/Models/MockedTaskPayload.swift",
        "Tasks/Sources/Raw Task/Mocked/Models/PropertyMockedTask.swift",
        "Tasks/Sources/Raw Task/Raw/Models/EmptyResponseError.swift",
        "Tasks/Sources/Raw Task/Raw/RawTask.swift",
        "Tasks/Sources/Raw Task/Upload/Models/AsyncResponse.swift",
        "Tasks/Sources/Raw Task/Upload/Models/DownloadStep.swift",
        "Tasks/Sources/Raw Task/Upload/Models/HTTPHeaders.swift",
        "Tasks/Sources/Raw Task/Upload/Models/ResponseHead.swift",
        "Tasks/Sources/Raw Task/Upload/Models/ResponseStep.swift",
        "Tasks/Sources/Raw Task/Upload/Models/UploadStep.swift",
        "Tasks/Sources/Raw Task/Upload/UploadTask.swift",
        "Tasks/Sources/Request Task/Request Task/Models/RequestTaskInternals.swift",
        "Tasks/Sources/Request Task/Request Task/Models/TaskEnvironmentKey.swift",
        "Tasks/Sources/Request Task/Request Task/Models/TaskEnvironmentValues.swift",
        "Tasks/Sources/Request Task/Request Task/RequestTask.swift",
        "Tasks/Sources/Request Task/Task Interceptor/InterceptedRequestTask.swift",
        "Tasks/Sources/Request Task/Task Interceptor/Models/RequestTaskInterceptor.swift",
        "Tasks/Sources/Request Task/Task Modifier/Models/RequestTaskModifier.swift",
        "Tasks/Sources/Request Task/Task Modifier/Models/_RequestTaskModifier_Content.swift",
        "Tasks/Sources/Request Task/Task Modifier/ModifiedRequestTask.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.