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 AutoGraph with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 7

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

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/remind101/AutoGraph.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/remind101/AutoGraph
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 9eb990a Merge pull request #130 from remind101/small-updates
Cloned https://github.com/remind101/AutoGraph.git
Revision (git rev-parse @):
9eb990a06b2b6e84bcab26afb60ea035afec685a
SUCCESS checkout https://github.com/remind101/AutoGraph.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/remind101/AutoGraph.git
Running build ...
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
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version-6F35C1178C84523A.txt
[6/63] Emitting module Alamofire
[7/66] Compiling JSONValueRX Utilities.swift
[8/66] Compiling JSONValueRX JSON.swift
[9/66] Emitting module JSONValueRX
[10/66] Compiling JSONValueRX JSONable.swift
[11/66] Compiling Alamofire StringEncoding+Alamofire.swift
[12/66] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[13/66] Compiling Alamofire URLEncodedFormEncoder.swift
[14/66] Compiling Alamofire ParameterEncoder.swift
[15/66] Compiling Alamofire ParameterEncoding.swift
[16/66] Compiling Alamofire Protected.swift
[17/66] Compiling Alamofire RedirectHandler.swift
[18/66] Compiling Alamofire MultipartUpload.swift
[19/66] Compiling Alamofire NetworkReachabilityManager.swift
[20/66] Compiling Alamofire Notifications.swift
[21/66] Compiling Alamofire OperationQueue+Alamofire.swift
[22/66] Compiling Alamofire ServerTrustEvaluation.swift
[23/66] Compiling Alamofire Session.swift
[24/66] Compiling Alamofire SessionDelegate.swift
[25/66] Compiling Alamofire Request.swift
[26/66] Compiling Alamofire RequestCompression.swift
[27/66] Compiling Alamofire RequestInterceptor.swift
[28/66] Compiling Alamofire RequestTaskMap.swift
[29/66] Compiling Alamofire Response.swift
[30/66] Compiling Alamofire ResponseSerialization.swift
[31/66] Compiling Alamofire Result+Alamofire.swift
[32/66] Compiling Alamofire RetryPolicy.swift
[33/66] Compiling Alamofire CachedResponseHandler.swift
[34/66] Compiling Alamofire Combine.swift
[41/66] Emitting module Starscream
[42/66] Compiling Alamofire AlamofireExtended.swift
[43/66] Compiling Alamofire AuthenticationInterceptor.swift
[44/66] Compiling Alamofire AFError.swift
[45/66] Compiling Alamofire Alamofire.swift
[52/68] Compiling Alamofire URLRequest+Alamofire.swift
[53/68] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[54/68] Compiling Alamofire Validation.swift
[57/68] Compiling Starscream TCPTransport.swift
[58/68] Compiling Starscream Transport.swift
[63/68] Compiling Alamofire EventMonitor.swift
[64/68] Compiling Alamofire HTTPHeaders.swift
[65/68] Compiling Alamofire HTTPMethod.swift
[66/68] Compiling Alamofire MultipartFormData.swift
[69/83] Compiling AutoGraphQL Utilities.swift
[70/83] Compiling AutoGraphQL SubscriptionResponseHandler.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/SubscriptionResponseSerializer.swift:38:21: warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |                 let serializedObject = try JSONDecoder().decode(SerializedObject.self, from: data)
37 |                 DispatchQueue.main.async {
38 |                     completion(.success(serializedObject))
   |                     |- warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
39 |                 }
40 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/SubscriptionResponseSerializer.swift:38:21: warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |                 let serializedObject = try JSONDecoder().decode(SerializedObject.self, from: data)
37 |                 DispatchQueue.main.async {
38 |                     completion(.success(serializedObject))
   |                     |- warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
39 |                 }
40 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/SubscriptionResponseSerializer.swift:38:41: warning: capture of 'serializedObject' with non-sendable type 'SerializedObject' in a `@Sendable` closure; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     func serializeFinalObject<SerializedObject: Decodable>(data: Data, completion: @escaping (Result<SerializedObject, Error>) -> Void) {
   |                               `- note: consider making generic parameter 'SerializedObject' conform to the 'Sendable' protocol
34 |         self.queue.async {
35 |             do {
36 |                 let serializedObject = try JSONDecoder().decode(SerializedObject.self, from: data)
37 |                 DispatchQueue.main.async {
38 |                     completion(.success(serializedObject))
   |                                         `- warning: capture of 'serializedObject' with non-sendable type 'SerializedObject' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |                 }
40 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/SubscriptionResponseSerializer.swift:43:21: warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |             catch let error {
42 |                 DispatchQueue.main.async {
43 |                     completion(.failure(error))
   |                     |- warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
44 |                 }
45 |             }
[71/83] Compiling AutoGraphQL SubscriptionResponseSerializer.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/SubscriptionResponseSerializer.swift:38:21: warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |                 let serializedObject = try JSONDecoder().decode(SerializedObject.self, from: data)
37 |                 DispatchQueue.main.async {
38 |                     completion(.success(serializedObject))
   |                     |- warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
39 |                 }
40 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/SubscriptionResponseSerializer.swift:38:21: warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |                 let serializedObject = try JSONDecoder().decode(SerializedObject.self, from: data)
37 |                 DispatchQueue.main.async {
38 |                     completion(.success(serializedObject))
   |                     |- warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
39 |                 }
40 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/SubscriptionResponseSerializer.swift:38:41: warning: capture of 'serializedObject' with non-sendable type 'SerializedObject' in a `@Sendable` closure; this is an error in the Swift 6 language mode
31 |     }
32 |
33 |     func serializeFinalObject<SerializedObject: Decodable>(data: Data, completion: @escaping (Result<SerializedObject, Error>) -> Void) {
   |                               `- note: consider making generic parameter 'SerializedObject' conform to the 'Sendable' protocol
34 |         self.queue.async {
35 |             do {
36 |                 let serializedObject = try JSONDecoder().decode(SerializedObject.self, from: data)
37 |                 DispatchQueue.main.async {
38 |                     completion(.success(serializedObject))
   |                                         `- warning: capture of 'serializedObject' with non-sendable type 'SerializedObject' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |                 }
