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

Failed to build RealHTTP with Swift 6.0 for watchOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme RealHTTP -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

 20 |
 21 | public class HTTPRequest: CustomStringConvertible {
 22 |     public typealias RequestTask = Task<HTTPResponse, Error>
    |                      `- warning: type 'HTTPResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 23 |     public typealias RequestModifier = ((inout URLRequest) throws -> Void)
 24 |     internal static let DefaultTimeout = TimeInterval(10)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift:25:12: note: class 'HTTPResponse' does not conform to the 'Sendable' protocol
 23 | /// This is the raw response received from server. It includes all the
 24 | /// data collected from the request including metrics and errors.
 25 | open class HTTPResponse: CustomStringConvertible {
    |            `- note: class 'HTTPResponse' does not conform to the 'Sendable' protocol
 26 |
 27 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:48: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
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
46 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
48 |     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
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:33:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
31 |     public static let v2_0: Self = 2.0
32 |     public static let v3_0: Self = 3.0
33 |     public static let `default`: Self = v2_0
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' 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
34 |
35 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift:29:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'HTTPBody' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 | /// Defines the body of a request, including the content's body and additional headers.
 24 | public struct HTTPBody {
    |               `- note: consider making struct 'HTTPBody' conform to the 'Sendable' protocol
 25 |
 26 |     // MARK: - Public Static Properties
 27 |
 28 |     /// No data to send.
 29 |     public static let empty = HTTPBody(content: Data())
    |                       |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'HTTPBody' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'empty' 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
 30 |
 31 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift:24:16: warning: non-final class 'HTTPDataLoader' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 22 | /// URLSessionDelegate which can be used from iOS 13+.
 23 | /// This because new `URLSession` methods are introduced and available only starting from iOS 15+.
 24 | internal class HTTPDataLoader: NSObject,
    |                `- warning: non-final class 'HTTPDataLoader' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 25 |                                URLSessionDelegate, URLSessionDataDelegate,
 26 |                                URLSessionDownloadDelegate,
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift:32:18: warning: stored property 'session' of 'Sendable'-conforming class 'HTTPDataLoader' is mutable; this is an error in the Swift 6 language mode
 30 |
 31 |     /// URLSession instance which manage calls.
 32 |     internal var session: URLSession!
    |                  `- warning: stored property 'session' of 'Sendable'-conforming class 'HTTPDataLoader' is mutable; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Weak references to the parent HTTPClient instance.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Foundation+Extensions/Foundation+Extension.swift:238:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
236 | // MARK: - URL
237 |
238 | extension URL: ExpressibleByStringLiteral {
    | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
239 |
240 |     public init(stringLiteral value: StaticString) {
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPError.swift:35:30: warning: stored property 'category' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type 'HTTPError.ErrorCategory'; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Category of the error.
 35 |     public internal(set) var category: ErrorCategory
    |                              `- warning: stored property 'category' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type 'HTTPError.ErrorCategory'; this is an error in the Swift 6 language mode
 36 |
 37 |     /// Additional user info.
    :
108 |     /// - `validatorFailure`: failure returned by a validator set.
109 |     /// - `internal`: internal library error occurred.
110 |     enum ErrorCategory: Int {
    |          `- note: consider making enum 'ErrorCategory' conform to the 'Sendable' protocol
111 |         case invalidURL
112 |         case multipartInvalidFile
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPError.swift:38:16: warning: stored property 'userInfo' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
 36 |
 37 |     /// Additional user info.
 38 |     public var userInfo: [String: Any]?
    |                `- warning: stored property 'userInfo' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
 39 |
 40 |     /// Custom error message.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:42:23: warning: static property 'allCases' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   |                       |- warning: static property 'allCases' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'allCases' 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
43 |
44 |     // MARK: - Static Values
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:46:23: warning: static property 'connect' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
44 |     // MARK: - Static Values
45 |
46 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   |                       |- warning: static property 'connect' 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 'connect' 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
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
48 |     public static let get = HTTPMethod(rawValue: "GET")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:47:23: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
45 |
46 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
   |                       |- warning: static property 'delete' 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 'delete' 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
48 |     public static let get = HTTPMethod(rawValue: "GET")
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:49:23: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
48 |     public static let get = HTTPMethod(rawValue: "GET")
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
   |                       |- warning: static property 'head' 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 'head' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:50:23: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
48 |     public static let get = HTTPMethod(rawValue: "GET")
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
   |                       |- warning: static property 'options' 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 'options' 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
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
52 |     public static let post = HTTPMethod(rawValue: "POST")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:51:23: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
   |                       |- warning: static property 'patch' 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 'patch' 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
52 |     public static let post = HTTPMethod(rawValue: "POST")
53 |     public static let put = HTTPMethod(rawValue: "PUT")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:52: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
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
52 |     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
53 |     public static let put = HTTPMethod(rawValue: "PUT")
54 |     public static let trace = HTTPMethod(rawValue: "TRACE")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:53:23: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
52 |     public static let post = HTTPMethod(rawValue: "POST")
53 |     public static let put = HTTPMethod(rawValue: "PUT")
   |                       |- warning: static property 'put' 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 'put' 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
54 |     public static let trace = HTTPMethod(rawValue: "TRACE")
55 |
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:54:23: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
52 |     public static let post = HTTPMethod(rawValue: "POST")
53 |     public static let put = HTTPMethod(rawValue: "PUT")
54 |     public static let trace = HTTPMethod(rawValue: "TRACE")
   |                       |- warning: static property 'trace' 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 'trace' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:23:16: warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
   |                |- warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'http' 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
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:24:16: warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   |                |- warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'https' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     static let ftp: Self = "ftp"
26 |     static let sftp: Self = "sftp"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:25:16: warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
   |                |- warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ftp' 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
26 |     static let sftp: Self = "sftp"
27 |     static let tel: Self = "tel"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:26:16: warning: static property 'sftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
26 |     static let sftp: Self = "sftp"
   |                |- warning: static property 'sftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'sftp' 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
27 |     static let tel: Self = "tel"
28 |     static let mailto: Self = "mailto"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:27:16: warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
26 |     static let sftp: Self = "sftp"
27 |     static let tel: Self = "tel"
   |                |- warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'tel' 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
28 |     static let mailto: Self = "mailto"
29 |     static let file: Self = "file"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:28:16: warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   :
26 |     static let sftp: Self = "sftp"
27 |     static let tel: Self = "tel"
28 |     static let mailto: Self = "mailto"
   |                |- warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'mailto' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     static let file: Self = "file"
30 |     static let data: Self = "data"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:29:16: warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   :
27 |     static let tel: Self = "tel"
28 |     static let mailto: Self = "mailto"
29 |     static let file: Self = "file"
   |                |- warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'file' 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
30 |     static let data: Self = "data"
31 |
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:30:16: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   :
28 |     static let mailto: Self = "mailto"
29 |     static let file: Self = "file"
30 |     static let data: Self = "data"
   |                |- warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     public let rawValue: String
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:28:23: warning: static property 'v0_9' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
26 |
27 |     // swiftlint:disable identifier_name
28 |     public static let v0_9: Self = 0.9
   |                       |- warning: static property 'v0_9' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v0_9' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let v1_0: Self = 1.0
30 |     public static let v1_1: Self = 1.1
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:29:23: warning: static property 'v1_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
27 |     // swiftlint:disable identifier_name
28 |     public static let v0_9: Self = 0.9
29 |     public static let v1_0: Self = 1.0
   |                       |- warning: static property 'v1_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v1_0' 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
30 |     public static let v1_1: Self = 1.1
31 |     public static let v2_0: Self = 2.0
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:30:23: warning: static property 'v1_1' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
28 |     public static let v0_9: Self = 0.9
29 |     public static let v1_0: Self = 1.0
30 |     public static let v1_1: Self = 1.1
   |                       |- warning: static property 'v1_1' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v1_1' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let v2_0: Self = 2.0
32 |     public static let v3_0: Self = 3.0
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:31:23: warning: static property 'v2_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
29 |     public static let v1_0: Self = 1.0
30 |     public static let v1_1: Self = 1.1
31 |     public static let v2_0: Self = 2.0
   |                       |- warning: static property 'v2_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v2_0' 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
32 |     public static let v3_0: Self = 3.0
33 |     public static let `default`: Self = v2_0
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:32:23: warning: static property 'v3_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
30 |     public static let v1_1: Self = 1.1
31 |     public static let v2_0: Self = 2.0
32 |     public static let v3_0: Self = 3.0
   |                       |- warning: static property 'v3_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v3_0' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let `default`: Self = v2_0
34 |
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift:37:27: warning: static property 'defaultAcceptEncoding' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// A representation of a single HTTP header's name & value pair.
 24 |     struct Element: Hashable, Equatable, Comparable, CustomStringConvertible {
    |            `- note: consider making struct 'Element' conform to the 'Sendable' protocol
 25 |
 26 |         // MARK: - Public Properties
    :
 35 |
 36 |         /// Create the default `Accept-Encoding` header.
 37 |         public static let defaultAcceptEncoding: Element = {
    |                           |- warning: static property 'defaultAcceptEncoding' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultAcceptEncoding' 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
 38 |             .acceptEncoding(["br", "gzip", "deflate"].encodedWithQuality())
 39 |         }()
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift:43:27: warning: static property 'defaultAcceptLanguage' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// A representation of a single HTTP header's name & value pair.
 24 |     struct Element: Hashable, Equatable, Comparable, CustomStringConvertible {
    |            `- note: consider making struct 'Element' conform to the 'Sendable' protocol
 25 |
 26 |         // MARK: - Public Properties
    :
 41 |         /// Create the default `Accept-Language` header generated
 42 |         /// from the current system's locale settings.
 43 |         public static let defaultAcceptLanguage: Element = {
    |                           |- warning: static property 'defaultAcceptLanguage' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultAcceptLanguage' 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 |             let value = Locale.preferredLanguages.prefix(6).encodedWithQuality()
 45 |             return .acceptLanguage(value)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift:50:27: warning: static property 'defaultUserAgent' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// A representation of a single HTTP header's name & value pair.
 24 |     struct Element: Hashable, Equatable, Comparable, CustomStringConvertible {
    |            `- note: consider making struct 'Element' conform to the 'Sendable' protocol
 25 |
 26 |         // MARK: - Public Properties
    :
 48 |         /// Create the default `User-Agent` header.
 49 |         /// See <https://tools.ietf.org/html/rfc7231#section-5.5.3>.
 50 |         public static let defaultUserAgent: Element = {
    |                           |- warning: static property 'defaultUserAgent' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultUserAgent' 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
 51 |             let libraryVersion = "\(RealHTTP.agentIdentifier)/\(RealHTTP.sdkVersion)"
 52 |             let mainBundle = Bundle.main
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift:83:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
71 |
72 |     /// Defines the options for url matching.
73 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
74 |         public let rawValue: Int
75 |
   :
81 |
82 |         /// Include all the options.
83 |         public static let `default`: Options = [.ignoreQueryParameters]
   |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'default' 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
84 |
85 |         public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift:77:27: warning: static property 'ignoreQueryParameters' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
71 |
72 |     /// Defines the options for url matching.
73 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
74 |         public let rawValue: Int
75 |
76 |         /// Ignore query parameters from comparison.
77 |         public static let ignoreQueryParameters = Options(rawValue: 1 << 0)
   |                           |- warning: static property 'ignoreQueryParameters' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'ignoreQueryParameters' 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
78 |
79 |         /// Ignore path (route) components from comparison.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift:80:27: warning: static property 'ignorePath' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
71 |
72 |     /// Defines the options for url matching.
73 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
74 |         public let rawValue: Int
75 |
   :
78 |
79 |         /// Ignore path (route) components from comparison.
80 |         public static let ignorePath = Options(rawValue: 1 << 1)
   |                           |- warning: static property 'ignorePath' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'ignorePath' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 |
82 |         /// Include all the options.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift:26:23: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 |
 25 |     /// Singleton instance.
 26 |     public static var shared = HTTPStubber()
    |                       |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'shared' 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
 27 |
 28 |     /// Is the stubber running and intercepting request?
SwiftEmitModule normal armv7k Emitting\ module\ for\ RealHTTP (in target 'RealHTTP' from project 'RealHTTP')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -target armv7k-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/RealHTTP_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/RealHTTP.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/RealHTTP.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/RealHTTP-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/RealHTTP-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/RealHTTP-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/RealHTTP.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/RealHTTP.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift:28:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'HTTPClient' may have shared mutable state; this is an error in the Swift 6 language mode
 21 | /// HTTPClient is the place where each request will be executed.
 22 | /// It contains the complete configuration, keep cookies and sessions.
 23 | public class HTTPClient {
    |              `- note: class 'HTTPClient' does not conform to the 'Sendable' protocol
 24 |
 25 |     // MARK: - Public Properties
 26 |
 27 |     /// Shared HTTPClient instance.
 28 |     public static let shared = HTTPClient(baseURL: nil)
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'HTTPClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |
 30 |     /// Delegate of the client.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift:22:22: warning: type 'HTTPResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 20 |
 21 | public class HTTPRequest: CustomStringConvertible {
 22 |     public typealias RequestTask = Task<HTTPResponse, Error>
    |                      `- warning: type 'HTTPResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 23 |     public typealias RequestModifier = ((inout URLRequest) throws -> Void)
 24 |     internal static let DefaultTimeout = TimeInterval(10)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift:25:12: note: class 'HTTPResponse' does not conform to the 'Sendable' protocol
 23 | /// This is the raw response received from server. It includes all the
 24 | /// data collected from the request including metrics and errors.
 25 | open class HTTPResponse: CustomStringConvertible {
    |            `- note: class 'HTTPResponse' does not conform to the 'Sendable' protocol
 26 |
 27 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:48: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
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
46 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
48 |     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
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:33:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
31 |     public static let v2_0: Self = 2.0
32 |     public static let v3_0: Self = 3.0
33 |     public static let `default`: Self = v2_0
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' 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
34 |
35 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift:29:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'HTTPBody' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 | /// Defines the body of a request, including the content's body and additional headers.
 24 | public struct HTTPBody {
    |               `- note: consider making struct 'HTTPBody' conform to the 'Sendable' protocol
 25 |
 26 |     // MARK: - Public Static Properties
 27 |
 28 |     /// No data to send.
 29 |     public static let empty = HTTPBody(content: Data())
    |                       |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'HTTPBody' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'empty' 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
 30 |
 31 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift:24:16: warning: non-final class 'HTTPDataLoader' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 22 | /// URLSessionDelegate which can be used from iOS 13+.
 23 | /// This because new `URLSession` methods are introduced and available only starting from iOS 15+.
 24 | internal class HTTPDataLoader: NSObject,
    |                `- warning: non-final class 'HTTPDataLoader' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 25 |                                URLSessionDelegate, URLSessionDataDelegate,
 26 |                                URLSessionDownloadDelegate,
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift:32:18: warning: stored property 'session' of 'Sendable'-conforming class 'HTTPDataLoader' is mutable; this is an error in the Swift 6 language mode
 30 |
 31 |     /// URLSession instance which manage calls.
 32 |     internal var session: URLSession!
    |                  `- warning: stored property 'session' of 'Sendable'-conforming class 'HTTPDataLoader' is mutable; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Weak references to the parent HTTPClient instance.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Foundation+Extensions/Foundation+Extension.swift:238:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
236 | // MARK: - URL
237 |
238 | extension URL: ExpressibleByStringLiteral {
    | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
239 |
240 |     public init(stringLiteral value: StaticString) {
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPError.swift:35:30: warning: stored property 'category' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type 'HTTPError.ErrorCategory'; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Category of the error.
 35 |     public internal(set) var category: ErrorCategory
    |                              `- warning: stored property 'category' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type 'HTTPError.ErrorCategory'; this is an error in the Swift 6 language mode
 36 |
 37 |     /// Additional user info.
    :
108 |     /// - `validatorFailure`: failure returned by a validator set.
109 |     /// - `internal`: internal library error occurred.
110 |     enum ErrorCategory: Int {
    |          `- note: consider making enum 'ErrorCategory' conform to the 'Sendable' protocol
111 |         case invalidURL
112 |         case multipartInvalidFile
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPError.swift:38:16: warning: stored property 'userInfo' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
 36 |
 37 |     /// Additional user info.
 38 |     public var userInfo: [String: Any]?
    |                `- warning: stored property 'userInfo' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
 39 |
 40 |     /// Custom error message.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:42:23: warning: static property 'allCases' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   |                       |- warning: static property 'allCases' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'allCases' 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
43 |
44 |     // MARK: - Static Values
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:46:23: warning: static property 'connect' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
44 |     // MARK: - Static Values
45 |
46 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   |                       |- warning: static property 'connect' 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 'connect' 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
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
48 |     public static let get = HTTPMethod(rawValue: "GET")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:47:23: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
45 |
46 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
   |                       |- warning: static property 'delete' 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 'delete' 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
48 |     public static let get = HTTPMethod(rawValue: "GET")
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:49:23: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
48 |     public static let get = HTTPMethod(rawValue: "GET")
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
   |                       |- warning: static property 'head' 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 'head' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:50:23: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
48 |     public static let get = HTTPMethod(rawValue: "GET")
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
   |                       |- warning: static property 'options' 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 'options' 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
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
52 |     public static let post = HTTPMethod(rawValue: "POST")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:51:23: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
   |                       |- warning: static property 'patch' 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 'patch' 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
52 |     public static let post = HTTPMethod(rawValue: "POST")
53 |     public static let put = HTTPMethod(rawValue: "PUT")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:52: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
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
52 |     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
53 |     public static let put = HTTPMethod(rawValue: "PUT")
54 |     public static let trace = HTTPMethod(rawValue: "TRACE")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:53:23: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
52 |     public static let post = HTTPMethod(rawValue: "POST")
53 |     public static let put = HTTPMethod(rawValue: "PUT")
   |                       |- warning: static property 'put' 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 'put' 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
54 |     public static let trace = HTTPMethod(rawValue: "TRACE")
55 |
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:54:23: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
52 |     public static let post = HTTPMethod(rawValue: "POST")
53 |     public static let put = HTTPMethod(rawValue: "PUT")
54 |     public static let trace = HTTPMethod(rawValue: "TRACE")
   |                       |- warning: static property 'trace' 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 'trace' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:23:16: warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
   |                |- warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'http' 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
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:24:16: warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   |                |- warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'https' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     static let ftp: Self = "ftp"
26 |     static let sftp: Self = "sftp"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:25:16: warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
   |                |- warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ftp' 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
26 |     static let sftp: Self = "sftp"
27 |     static let tel: Self = "tel"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:26:16: warning: static property 'sftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
26 |     static let sftp: Self = "sftp"
   |                |- warning: static property 'sftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'sftp' 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
27 |     static let tel: Self = "tel"
28 |     static let mailto: Self = "mailto"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:27:16: warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
26 |     static let sftp: Self = "sftp"
27 |     static let tel: Self = "tel"
   |                |- warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'tel' 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
28 |     static let mailto: Self = "mailto"
29 |     static let file: Self = "file"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:28:16: warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   :
26 |     static let sftp: Self = "sftp"
27 |     static let tel: Self = "tel"
28 |     static let mailto: Self = "mailto"
   |                |- warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'mailto' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     static let file: Self = "file"
30 |     static let data: Self = "data"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:29:16: warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   :
27 |     static let tel: Self = "tel"
28 |     static let mailto: Self = "mailto"
29 |     static let file: Self = "file"
   |                |- warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'file' 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
30 |     static let data: Self = "data"
31 |
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:30:16: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   :
28 |     static let mailto: Self = "mailto"
29 |     static let file: Self = "file"
30 |     static let data: Self = "data"
   |                |- warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     public let rawValue: String
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:28:23: warning: static property 'v0_9' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
26 |
27 |     // swiftlint:disable identifier_name
28 |     public static let v0_9: Self = 0.9
   |                       |- warning: static property 'v0_9' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v0_9' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let v1_0: Self = 1.0
30 |     public static let v1_1: Self = 1.1
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:29:23: warning: static property 'v1_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
27 |     // swiftlint:disable identifier_name
28 |     public static let v0_9: Self = 0.9
29 |     public static let v1_0: Self = 1.0
   |                       |- warning: static property 'v1_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v1_0' 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
30 |     public static let v1_1: Self = 1.1
31 |     public static let v2_0: Self = 2.0
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:30:23: warning: static property 'v1_1' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
28 |     public static let v0_9: Self = 0.9
29 |     public static let v1_0: Self = 1.0
30 |     public static let v1_1: Self = 1.1
   |                       |- warning: static property 'v1_1' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v1_1' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let v2_0: Self = 2.0
32 |     public static let v3_0: Self = 3.0
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:31:23: warning: static property 'v2_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
29 |     public static let v1_0: Self = 1.0
30 |     public static let v1_1: Self = 1.1
31 |     public static let v2_0: Self = 2.0
   |                       |- warning: static property 'v2_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v2_0' 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
32 |     public static let v3_0: Self = 3.0
33 |     public static let `default`: Self = v2_0
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:32:23: warning: static property 'v3_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
30 |     public static let v1_1: Self = 1.1
31 |     public static let v2_0: Self = 2.0
32 |     public static let v3_0: Self = 3.0
   |                       |- warning: static property 'v3_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v3_0' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let `default`: Self = v2_0
34 |
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift:37:27: warning: static property 'defaultAcceptEncoding' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// A representation of a single HTTP header's name & value pair.
 24 |     struct Element: Hashable, Equatable, Comparable, CustomStringConvertible {
    |            `- note: consider making struct 'Element' conform to the 'Sendable' protocol
 25 |
 26 |         // MARK: - Public Properties
    :
 35 |
 36 |         /// Create the default `Accept-Encoding` header.
 37 |         public static let defaultAcceptEncoding: Element = {
    |                           |- warning: static property 'defaultAcceptEncoding' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultAcceptEncoding' 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
 38 |             .acceptEncoding(["br", "gzip", "deflate"].encodedWithQuality())
 39 |         }()
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift:43:27: warning: static property 'defaultAcceptLanguage' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// A representation of a single HTTP header's name & value pair.
 24 |     struct Element: Hashable, Equatable, Comparable, CustomStringConvertible {
    |            `- note: consider making struct 'Element' conform to the 'Sendable' protocol
 25 |
 26 |         // MARK: - Public Properties
    :
 41 |         /// Create the default `Accept-Language` header generated
 42 |         /// from the current system's locale settings.
 43 |         public static let defaultAcceptLanguage: Element = {
    |                           |- warning: static property 'defaultAcceptLanguage' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultAcceptLanguage' 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 |             let value = Locale.preferredLanguages.prefix(6).encodedWithQuality()
 45 |             return .acceptLanguage(value)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift:50:27: warning: static property 'defaultUserAgent' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// A representation of a single HTTP header's name & value pair.
 24 |     struct Element: Hashable, Equatable, Comparable, CustomStringConvertible {
    |            `- note: consider making struct 'Element' conform to the 'Sendable' protocol
 25 |
 26 |         // MARK: - Public Properties
    :
 48 |         /// Create the default `User-Agent` header.
 49 |         /// See <https://tools.ietf.org/html/rfc7231#section-5.5.3>.
 50 |         public static let defaultUserAgent: Element = {
    |                           |- warning: static property 'defaultUserAgent' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultUserAgent' 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
 51 |             let libraryVersion = "\(RealHTTP.agentIdentifier)/\(RealHTTP.sdkVersion)"
 52 |             let mainBundle = Bundle.main
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift:83:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
71 |
72 |     /// Defines the options for url matching.
73 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
74 |         public let rawValue: Int
75 |
   :
81 |
82 |         /// Include all the options.
83 |         public static let `default`: Options = [.ignoreQueryParameters]
   |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'default' 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
84 |
85 |         public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift:77:27: warning: static property 'ignoreQueryParameters' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
71 |
72 |     /// Defines the options for url matching.
73 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
74 |         public let rawValue: Int
75 |
76 |         /// Ignore query parameters from comparison.
77 |         public static let ignoreQueryParameters = Options(rawValue: 1 << 0)
   |                           |- warning: static property 'ignoreQueryParameters' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'ignoreQueryParameters' 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
78 |
79 |         /// Ignore path (route) components from comparison.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift:80:27: warning: static property 'ignorePath' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
71 |
72 |     /// Defines the options for url matching.
73 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
74 |         public let rawValue: Int
75 |
   :
78 |
79 |         /// Ignore path (route) components from comparison.
80 |         public static let ignorePath = Options(rawValue: 1 << 1)
   |                           |- warning: static property 'ignorePath' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'ignorePath' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 |
82 |         /// Include all the options.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift:26:23: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 |
 25 |     /// Singleton instance.
 26 |     public static var shared = HTTPStubber()
    |                       |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'shared' 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
 27 |
 28 |     /// Is the stubber running and intercepting request?
SwiftDriverJobDiscovery normal arm64 Emitting module for RealHTTP (in target 'RealHTTP' from project 'RealHTTP')
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ RealHTTP (in target 'RealHTTP' from project 'RealHTTP')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64_32/RealHTTP_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64_32/RealHTTP.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64_32/RealHTTP.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64_32/RealHTTP-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64_32/RealHTTP-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64_32/RealHTTP-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64_32/RealHTTP.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64_32/RealHTTP.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift:28:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'HTTPClient' may have shared mutable state; this is an error in the Swift 6 language mode
 21 | /// HTTPClient is the place where each request will be executed.
 22 | /// It contains the complete configuration, keep cookies and sessions.
 23 | public class HTTPClient {
    |              `- note: class 'HTTPClient' does not conform to the 'Sendable' protocol
 24 |
 25 |     // MARK: - Public Properties
 26 |
 27 |     /// Shared HTTPClient instance.
 28 |     public static let shared = HTTPClient(baseURL: nil)
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'HTTPClient' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |
 30 |     /// Delegate of the client.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift:22:22: warning: type 'HTTPResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 20 |
 21 | public class HTTPRequest: CustomStringConvertible {
 22 |     public typealias RequestTask = Task<HTTPResponse, Error>
    |                      `- warning: type 'HTTPResponse' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 23 |     public typealias RequestModifier = ((inout URLRequest) throws -> Void)
 24 |     internal static let DefaultTimeout = TimeInterval(10)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift:25:12: note: class 'HTTPResponse' does not conform to the 'Sendable' protocol
 23 | /// This is the raw response received from server. It includes all the
 24 | /// data collected from the request including metrics and errors.
 25 | open class HTTPResponse: CustomStringConvertible {
    |            `- note: class 'HTTPResponse' does not conform to the 'Sendable' protocol
 26 |
 27 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:48: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
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
46 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
48 |     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
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:33:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
31 |     public static let v2_0: Self = 2.0
32 |     public static let v3_0: Self = 3.0
33 |     public static let `default`: Self = v2_0
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' 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
34 |
35 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift:29:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'HTTPBody' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 | /// Defines the body of a request, including the content's body and additional headers.
 24 | public struct HTTPBody {
    |               `- note: consider making struct 'HTTPBody' conform to the 'Sendable' protocol
 25 |
 26 |     // MARK: - Public Static Properties
 27 |
 28 |     /// No data to send.
 29 |     public static let empty = HTTPBody(content: Data())
    |                       |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'HTTPBody' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'empty' 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
 30 |
 31 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift:24:16: warning: non-final class 'HTTPDataLoader' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 22 | /// URLSessionDelegate which can be used from iOS 13+.
 23 | /// This because new `URLSession` methods are introduced and available only starting from iOS 15+.
 24 | internal class HTTPDataLoader: NSObject,
    |                `- warning: non-final class 'HTTPDataLoader' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 25 |                                URLSessionDelegate, URLSessionDataDelegate,
 26 |                                URLSessionDownloadDelegate,
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift:32:18: warning: stored property 'session' of 'Sendable'-conforming class 'HTTPDataLoader' is mutable; this is an error in the Swift 6 language mode
 30 |
 31 |     /// URLSession instance which manage calls.
 32 |     internal var session: URLSession!
    |                  `- warning: stored property 'session' of 'Sendable'-conforming class 'HTTPDataLoader' is mutable; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Weak references to the parent HTTPClient instance.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Foundation+Extensions/Foundation+Extension.swift:238:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
236 | // MARK: - URL
237 |
238 | extension URL: ExpressibleByStringLiteral {
    | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
239 |
240 |     public init(stringLiteral value: StaticString) {
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPError.swift:35:30: warning: stored property 'category' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type 'HTTPError.ErrorCategory'; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Category of the error.
 35 |     public internal(set) var category: ErrorCategory
    |                              `- warning: stored property 'category' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type 'HTTPError.ErrorCategory'; this is an error in the Swift 6 language mode
 36 |
 37 |     /// Additional user info.
    :
108 |     /// - `validatorFailure`: failure returned by a validator set.
109 |     /// - `internal`: internal library error occurred.
110 |     enum ErrorCategory: Int {
    |          `- note: consider making enum 'ErrorCategory' conform to the 'Sendable' protocol
111 |         case invalidURL
112 |         case multipartInvalidFile
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPError.swift:38:16: warning: stored property 'userInfo' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
 36 |
 37 |     /// Additional user info.
 38 |     public var userInfo: [String: Any]?
    |                `- warning: stored property 'userInfo' of 'Sendable'-conforming struct 'HTTPError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
 39 |
 40 |     /// Custom error message.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:42:23: warning: static property 'allCases' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   |                       |- warning: static property 'allCases' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'allCases' 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
43 |
44 |     // MARK: - Static Values
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:46:23: warning: static property 'connect' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
44 |     // MARK: - Static Values
45 |
46 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   |                       |- warning: static property 'connect' 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 'connect' 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
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
48 |     public static let get = HTTPMethod(rawValue: "GET")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:47:23: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
45 |
46 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
   |                       |- warning: static property 'delete' 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 'delete' 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
48 |     public static let get = HTTPMethod(rawValue: "GET")
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:49:23: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
47 |     public static let delete = HTTPMethod(rawValue: "DELETE")
48 |     public static let get = HTTPMethod(rawValue: "GET")
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
   |                       |- warning: static property 'head' 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 'head' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:50:23: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
48 |     public static let get = HTTPMethod(rawValue: "GET")
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
   |                       |- warning: static property 'options' 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 'options' 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
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
52 |     public static let post = HTTPMethod(rawValue: "POST")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:51:23: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
49 |     public static let head = HTTPMethod(rawValue: "HEAD")
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
   |                       |- warning: static property 'patch' 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 'patch' 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
52 |     public static let post = HTTPMethod(rawValue: "POST")
53 |     public static let put = HTTPMethod(rawValue: "PUT")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:52: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
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
50 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
52 |     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
53 |     public static let put = HTTPMethod(rawValue: "PUT")
54 |     public static let trace = HTTPMethod(rawValue: "TRACE")
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:53:23: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
51 |     public static let patch = HTTPMethod(rawValue: "PATCH")
52 |     public static let post = HTTPMethod(rawValue: "POST")
53 |     public static let put = HTTPMethod(rawValue: "PUT")
   |                       |- warning: static property 'put' 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 'put' 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
54 |     public static let trace = HTTPMethod(rawValue: "TRACE")
55 |
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPMethod.swift:54:23: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
38 | /// - `options`: The OPTIONS method is used to describe the communication options for the target resource.
39 | /// - `patch`: The PATCH method is used to apply partial modifications to a resource.
40 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable, CaseIterable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
41 |
42 |     public static var allCases: [HTTPMethod] = [.connect, .delete, .get, .head, .options, .patch, .post, .put, .trace]
   :
52 |     public static let post = HTTPMethod(rawValue: "POST")
53 |     public static let put = HTTPMethod(rawValue: "PUT")
54 |     public static let trace = HTTPMethod(rawValue: "TRACE")
   |                       |- warning: static property 'trace' 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 'trace' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 |     // MARK: - Public Properties
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:23:16: warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
   |                |- warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'http' 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
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:24:16: warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   |                |- warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'https' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     static let ftp: Self = "ftp"
26 |     static let sftp: Self = "sftp"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:25:16: warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
   |                |- warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ftp' 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
26 |     static let sftp: Self = "sftp"
27 |     static let tel: Self = "tel"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:26:16: warning: static property 'sftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
26 |     static let sftp: Self = "sftp"
   |                |- warning: static property 'sftp' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'sftp' 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
27 |     static let tel: Self = "tel"
28 |     static let mailto: Self = "mailto"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:27:16: warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
25 |     static let ftp: Self = "ftp"
26 |     static let sftp: Self = "sftp"
27 |     static let tel: Self = "tel"
   |                |- warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'tel' 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
28 |     static let mailto: Self = "mailto"
29 |     static let file: Self = "file"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:28:16: warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   :
26 |     static let sftp: Self = "sftp"
27 |     static let tel: Self = "tel"
28 |     static let mailto: Self = "mailto"
   |                |- warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'mailto' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     static let file: Self = "file"
30 |     static let data: Self = "data"
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:29:16: warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   :
27 |     static let tel: Self = "tel"
28 |     static let mailto: Self = "mailto"
29 |     static let file: Self = "file"
   |                |- warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'file' 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
30 |     static let data: Self = "data"
31 |
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPScheme.swift:30:16: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the protocol scheme for an URL.
22 | public struct HTTPScheme: Equatable, Hashable, Codable, RawRepresentable, CustomStringConvertible {
   |               `- note: consider making struct 'HTTPScheme' conform to the 'Sendable' protocol
23 |     static let http: Self = "http"
24 |     static let https: Self = "https"
   :
28 |     static let mailto: Self = "mailto"
29 |     static let file: Self = "file"
30 |     static let data: Self = "data"
   |                |- warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'HTTPScheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     public let rawValue: String
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:28:23: warning: static property 'v0_9' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
26 |
27 |     // swiftlint:disable identifier_name
28 |     public static let v0_9: Self = 0.9
   |                       |- warning: static property 'v0_9' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v0_9' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let v1_0: Self = 1.0
30 |     public static let v1_1: Self = 1.1
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:29:23: warning: static property 'v1_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
27 |     // swiftlint:disable identifier_name
28 |     public static let v0_9: Self = 0.9
29 |     public static let v1_0: Self = 1.0
   |                       |- warning: static property 'v1_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v1_0' 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
30 |     public static let v1_1: Self = 1.1
31 |     public static let v2_0: Self = 2.0
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:30:23: warning: static property 'v1_1' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
28 |     public static let v0_9: Self = 0.9
29 |     public static let v1_0: Self = 1.0
30 |     public static let v1_1: Self = 1.1
   |                       |- warning: static property 'v1_1' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v1_1' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let v2_0: Self = 2.0
32 |     public static let v3_0: Self = 3.0
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:31:23: warning: static property 'v2_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
29 |     public static let v1_0: Self = 1.0
30 |     public static let v1_1: Self = 1.1
31 |     public static let v2_0: Self = 2.0
   |                       |- warning: static property 'v2_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v2_0' 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
32 |     public static let v3_0: Self = 3.0
33 |     public static let `default`: Self = v2_0
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/HTTPVersion.swift:32:23: warning: static property 'v3_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 | /// Defines the HTTP protocol version used for request.
22 | public struct HTTPVersion: Equatable, Hashable, Codable, RawRepresentable,
   |               `- note: consider making struct 'HTTPVersion' conform to the 'Sendable' protocol
23 |                            ExpressibleByFloatLiteral, CustomStringConvertible {
24 |
   :
30 |     public static let v1_1: Self = 1.1
31 |     public static let v2_0: Self = 2.0
32 |     public static let v3_0: Self = 3.0
   |                       |- warning: static property 'v3_0' is not concurrency-safe because non-'Sendable' type 'HTTPVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'v3_0' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let `default`: Self = v2_0
34 |
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift:37:27: warning: static property 'defaultAcceptEncoding' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// A representation of a single HTTP header's name & value pair.
 24 |     struct Element: Hashable, Equatable, Comparable, CustomStringConvertible {
    |            `- note: consider making struct 'Element' conform to the 'Sendable' protocol
 25 |
 26 |         // MARK: - Public Properties
    :
 35 |
 36 |         /// Create the default `Accept-Encoding` header.
 37 |         public static let defaultAcceptEncoding: Element = {
    |                           |- warning: static property 'defaultAcceptEncoding' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultAcceptEncoding' 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
 38 |             .acceptEncoding(["br", "gzip", "deflate"].encodedWithQuality())
 39 |         }()
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift:43:27: warning: static property 'defaultAcceptLanguage' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// A representation of a single HTTP header's name & value pair.
 24 |     struct Element: Hashable, Equatable, Comparable, CustomStringConvertible {
    |            `- note: consider making struct 'Element' conform to the 'Sendable' protocol
 25 |
 26 |         // MARK: - Public Properties
    :
 41 |         /// Create the default `Accept-Language` header generated
 42 |         /// from the current system's locale settings.
 43 |         public static let defaultAcceptLanguage: Element = {
    |                           |- warning: static property 'defaultAcceptLanguage' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultAcceptLanguage' 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 |             let value = Locale.preferredLanguages.prefix(6).encodedWithQuality()
 45 |             return .acceptLanguage(value)
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other Structures/Headers/HTTPHeaders+Element.swift:50:27: warning: static property 'defaultUserAgent' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// A representation of a single HTTP header's name & value pair.
 24 |     struct Element: Hashable, Equatable, Comparable, CustomStringConvertible {
    |            `- note: consider making struct 'Element' conform to the 'Sendable' protocol
 25 |
 26 |         // MARK: - Public Properties
    :
 48 |         /// Create the default `User-Agent` header.
 49 |         /// See <https://tools.ietf.org/html/rfc7231#section-5.5.3>.
 50 |         public static let defaultUserAgent: Element = {
    |                           |- warning: static property 'defaultUserAgent' is not concurrency-safe because non-'Sendable' type 'HTTPHeaders.Element' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'defaultUserAgent' 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
 51 |             let libraryVersion = "\(RealHTTP.agentIdentifier)/\(RealHTTP.sdkVersion)"
 52 |             let mainBundle = Bundle.main
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift:83:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
71 |
72 |     /// Defines the options for url matching.
73 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
74 |         public let rawValue: Int
75 |
   :
81 |
82 |         /// Include all the options.
83 |         public static let `default`: Options = [.ignoreQueryParameters]
   |                           |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'default' 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
84 |
85 |         public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift:77:27: warning: static property 'ignoreQueryParameters' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
71 |
72 |     /// Defines the options for url matching.
73 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
74 |         public let rawValue: Int
75 |
76 |         /// Ignore query parameters from comparison.
77 |         public static let ignoreQueryParameters = Options(rawValue: 1 << 0)
   |                           |- warning: static property 'ignoreQueryParameters' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'ignoreQueryParameters' 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
78 |
79 |         /// Ignore path (route) components from comparison.
/Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub Matchers/Built-In Matchers/HTTPStubURLMatcher.swift:80:27: warning: static property 'ignorePath' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
71 |
72 |     /// Defines the options for url matching.
73 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
74 |         public let rawValue: Int
75 |
   :
78 |
79 |         /// Ignore path (route) components from comparison.
80 |         public static let ignorePath = Options(rawValue: 1 << 1)
   |                           |- warning: static property 'ignorePath' is not concurrency-safe because non-'Sendable' type 'HTTPStubURLMatcher.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'ignorePath' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 |
82 |         /// Include all the options.
SwiftDriver\ Compilation\ Requirements RealHTTP normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RealHTTP' from project 'RealHTTP')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name RealHTTP -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64/RealHTTP.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64/RealHTTP-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64/RealHTTP.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64/RealHTTP_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/arm64/RealHTTP-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal armv7k Compiling\ JSONEncodable.swift,\ JSONSerializable.swift,\ HTTPBody+FormValues.swift,\ HTTPBody+Multipart.swift,\ MultipartForm+Boundary.swift,\ MultipartForm+Item.swift,\ MultipartForm.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift (in target 'RealHTTP' from project 'RealHTTP')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPClient/HTTPClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPRequest/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/HTTPResponse/HTTPResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/HTTPSerializableBody.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/HTTPBody+JSON.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/HTTPBody+Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Stream/StreamContent.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/HTTPBody+QueryString.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/URLParametersData/URLParametersData.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader+Response.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPDataLoader/HTTPDataLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseTransform/HTTPResponseTransform.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPAltRequestValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPDefaultValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/HTTPFormattable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/ThreadSafeDictionary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/URLRequest+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPCacheControl.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPError.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPRequestPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPScheme.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPStatusCode.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/HTTPVersion.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaderElement+Name.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders+Element.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Headers/HTTPHeaders.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/MIMEType.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/HTTPMetrics.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetrics+Console.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Metrics/Renders/HTTPMetricsRender.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/URITemplate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/cURLHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/RealHTTP.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/HTTPStubIgnoreRule.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubBodyMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubCustomMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubJSONMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubRegExMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURITemplateMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/Built-In\ Matchers/HTTPStubURLMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Matchers/HTTPStubMatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPDynamicStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Matchers.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest+Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Request/HTTPStubRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPEchoResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Stub\ Response/HTTPStubResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/Foundation+Stubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStub+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/DataTypes/Support/HTTPStubDataConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubber.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/HTTPStubberErrors.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubHookProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/HTTPStubURLProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLHook.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Stubber/Hooks/URLSessionHook.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/supplementaryOutputs-41 -target armv7k-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/RealHTTP_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name RealHTTP -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/JSONEncodable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/JSONSerializable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/HTTPBody+FormValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/HTTPBody+Multipart.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/MultipartForm+Boundary.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/MultipartForm+Item.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/MultipartForm.o -index-unit-output-path /RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/JSONEncodable.o -index-unit-output-path /RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/JSONSerializable.o -index-unit-output-path /RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/HTTPBody+FormValues.o -index-unit-output-path /RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/HTTPBody+Multipart.o -index-unit-output-path /RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/MultipartForm+Boundary.o -index-unit-output-path /RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/MultipartForm+Item.o -index-unit-output-path /RealHTTP.build/Debug-watchos/RealHTTP.build/Objects-normal/armv7k/MultipartForm.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'RealHTTP' from project 'RealHTTP')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ HTTPValidator.swift,\ HTTPSecurity.swift,\ HTTPSecurityService.swift,\ CertificatesSecurity.swift,\ SSLCertificate.swift,\ CredentialSecurity.swift,\ SelfSignedCertsSecurity.swift,\ Foundation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPResponseValidator/HTTPValidator.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/HTTPSecurityService.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/CertificatesSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CertificatesSecurity/SSLCertificate.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/CredentialSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPSecurity/Options/SelfSignedCertsSecurity.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/Other\ Structures/Foundation+Extensions/Foundation+Extension.swift (in target 'RealHTTP' from project 'RealHTTP')
	SwiftCompile normal armv7k Compiling\ JSONEncodable.swift,\ JSONSerializable.swift,\ HTTPBody+FormValues.swift,\ HTTPBody+Multipart.swift,\ MultipartForm+Boundary.swift,\ MultipartForm+Item.swift,\ MultipartForm.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/JSON/JSONSerializable.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+FormValues.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/HTTPBody+Multipart.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Boundary.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm+Item.swift /Users/admin/builder/spi-builder-workspace/Sources/RealHTTP/Client/Internal/HTTPBody/Multipart/Support/MultipartForm.swift (in target 'RealHTTP' from project 'RealHTTP')
(2 failures)
BUILD FAILURE 6.0 watchOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.