40 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/SubscriptionResponseSerializer.swift:43:21: warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |             catch let error {
42 |                 DispatchQueue.main.async {
43 |                     completion(.failure(error))
   |                     |- warning: capture of 'completion' with non-sendable type '(Result<SerializedObject, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
44 |                 }
45 |             }
[72/83] Compiling AutoGraphQL ResponseHandler.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:32:21: warning: capture of 'self' with non-sendable type 'ResponseHandler?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 3 | import JSONValueRX
 4 |
 5 | open class ResponseHandler {
   |            `- note: class 'ResponseHandler' does not conform to the 'Sendable' protocol
 6 |
 7 |     public struct ObjectKeyPathError: LocalizedError {
   :
30 |
31 |                 self.queue.addOperation { [weak self] in
32 |                     self?.map(json: json, response: response.response, objectBinding: objectBinding)
   |                     `- warning: capture of 'self' with non-sendable type 'ResponseHandler?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 |                 }
34 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:32:37: warning: capture of 'json' with non-sendable type 'JSONValue' in a `@Sendable` closure; this is an error in the Swift 6 language mode
30 |
31 |                 self.queue.addOperation { [weak self] in
32 |                     self?.map(json: json, response: response.response, objectBinding: objectBinding)
   |                                     `- warning: capture of 'json' with non-sendable type 'JSONValue' in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 |                 }
34 |             }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/JSONValue/Sources/JSON.swift:36:13: note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 34 | }
 35 |
 36 | public enum JSONValue: CustomStringConvertible, Hashable {
    |             `- note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 37 |     case array([JSONValue])
 38 |     case object([String: JSONValue])
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
 1 | import Alamofire
 2 | import Foundation
 3 | import JSONValueRX
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
 4 |
 5 | open class ResponseHandler {
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:32:53: warning: capture of 'response' with non-sendable type 'AFDataResponse<Any>' (aka 'DataResponse<Any, AFError>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
30 |
31 |                 self.queue.addOperation { [weak self] in
32 |                     self?.map(json: json, response: response.response, objectBinding: objectBinding)
   |                                                     `- warning: capture of 'response' with non-sendable type 'AFDataResponse<Any>' (aka 'DataResponse<Any, AFError>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 |                 }
34 |             }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/Response.swift:33:15: note: generic struct 'DataResponse' does not conform to the 'Sendable' protocol
 31 |
 32 | /// Type used to store all values associated with a serialized response of a `DataRequest` or `UploadRequest`.
 33 | public struct DataResponse<Success, Failure: Error> {
    |               `- note: generic struct 'DataResponse' does not conform to the 'Sendable' protocol
 34 |     /// The URL request sent to the server.
 35 |     public let request: URLRequest?
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Alamofire'
 1 | import Alamofire
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Alamofire'
 2 | import Foundation
 3 | import JSONValueRX
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:32:87: warning: capture of 'objectBinding' with non-sendable type 'ObjectBinding<SerializedObject>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
30 |
31 |                 self.queue.addOperation { [weak self] in
32 |                     self?.map(json: json, response: response.response, objectBinding: objectBinding)
   |                                                                                       `- warning: capture of 'objectBinding' with non-sendable type 'ObjectBinding<SerializedObject>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 |                 }
34 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/Request.swift:41:13: note: consider making generic enum 'ObjectBinding' conform to the 'Sendable' protocol
 39 |
 40 | /// A weird enum that collects info for a request.
 41 | public enum ObjectBinding<SerializedObject: Decodable> {
    |             `- note: consider making generic enum 'ObjectBinding' conform to the 'Sendable' protocol
 42 |     case object(keyPath: String, isRequestIncludingNetworkResponse: Bool, completion: RequestCompletion<SerializedObject>)
 43 | }
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:74:25: warning: capture of 'completion' with non-sendable type 'RequestCompletion<SerializedObject>' (aka '(Result<SerializedObject, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
72 |
73 |                     self.callbackQueue.addOperation {
74 |                         completion(.success(object))
   |                         |- warning: capture of 'completion' with non-sendable type 'RequestCompletion<SerializedObject>' (aka '(Result<SerializedObject, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
75 |                     }
76 |                 }
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:74:45: warning: capture of 'object' with non-sendable type 'SerializedObject' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |     }
39 |
40 |     private func map<SerializedObject: Decodable>(json: JSONValue, response: HTTPURLResponse?, objectBinding: ObjectBinding<SerializedObject>) {
   |                      `- note: consider making generic parameter 'SerializedObject' conform to the 'Sendable' protocol
41 |             do {
42 |                 switch objectBinding {
   :
72 |
73 |                     self.callbackQueue.addOperation {
74 |                         completion(.success(object))
   |                                             `- warning: capture of 'object' with non-sendable type 'SerializedObject' in a `@Sendable` closure; this is an error in the Swift 6 language mode
75 |                     }
76 |                 }
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:87:13: warning: capture of 'completion' with non-sendable type 'RequestCompletion<R>' (aka '(Result<R, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
85 |     func fail<R>(error: Error, completion: @escaping RequestCompletion<R>) {
86 |         self.callbackQueue.addOperation {
87 |             completion(.failure(error))
   |             |- warning: capture of 'completion' with non-sendable type 'RequestCompletion<R>' (aka '(Result<R, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
88 |         }
89 |     }
[73/83] Compiling AutoGraphQL SubscriptionRequest.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:32:21: warning: capture of 'self' with non-sendable type 'ResponseHandler?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 3 | import JSONValueRX
 4 |
 5 | open class ResponseHandler {
   |            `- note: class 'ResponseHandler' does not conform to the 'Sendable' protocol
 6 |
 7 |     public struct ObjectKeyPathError: LocalizedError {
   :
30 |
31 |                 self.queue.addOperation { [weak self] in
32 |                     self?.map(json: json, response: response.response, objectBinding: objectBinding)
   |                     `- warning: capture of 'self' with non-sendable type 'ResponseHandler?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 |                 }
34 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:32:37: warning: capture of 'json' with non-sendable type 'JSONValue' in a `@Sendable` closure; this is an error in the Swift 6 language mode
30 |
31 |                 self.queue.addOperation { [weak self] in
32 |                     self?.map(json: json, response: response.response, objectBinding: objectBinding)
   |                                     `- warning: capture of 'json' with non-sendable type 'JSONValue' in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 |                 }
34 |             }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/JSONValue/Sources/JSON.swift:36:13: note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 34 | }
 35 |
 36 | public enum JSONValue: CustomStringConvertible, Hashable {
    |             `- note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 37 |     case array([JSONValue])
 38 |     case object([String: JSONValue])
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
 1 | import Alamofire
 2 | import Foundation
 3 | import JSONValueRX
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
 4 |
 5 | open class ResponseHandler {
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:32:53: warning: capture of 'response' with non-sendable type 'AFDataResponse<Any>' (aka 'DataResponse<Any, AFError>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
30 |
31 |                 self.queue.addOperation { [weak self] in
32 |                     self?.map(json: json, response: response.response, objectBinding: objectBinding)
   |                                                     `- warning: capture of 'response' with non-sendable type 'AFDataResponse<Any>' (aka 'DataResponse<Any, AFError>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 |                 }
34 |             }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/Response.swift:33:15: note: generic struct 'DataResponse' does not conform to the 'Sendable' protocol
 31 |
 32 | /// Type used to store all values associated with a serialized response of a `DataRequest` or `UploadRequest`.
 33 | public struct DataResponse<Success, Failure: Error> {
    |               `- note: generic struct 'DataResponse' does not conform to the 'Sendable' protocol
 34 |     /// The URL request sent to the server.
 35 |     public let request: URLRequest?
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Alamofire'
 1 | import Alamofire
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Alamofire'
 2 | import Foundation
 3 | import JSONValueRX
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:32:87: warning: capture of 'objectBinding' with non-sendable type 'ObjectBinding<SerializedObject>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
30 |
31 |                 self.queue.addOperation { [weak self] in
32 |                     self?.map(json: json, response: response.response, objectBinding: objectBinding)
   |                                                                                       `- warning: capture of 'objectBinding' with non-sendable type 'ObjectBinding<SerializedObject>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
33 |                 }
34 |             }
/Users/admin/builder/spi-builder-workspace/AutoGraph/Request.swift:41:13: note: consider making generic enum 'ObjectBinding' conform to the 'Sendable' protocol
 39 |
 40 | /// A weird enum that collects info for a request.
 41 | public enum ObjectBinding<SerializedObject: Decodable> {
    |             `- note: consider making generic enum 'ObjectBinding' conform to the 'Sendable' protocol
 42 |     case object(keyPath: String, isRequestIncludingNetworkResponse: Bool, completion: RequestCompletion<SerializedObject>)
 43 | }
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:74:25: warning: capture of 'completion' with non-sendable type 'RequestCompletion<SerializedObject>' (aka '(Result<SerializedObject, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
72 |
73 |                     self.callbackQueue.addOperation {
74 |                         completion(.success(object))
   |                         |- warning: capture of 'completion' with non-sendable type 'RequestCompletion<SerializedObject>' (aka '(Result<SerializedObject, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                         `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
75 |                     }
76 |                 }
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:74:45: warning: capture of 'object' with non-sendable type 'SerializedObject' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |     }
39 |
40 |     private func map<SerializedObject: Decodable>(json: JSONValue, response: HTTPURLResponse?, objectBinding: ObjectBinding<SerializedObject>) {
   |                      `- note: consider making generic parameter 'SerializedObject' conform to the 'Sendable' protocol
41 |             do {
42 |                 switch objectBinding {
   :
72 |
73 |                     self.callbackQueue.addOperation {
74 |                         completion(.success(object))
   |                                             `- warning: capture of 'object' with non-sendable type 'SerializedObject' in a `@Sendable` closure; this is an error in the Swift 6 language mode
75 |                     }
76 |                 }
/Users/admin/builder/spi-builder-workspace/AutoGraph/ResponseHandler.swift:87:13: warning: capture of 'completion' with non-sendable type 'RequestCompletion<R>' (aka '(Result<R, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
85 |     func fail<R>(error: Error, completion: @escaping RequestCompletion<R>) {
86 |         self.callbackQueue.addOperation {
87 |             completion(.failure(error))
   |             |- warning: capture of 'completion' with non-sendable type 'RequestCompletion<R>' (aka '(Result<R, any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
88 |         }
89 |     }
[74/83] Compiling AutoGraphQL AlamofireClient.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/AlamofireClient.swift:56:14: warning: 'responseJSON(queue:dataPreprocessor:emptyResponseCodes:emptyRequestMethods:options:completionHandler:)' is deprecated: responseJSON deprecated and will be removed in Alamofire 6. Use responseDecodable instead.
54 |             encoding: JSONEncoding.default,
55 |             headers: HTTPHeaders(self.httpHeaders))
56 |             .responseJSON(completionHandler: completion)
   |              `- warning: 'responseJSON(queue:dataPreprocessor:emptyResponseCodes:emptyRequestMethods:options:completionHandler:)' is deprecated: responseJSON deprecated and will be removed in Alamofire 6. Use responseDecodable instead.
57 |     }
58 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:43:23: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
41 |     public static let patch = HTTPMethod(rawValue: "PATCH")
42 |     /// `POST` method.
43 |     public static let post = HTTPMethod(rawValue: "POST")
   |                       |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'post' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     /// `PUT` method.
45 |     public static let put = HTTPMethod(rawValue: "PUT")
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:105:36: warning: capture of 'self' with non-sendable type 'AuthHandler?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 18 | // move some of this into AlamofireClient eventually.
 19 |
 20 | public class AuthHandler: RequestInterceptor {
    |              `- note: class 'AuthHandler' does not conform to the 'Sendable' protocol
 21 |     private typealias RequestRetryCompletion = (RetryResult) -> Void
 22 |
    :
103 |
104 |         DispatchQueue.main.async { [weak self] in
105 |             guard let strongSelf = self else { return }
    |                                    `- warning: capture of 'self' with non-sendable type 'AuthHandler?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
106 |
107 |             strongSelf.delegate?.authHandlerBeganReauthentication(strongSelf)
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:105:36: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
103 |
104 |         DispatchQueue.main.async { [weak self] in
105 |             guard let strongSelf = self else { return }
    |                                    |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                    `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
106 |
107 |             strongSelf.delegate?.authHandlerBeganReauthentication(strongSelf)
[75/83] Compiling AutoGraphQL AuthHandler.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/AlamofireClient.swift:56:14: warning: 'responseJSON(queue:dataPreprocessor:emptyResponseCodes:emptyRequestMethods:options:completionHandler:)' is deprecated: responseJSON deprecated and will be removed in Alamofire 6. Use responseDecodable instead.
54 |             encoding: JSONEncoding.default,
55 |             headers: HTTPHeaders(self.httpHeaders))
56 |             .responseJSON(completionHandler: completion)
   |              `- warning: 'responseJSON(queue:dataPreprocessor:emptyResponseCodes:emptyRequestMethods:options:completionHandler:)' is deprecated: responseJSON deprecated and will be removed in Alamofire 6. Use responseDecodable instead.
57 |     }
58 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:43:23: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
41 |     public static let patch = HTTPMethod(rawValue: "PATCH")
42 |     /// `POST` method.
43 |     public static let post = HTTPMethod(rawValue: "POST")
   |                       |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'post' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     /// `PUT` method.
45 |     public static let put = HTTPMethod(rawValue: "PUT")
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:105:36: warning: capture of 'self' with non-sendable type 'AuthHandler?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 18 | // move some of this into AlamofireClient eventually.
 19 |
 20 | public class AuthHandler: RequestInterceptor {
    |              `- note: class 'AuthHandler' does not conform to the 'Sendable' protocol
 21 |     private typealias RequestRetryCompletion = (RetryResult) -> Void
 22 |
    :
103 |
104 |         DispatchQueue.main.async { [weak self] in
105 |             guard let strongSelf = self else { return }
    |                                    `- warning: capture of 'self' with non-sendable type 'AuthHandler?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
106 |
107 |             strongSelf.delegate?.authHandlerBeganReauthentication(strongSelf)
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:105:36: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
103 |
104 |         DispatchQueue.main.async { [weak self] in
105 |             guard let strongSelf = self else { return }
    |                                    |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                                    `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
106 |
107 |             strongSelf.delegate?.authHandlerBeganReauthentication(strongSelf)
[76/83] Compiling AutoGraphQL WebSocketClient.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/WebSocketClient.swift:207:30: warning: capture of 'self' with non-sendable type 'WebSocketClient?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 36 | }
 37 |
 38 | open class WebSocketClient {
    |            `- note: class 'WebSocketClient' does not conform to the 'Sendable' protocol
 39 |     public enum State: Equatable {
 40 |         case connecting
    :
205 |         let delayInSeconds = DispatchTimeInterval.seconds(min(abs(kAttemptReconnectCount - self.attemptReconnectCount) * 10, 30))
206 |         DispatchQueue.main.asyncAfter(deadline: .now() + delayInSeconds) { [weak self] in
207 |             guard let self = self else { return }
    |                              `- warning: capture of 'self' with non-sendable type 'WebSocketClient?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
208 |             self.performReconnect()
209 |         }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:35:23: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
33 |     public static let delete = HTTPMethod(rawValue: "DELETE")
34 |     /// `GET` method.
35 |     public static let get = HTTPMethod(rawValue: "GET")
   |                       |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'get' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     /// `HEAD` method.
37 |     public static let head = HTTPMethod(rawValue: "HEAD")
/Users/admin/builder/spi-builder-workspace/AutoGraph/WebSocketClient.swift:207:30: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
205 |         let delayInSeconds = DispatchTimeInterval.seconds(min(abs(kAttemptReconnectCount - self.attemptReconnectCount) * 10, 30))
206 |         DispatchQueue.main.asyncAfter(deadline: .now() + delayInSeconds) { [weak self] in
207 |             guard let self = self else { return }
    |                              |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
208 |             self.performReconnect()
209 |         }
[77/83] Compiling AutoGraphQL FoundationExtensions.swift
/Users/admin/builder/spi-builder-workspace/QueryBuilder/FoundationExtensions.swift:5:10: warning: associated value 'incorrectArgumentKey(key:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  3 |
  4 | enum QueryBuilderError: LocalizedError {
  5 |     case incorrectArgumentKey(key: Any)
    |          `- warning: associated value 'incorrectArgumentKey(key:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  6 |     case incorrectArgumentValue(value: Any)
  7 |     case incorrectInputType(message: String)
/Users/admin/builder/spi-builder-workspace/QueryBuilder/FoundationExtensions.swift:6:10: warning: associated value 'incorrectArgumentValue(value:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  4 | enum QueryBuilderError: LocalizedError {
  5 |     case incorrectArgumentKey(key: Any)
  6 |     case incorrectArgumentValue(value: Any)
    |          `- warning: associated value 'incorrectArgumentValue(value:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  7 |     case incorrectInputType(message: String)
  8 |     case missingFields(selectionSetName: String)
/Users/admin/builder/spi-builder-workspace/QueryBuilder/FoundationExtensions.swift:9:10: warning: associated value 'selectionMergeFailure(selection1:selection2:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Selection'; this is an error in the Swift 6 language mode
  7 |     case incorrectInputType(message: String)
  8 |     case missingFields(selectionSetName: String)
  9 |     case selectionMergeFailure(selection1: Selection, selection2: Selection)
    |          `- warning: associated value 'selectionMergeFailure(selection1:selection2:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Selection'; this is an error in the Swift 6 language mode
 10 |
 11 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/QueryBuilder/QueryDSL.swift:258:13: note: consider making enum 'Selection' conform to the 'Sendable' protocol
256 |
257 | /// Concretely represents a _Selection_ from the GraphQL Language.
258 | public enum Selection: ObjectSerializable, InlineFragmentSerializable, SelectionType {
    |             `- note: consider making enum 'Selection' conform to the 'Sendable' protocol
259 |     public enum FieldType {
260 |         case scalar
/Users/admin/builder/spi-builder-workspace/QueryBuilder/FoundationExtensions.swift:9:10: warning: associated value 'selectionMergeFailure(selection1:selection2:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Selection'; this is an error in the Swift 6 language mode
  7 |     case incorrectInputType(message: String)
  8 |     case missingFields(selectionSetName: String)
  9 |     case selectionMergeFailure(selection1: Selection, selection2: Selection)
    |          `- warning: associated value 'selectionMergeFailure(selection1:selection2:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Selection'; this is an error in the Swift 6 language mode
 10 |
 11 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/QueryBuilder/QueryDSL.swift:258:13: note: consider making enum 'Selection' conform to the 'Sendable' protocol
256 |
257 | /// Concretely represents a _Selection_ from the GraphQL Language.
258 | public enum Selection: ObjectSerializable, InlineFragmentSerializable, SelectionType {
    |             `- note: consider making enum 'Selection' conform to the 'Sendable' protocol
259 |     public enum FieldType {
260 |         case scalar
[78/83] Compiling AutoGraphQL AutoGraph.swift
[79/83] Compiling AutoGraphQL Dispatcher.swift
[80/83] Emitting module AutoGraphQL
/Users/admin/builder/spi-builder-workspace/AutoGraph/Errors.swift:120:16: warning: stored property 'locations' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type '[GraphQLError.Location]'; this is an error in the Swift 6 language mode
 95 | public struct GraphQLError: LocalizedError, Equatable {
 96 |
 97 |     public struct Location: CustomStringConvertible, Equatable {
    |                   `- note: consider making struct 'Location' conform to the 'Sendable' protocol
 98 |         public let line: Int
 99 |         public let column: Int
    :
118 |
119 |     public let message: String
120 |     public let locations: [Location]
    |                `- warning: stored property 'locations' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type '[GraphQLError.Location]'; this is an error in the Swift 6 language mode
121 |     public let jsonPayload: JSONValue
122 |
/Users/admin/builder/spi-builder-workspace/AutoGraph/Errors.swift:121:16: warning: stored property 'jsonPayload' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type 'JSONValue'; this is an error in the Swift 6 language mode
119 |     public let message: String
120 |     public let locations: [Location]
121 |     public let jsonPayload: JSONValue
    |                `- warning: stored property 'jsonPayload' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type 'JSONValue'; this is an error in the Swift 6 language mode
122 |
123 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/JSONValue/Sources/JSON.swift:36:13: note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 34 | }
 35 |
 36 | public enum JSONValue: CustomStringConvertible, Hashable {
    |             `- note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 37 |     case array([JSONValue])
 38 |     case object([String: JSONValue])
/Users/admin/builder/spi-builder-workspace/AutoGraph/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
  1 | import Foundation
  2 | import JSONValueRX
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
  3 |
  4 | /*
/Users/admin/builder/spi-builder-workspace/AutoGraph/WebSocketError.swift:6:10: warning: associated value 'subscriptionPayloadFailedSerialization(_:underlyingError:)' of 'Sendable'-conforming enum 'WebSocketError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 4 |     case webSocketNotConnected(subscriptionPayload: String)
 5 |     case subscriptionRequestBodyFailed(operationName: String)
 6 |     case subscriptionPayloadFailedSerialization([String : Any], underlyingError: Error?)
   |          `- warning: associated value 'subscriptionPayloadFailedSerialization(_:underlyingError:)' of 'Sendable'-conforming enum 'WebSocketError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 7 |
 8 |     public var localizedDescription: String {
/Users/admin/builder/spi-builder-workspace/QueryBuilder/FoundationExtensions.swift:5:10: warning: associated value 'incorrectArgumentKey(key:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  3 |
  4 | enum QueryBuilderError: LocalizedError {
  5 |     case incorrectArgumentKey(key: Any)
    |          `- warning: associated value 'incorrectArgumentKey(key:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  6 |     case incorrectArgumentValue(value: Any)
  7 |     case incorrectInputType(message: String)
/Users/admin/builder/spi-builder-workspace/QueryBuilder/FoundationExtensions.swift:6:10: warning: associated value 'incorrectArgumentValue(value:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  4 | enum QueryBuilderError: LocalizedError {
  5 |     case incorrectArgumentKey(key: Any)
  6 |     case incorrectArgumentValue(value: Any)
    |          `- warning: associated value 'incorrectArgumentValue(value:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  7 |     case incorrectInputType(message: String)
  8 |     case missingFields(selectionSetName: String)
/Users/admin/builder/spi-builder-workspace/QueryBuilder/FoundationExtensions.swift:9:10: warning: associated value 'selectionMergeFailure(selection1:selection2:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Selection'; this is an error in the Swift 6 language mode
  7 |     case incorrectInputType(message: String)
  8 |     case missingFields(selectionSetName: String)
  9 |     case selectionMergeFailure(selection1: Selection, selection2: Selection)
    |          `- warning: associated value 'selectionMergeFailure(selection1:selection2:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Selection'; this is an error in the Swift 6 language mode
 10 |
 11 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/QueryBuilder/QueryDSL.swift:258:13: note: consider making enum 'Selection' conform to the 'Sendable' protocol
256 |
257 | /// Concretely represents a _Selection_ from the GraphQL Language.
258 | public enum Selection: ObjectSerializable, InlineFragmentSerializable, SelectionType {
    |             `- note: consider making enum 'Selection' conform to the 'Sendable' protocol
259 |     public enum FieldType {
260 |         case scalar
/Users/admin/builder/spi-builder-workspace/QueryBuilder/FoundationExtensions.swift:9:10: warning: associated value 'selectionMergeFailure(selection1:selection2:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Selection'; this is an error in the Swift 6 language mode
  7 |     case incorrectInputType(message: String)
  8 |     case missingFields(selectionSetName: String)
  9 |     case selectionMergeFailure(selection1: Selection, selection2: Selection)
    |          `- warning: associated value 'selectionMergeFailure(selection1:selection2:)' of 'Sendable'-conforming enum 'QueryBuilderError' has non-sendable type 'Selection'; this is an error in the Swift 6 language mode
 10 |
 11 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/QueryBuilder/QueryDSL.swift:258:13: note: consider making enum 'Selection' conform to the 'Sendable' protocol
256 |
257 | /// Concretely represents a _Selection_ from the GraphQL Language.
258 | public enum Selection: ObjectSerializable, InlineFragmentSerializable, SelectionType {
    |             `- note: consider making enum 'Selection' conform to the 'Sendable' protocol
259 |     public enum FieldType {
260 |         case scalar
[81/83] Compiling AutoGraphQL WebSocketError.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/WebSocketError.swift:6:10: warning: associated value 'subscriptionPayloadFailedSerialization(_:underlyingError:)' of 'Sendable'-conforming enum 'WebSocketError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 4 |     case webSocketNotConnected(subscriptionPayload: String)
 5 |     case subscriptionRequestBodyFailed(operationName: String)
 6 |     case subscriptionPayloadFailedSerialization([String : Any], underlyingError: Error?)
   |          `- warning: associated value 'subscriptionPayloadFailedSerialization(_:underlyingError:)' of 'Sendable'-conforming enum 'WebSocketError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
 7 |
 8 |     public var localizedDescription: String {
[82/83] Compiling AutoGraphQL Errors.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/Errors.swift:120:16: warning: stored property 'locations' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type '[GraphQLError.Location]'; this is an error in the Swift 6 language mode
 95 | public struct GraphQLError: LocalizedError, Equatable {
 96 |
 97 |     public struct Location: CustomStringConvertible, Equatable {
    |                   `- note: consider making struct 'Location' conform to the 'Sendable' protocol
 98 |         public let line: Int
 99 |         public let column: Int
    :
118 |
119 |     public let message: String
120 |     public let locations: [Location]
    |                `- warning: stored property 'locations' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type '[GraphQLError.Location]'; this is an error in the Swift 6 language mode
121 |     public let jsonPayload: JSONValue
122 |
/Users/admin/builder/spi-builder-workspace/AutoGraph/Errors.swift:121:16: warning: stored property 'jsonPayload' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type 'JSONValue'; this is an error in the Swift 6 language mode
119 |     public let message: String
120 |     public let locations: [Location]
121 |     public let jsonPayload: JSONValue
    |                `- warning: stored property 'jsonPayload' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type 'JSONValue'; this is an error in the Swift 6 language mode
122 |
123 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/JSONValue/Sources/JSON.swift:36:13: note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 34 | }
 35 |
 36 | public enum JSONValue: CustomStringConvertible, Hashable {
    |             `- note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 37 |     case array([JSONValue])
 38 |     case object([String: JSONValue])
/Users/admin/builder/spi-builder-workspace/AutoGraph/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
  1 | import Foundation
  2 | import JSONValueRX
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
  3 |
  4 | /*
[83/83] Compiling AutoGraphQL Request.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/Errors.swift:120:16: warning: stored property 'locations' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type '[GraphQLError.Location]'; this is an error in the Swift 6 language mode
 95 | public struct GraphQLError: LocalizedError, Equatable {
 96 |
 97 |     public struct Location: CustomStringConvertible, Equatable {
    |                   `- note: consider making struct 'Location' conform to the 'Sendable' protocol
 98 |         public let line: Int
 99 |         public let column: Int
    :
118 |
119 |     public let message: String
120 |     public let locations: [Location]
    |                `- warning: stored property 'locations' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type '[GraphQLError.Location]'; this is an error in the Swift 6 language mode
121 |     public let jsonPayload: JSONValue
122 |
/Users/admin/builder/spi-builder-workspace/AutoGraph/Errors.swift:121:16: warning: stored property 'jsonPayload' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type 'JSONValue'; this is an error in the Swift 6 language mode
119 |     public let message: String
120 |     public let locations: [Location]
121 |     public let jsonPayload: JSONValue
    |                `- warning: stored property 'jsonPayload' of 'Sendable'-conforming struct 'GraphQLError' has non-sendable type 'JSONValue'; this is an error in the Swift 6 language mode
122 |
123 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/JSONValue/Sources/JSON.swift:36:13: note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 34 | }
 35 |
 36 | public enum JSONValue: CustomStringConvertible, Hashable {
    |             `- note: enum 'JSONValue' does not conform to the 'Sendable' protocol
 37 |     case array([JSONValue])
 38 |     case object([String: JSONValue])
/Users/admin/builder/spi-builder-workspace/AutoGraph/Errors.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
  1 | import Foundation
  2 | import JSONValueRX
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'JSONValueRX'
  3 |
  4 | /*
[84/84] Compiling AutoGraphQL QueryDSL.swift
Build complete! (51.09s)
warning: 'spi-builder-workspace': /Users/admin/builder/spi-builder-workspace/Package.swift:21:10: warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
19 |         .package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMinor(from: "5.8.0")),
20 |         .package(url: "https://github.com/rexmas/JSONValue.git", .upToNextMinor(from: "7.2.0")),
21 |         .package(url: "https://github.com/daltoniam/Starscream.git", .exact("4.0.4"))
   |          `- warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
22 |     ],
23 |     targets: [
/Users/admin/builder/spi-builder-workspace/Package.swift:21:71: warning: 'exact' is deprecated
19 |         .package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMinor(from: "5.8.0")),
20 |         .package(url: "https://github.com/rexmas/JSONValue.git", .upToNextMinor(from: "7.2.0")),
21 |         .package(url: "https://github.com/daltoniam/Starscream.git", .exact("4.0.4"))
   |                                                                       `- warning: 'exact' is deprecated
22 |     ],
23 |     targets: [
Fetching https://github.com/rexmas/JSONValue.git
Fetching https://github.com/Alamofire/Alamofire.git
Fetching https://github.com/daltoniam/Starscream.git
[1/652] Fetching jsonvalue
[171/5520] Fetching jsonvalue, starscream
[1530/34300] Fetching jsonvalue, starscream, alamofire
Fetched https://github.com/daltoniam/Starscream.git from cache (2.73s)
Fetched https://github.com/Alamofire/Alamofire.git from cache (2.73s)
Fetched https://github.com/rexmas/JSONValue.git from cache (2.73s)
Computing version for https://github.com/daltoniam/Starscream.git
Computed https://github.com/daltoniam/Starscream.git at 4.0.4 (1.15s)
Computing version for https://github.com/rexmas/JSONValue.git
Computed https://github.com/rexmas/JSONValue.git at 7.2.0 (0.76s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.8.0 (0.64s)
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.8.0
Creating working copy for https://github.com/rexmas/JSONValue.git
Working copy of https://github.com/rexmas/JSONValue.git resolved at 7.2.0
Creating working copy for https://github.com/daltoniam/Starscream.git
Working copy of https://github.com/daltoniam/Starscream.git resolved at 4.0.4
warning: 'spi-builder-workspace': found 156 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Pods-AutoGraphQL-AutoGraphTests-frameworks.sh
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Pods-AutoGraphQL-QueryBuilderTests-dummy.m
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-QueryBuilder/Pods-QueryBuilder-acknowledgements.markdown
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-QueryBuilder/Pods-QueryBuilder-dummy.m
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Starscream/Starscream-prefix.pch
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/MultipartFormData.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Validation.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Compression/WSCompression.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL/Pods-AutoGraphQL-acknowledgements.markdown
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Starscream/Starscream-dummy.m
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/DispatcherTests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Concurrency.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/RedirectHandler.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Pods-AutoGraphQL-QueryBuilderTests-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL/Pods-AutoGraphQL-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Combine.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Pods-AutoGraphQL-AutoGraphTests-resources.sh
    /Users/admin/builder/spi-builder-workspace/Pods/JSONValueRX/Sources/JSONable.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Notifications.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/JSONValueRX/JSONValueRX-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-QueryBuilder/Pods-QueryBuilder-resources.sh
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/RequestInterceptor.swift
    /Users/admin/builder/spi-builder-workspace/README.md
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/StringEncoding+Alamofire.swift
    /Users/admin/builder/spi-builder-workspace/autograph.png
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Framer/HTTPHandler.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/JSONValueRX/JSONValueRX-dummy.m
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Engine/NativeEngine.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/HTTPMethod.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Security/FoundationSecurity.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Pods-AutoGraphQL-AutoGraphTests-dummy.m
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/LICENSE
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/CachedResponseHandler.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Session.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/OperationQueue+Alamofire.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Protected.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/RetryPolicy.swift
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/AutoGraphTests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Framer/FoundationHTTPHandler.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Starscream/Starscream-Info.plist
    /Users/admin/builder/spi-builder-workspace/LinuxMain.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Pods-AutoGraphQL-QueryBuilderTests.release.xcconfig
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Data/Film.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL/Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-QueryBuilder/OHHTTPStubs-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Pods-AutoGraphQL-AutoGraphTests-acknowledgements.markdown
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/NetworkReachabilityManager.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Pods-AutoGraphQL-QueryBuilderTests-acknowledgements.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Transport/TCPTransport.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/AuthenticationInterceptor.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/AFError.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/EventMonitor.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Server/Server.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Pods-AutoGraphQL-QueryBuilderTests-frameworks.sh
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/ResponseSerialization.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/JSONValueRX/Crust-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-QueryBuilder/Pods-QueryBuilder.release.xcconfig
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/AuthHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/RequestTaskMap.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Manifest.lock
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/XCTestManifests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-QueryBuilder/Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/JSONValueRX/Sources/Utilities.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Framer/StringHTTPHandler.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Alamofire/Alamofire-dummy.m
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL/Pods-AutoGraphQL-resources.sh
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Requests/FilmRequest.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/OHHTTPStubs-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Request.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Compression/Compression.swift
    /Users/admin/builder/spi-builder-workspace/QueryBuilderTests/QueryBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Framer/Framer.swift
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Requests/AllFilmsRequest.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL/Pods-AutoGraphQL-acknowledgements.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Pods-AutoGraphQL-AutoGraphTests-Info.plist
    /Users/admin/builder/spi-builder-workspace/codecov.yml
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Data/AllFilms.json
    /Users/admin/builder/spi-builder-workspace/Pods/JSONValueRX/README.md
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Server/WebSocketServer.swift
    /Users/admin/builder/spi-builder-workspace/Pods/JSONValueRX/LICENSE
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/JSONValueRX/JSONValueRX.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Realm-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/JSONValueRX/Sources/JSON.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/HTTPHeaders.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/ParameterEncoder.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Alamofire/Alamofire.debug.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/RequestCompression.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Alamofire/Alamofire.release.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Pods-AutoGraphQL-AutoGraphTests.debug.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-QueryBuilder/Pods-QueryBuilder-acknowledgements.plist
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/ErrorTests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/AlamofireExtended.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/JSONValueRX/JSONValueRX.release.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Pods-AutoGraphQL-QueryBuilderTests-acknowledgements.markdown
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Data/Film.json
    /Users/admin/builder/spi-builder-workspace/LICENSE
    /Users/admin/builder/spi-builder-workspace/Podfile
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/URLEncodedFormEncoder.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Security/Security.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL/Pods-AutoGraphQL-dummy.m
    /Users/admin/builder/spi-builder-workspace/Podfile.lock
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Alamofire/Crust-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL/Pods-AutoGraphQL.release.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Pods-AutoGraphQL-AutoGraphTests-acknowledgements.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/MultipartUpload.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/ServerTrustEvaluation.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Pods-AutoGraphQL-QueryBuilderTests.debug.xcconfig
    /Users/admin/builder/spi-builder-workspace/AutoGraph.podspec
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/JSONValueRX/JSONValueRX.debug.xcconfig
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Data/Film401.json
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Requests/FilmSubscriptionRequest.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Transport/Transport.swift
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/AlamofireClientTests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/SessionDelegate.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Alamofire/Alamofire-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Pods-AutoGraphQL-AutoGraphTests.release.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Starscream/Starscream.debug.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/DataBytes/Data+Extensions.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Framer/FoundationHTTPServerHandler.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Alamofire/Alamofire.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Engine/Engine.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Pods-AutoGraphQL-AutoGraphRealmTests-Info.plist
    /Users/admin/builder/spi-builder-workspace/QueryBuilderTests/FoundationExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Result+Alamofire.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Alamofire.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Starscream/WebSocket.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/Response.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/URLRequest+Alamofire.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/JSONValueRX/Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-AutoGraphTests/Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL/Pods-AutoGraphQL.debug.xcconfig
    /Users/admin/builder/spi-builder-workspace/QueryBuilderTests/Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/README.md
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/LICENSE
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Data/VariableFilm.json
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/Stub.swift
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/WebSocketClientTests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-AutoGraphQL-QueryBuilderTests/Pods-AutoGraphQL-QueryBuilderTests-resources.sh
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-QueryBuilder/Pods-QueryBuilder-Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Pods-QueryBuilder/Pods-QueryBuilder.debug.xcconfig
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Starscream/Starscream.release.xcconfig
    /Users/admin/builder/spi-builder-workspace/QueryBuilderTests/XCTestManifests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/README.md
    /Users/admin/builder/spi-builder-workspace/Pods/Alamofire/Source/ParameterEncoding.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Engine/WSEngine.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Transport/FoundationTransport.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Starscream/Sources/Framer/FrameCollector.swift
    /Users/admin/builder/spi-builder-workspace/AutoGraphTests/ResponseHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/Alamofire/Info.plist
    /Users/admin/builder/spi-builder-workspace/Pods/Target Support Files/JSONValueRX/JSONValueRX-prefix.pch
Build complete.
{
  "dependencies" : [
    {
      "identity" : "alamofire",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.8.0",
            "upper_bound" : "5.9.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Alamofire/Alamofire.git"
    },
    {
      "identity" : "jsonvalue",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "7.2.0",
            "upper_bound" : "7.3.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/rexmas/JSONValue.git"
    },
    {
      "identity" : "starscream",
      "requirement" : {
        "exact" : [
          "4.0.4"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/daltoniam/Starscream.git"
    }
  ],
  "manifest_display_name" : "AutoGraph",
  "name" : "AutoGraph",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "AutoGraphQL",
      "targets" : [
        "AutoGraphQL"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "QueryBuilderTests",
      "module_type" : "SwiftTarget",
      "name" : "QueryBuilderTests",
      "path" : "QueryBuilderTests",
      "sources" : [
        "FoundationExtensionsTests.swift",
        "QueryBuilderTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "AutoGraphQL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AutoGraphTests",
      "module_type" : "SwiftTarget",
      "name" : "AutoGraphTests",
      "path" : "AutoGraphTests",
      "sources" : [
        "AlamofireClientTests.swift",
        "AuthHandlerTests.swift",
        "AutoGraphTests.swift",
        "Data/Film.swift",
        "DispatcherTests.swift",
        "ErrorTests.swift",
        "Requests/AllFilmsRequest.swift",
        "Requests/FilmRequest.swift",
        "Requests/FilmSubscriptionRequest.swift",
        "ResponseHandlerTests.swift",
        "Stub.swift",
        "WebSocketClientTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "AutoGraphQL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AutoGraphQL",
      "module_type" : "SwiftTarget",
      "name" : "AutoGraphQL",
      "path" : ".",
      "product_dependencies" : [
        "Alamofire",
        "JSONValueRX",
        "Starscream"
      ],
      "product_memberships" : [
        "AutoGraphQL"
      ],
      "sources" : [
        "AutoGraph/AlamofireClient.swift",
        "AutoGraph/AuthHandler.swift",
        "AutoGraph/AutoGraph.swift",
        "AutoGraph/Dispatcher.swift",
        "AutoGraph/Errors.swift",
        "AutoGraph/Request.swift",
        "AutoGraph/ResponseHandler.swift",
        "AutoGraph/SubscriptionRequest.swift",
        "AutoGraph/SubscriptionResponseHandler.swift",
        "AutoGraph/SubscriptionResponseSerializer.swift",
        "AutoGraph/Utilities.swift",
        "AutoGraph/WebSocketClient.swift",
        "AutoGraph/WebSocketError.swift",
        "QueryBuilder/FoundationExtensions.swift",
        "QueryBuilder/QueryDSL.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
warning: 'spi-builder-workspace': /Users/admin/builder/spi-builder-workspace/Package.swift:21:10: warning: 'package(url:_:)' is deprecated: use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')
        .package(url: "https://github.com/daltoniam/Starscream.git", .exact("4.0.4"))
         ^
/Users/admin/builder/spi-builder-workspace/Package.swift:21:71: warning: 'exact' is deprecated
        .package(url: "https://github.com/daltoniam/Starscream.git", .exact("4.0.4"))
                                                                      ^
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.