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 RestEssentials with Swift 5.10 for watchOS using Xcode 15.4.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.4.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme RestEssentials-Package -destination generic/platform=watchos

Build Log

/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:115:124: error: concurrency is only available in watchOS 6.0.0 or newer
    private func dataTask(relativePath: String?, httpMethod: String, accept: String, payload: Data?, options: RestOptions) async throws -> (Data, HTTPURLResponse) {
                                                                                                                           ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:115:18: note: add @available attribute to enclosing instance method
    private func dataTask(relativePath: String?, httpMethod: String, accept: String, payload: Data?, options: RestOptions) async throws -> (Data, HTTPURLResponse) {
                 ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:156:152: error: concurrency is only available in watchOS 6.0.0 or newer
    private func makeCall<T: Deserializer>(_ relativePath: String?, httpMethod: String, payload: Data?, responseDeserializer: T, options: RestOptions) async throws -> T.ResponseType {
                                                                                                                                                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:156:18: note: add @available attribute to enclosing instance method
    private func makeCall<T: Deserializer>(_ relativePath: String?, httpMethod: String, payload: Data?, responseDeserializer: T, options: RestOptions) async throws -> T.ResponseType {
                 ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:174:150: error: concurrency is only available in watchOS 6.0.0 or newer
    public func get<T: Deserializer>(withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                     ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:174:17: note: add @available attribute to enclosing instance method
    public func get<T: Deserializer>(withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:186:121: error: concurrency is only available in watchOS 6.0.0 or newer
    public func get<D: Decodable>(_ type: D.Type, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                        ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:186:17: note: add @available attribute to enclosing instance method
    public func get<D: Decodable>(_ type: D.Type, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:200:165: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                    ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:200:17: note: add @available attribute to enclosing instance method
    public func post<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:214:181: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                    ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:214:17: note: add @available attribute to enclosing instance method
    public func post<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:227:106: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                         ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:227:17: note: add @available attribute to enclosing instance method
    public func post(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:241:163: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                  ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:241:17: note: add @available attribute to enclosing instance method
    public func post<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:256:164: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:256:17: note: add @available attribute to enclosing instance method
    public func put<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:270:180: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:270:17: note: add @available attribute to enclosing instance method
    public func put<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:283:105: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                        ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:283:17: note: add @available attribute to enclosing instance method
    public func put(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:297:162: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                 ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:297:17: note: add @available attribute to enclosing instance method
    public func put<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:312:167: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:312:17: note: add @available attribute to enclosing instance method
    public func delete<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:326:183: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:326:17: note: add @available attribute to enclosing instance method
    public func delete<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:339:108: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                           ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:339:17: note: add @available attribute to enclosing instance method
    public func delete(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:353:165: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                    ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:353:17: note: add @available attribute to enclosing instance method
    public func delete<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:368:166: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                     ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:368:17: note: add @available attribute to enclosing instance method
    public func patch<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:382:182: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                     ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:382:17: note: add @available attribute to enclosing instance method
    public func patch<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:395:107: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                          ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:395:17: note: add @available attribute to enclosing instance method
    public func patch(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:409:164: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:409:17: note: add @available attribute to enclosing instance method
    public func patch<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
SwiftDriver\ Compilation\ Requirements RestEssentials normal armv7k com.apple.xcode.tools.swift.compiler (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RestEssentials -Onone -enforce-exclusivity\=checked @/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -target armv7k-apple-watchos4.0 -enable-bare-slash-regex -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -c -j8 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -output-file-map /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials_const_extract_protocols.json -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials-Swift.h -working-directory /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for RestEssentials (in target 'RestEssentials' from project 'RestEssentials')
SwiftDriver\ Compilation\ Requirements RestEssentials normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RestEssentials -Onone -enforce-exclusivity\=checked @/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -target arm64-apple-watchos4.0 -enable-bare-slash-regex -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -c -j8 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -output-file-map /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials_const_extract_protocols.json -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials-Swift.h -working-directory /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements RestEssentials normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RestEssentials -Onone -enforce-exclusivity\=checked @/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -target arm64_32-apple-watchos4.0 -enable-bare-slash-regex -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -c -j8 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -output-file-map /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials_const_extract_protocols.json -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials-Swift.h -working-directory /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal armv7k Emitting\ module\ for\ RestEssentials (in target 'RestEssentials' from project 'RestEssentials')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ RestEssentials (in target 'RestEssentials' from project 'RestEssentials')
(2 failures)
Command line invocation:
    /Applications/Xcode-15.4.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData build -scheme RestEssentials-Package -destination generic/platform=watchos
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData
    IDEPackageSupportUseBuiltinSCM = YES
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (1 target)
    Target 'RestEssentials' in project 'RestEssentials' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ClangStatCache /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/RestEssentials.xcodeproj
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache
SwiftDriver RestEssentials normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-SwiftDriver -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RestEssentials -Onone -enforce-exclusivity\=checked @/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -target arm64-apple-watchos4.0 -enable-bare-slash-regex -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -c -j8 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -output-file-map /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials_const_extract_protocols.json -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials-Swift.h -working-directory /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver RestEssentials normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-SwiftDriver -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RestEssentials -Onone -enforce-exclusivity\=checked @/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -target arm64_32-apple-watchos4.0 -enable-bare-slash-regex -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -c -j8 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -output-file-map /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials_const_extract_protocols.json -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials-Swift.h -working-directory /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver RestEssentials normal armv7k com.apple.xcode.tools.swift.compiler (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-SwiftDriver -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RestEssentials -Onone -enforce-exclusivity\=checked @/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -target armv7k-apple-watchos4.0 -enable-bare-slash-regex -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -c -j8 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -output-file-map /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials_const_extract_protocols.json -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials-Swift.h -working-directory /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ RestEssentials (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials.swiftdoc -emit-module-source-info-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials.swiftsourceinfo -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials-Swift.h -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials-master-emit-module.dia -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials-master-emit-module.d -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials.swiftmodule -emit-abi-descriptor-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials.abi.json
SwiftCompile normal arm64 Compiling\ Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/Deserializer.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ RestController.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestController.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64/JSON.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal armv7k Emitting\ module\ for\ RestEssentials (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.swiftdoc -emit-module-source-info-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.swiftsourceinfo -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials-Swift.h -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials-master-emit-module.dia -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials-master-emit-module.d -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.swiftmodule -emit-abi-descriptor-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.abi.json
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:115:124: error: concurrency is only available in watchOS 6.0.0 or newer
    private func dataTask(relativePath: String?, httpMethod: String, accept: String, payload: Data?, options: RestOptions) async throws -> (Data, HTTPURLResponse) {
                                                                                                                           ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:115:18: note: add @available attribute to enclosing instance method
    private func dataTask(relativePath: String?, httpMethod: String, accept: String, payload: Data?, options: RestOptions) async throws -> (Data, HTTPURLResponse) {
                 ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:156:152: error: concurrency is only available in watchOS 6.0.0 or newer
    private func makeCall<T: Deserializer>(_ relativePath: String?, httpMethod: String, payload: Data?, responseDeserializer: T, options: RestOptions) async throws -> T.ResponseType {
                                                                                                                                                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:156:18: note: add @available attribute to enclosing instance method
    private func makeCall<T: Deserializer>(_ relativePath: String?, httpMethod: String, payload: Data?, responseDeserializer: T, options: RestOptions) async throws -> T.ResponseType {
                 ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:174:150: error: concurrency is only available in watchOS 6.0.0 or newer
    public func get<T: Deserializer>(withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                     ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:174:17: note: add @available attribute to enclosing instance method
    public func get<T: Deserializer>(withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:186:121: error: concurrency is only available in watchOS 6.0.0 or newer
    public func get<D: Decodable>(_ type: D.Type, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                        ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:186:17: note: add @available attribute to enclosing instance method
    public func get<D: Decodable>(_ type: D.Type, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:200:165: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                    ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:200:17: note: add @available attribute to enclosing instance method
    public func post<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:214:181: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                    ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:214:17: note: add @available attribute to enclosing instance method
    public func post<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:227:106: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                         ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:227:17: note: add @available attribute to enclosing instance method
    public func post(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:241:163: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                  ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:241:17: note: add @available attribute to enclosing instance method
    public func post<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:256:164: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:256:17: note: add @available attribute to enclosing instance method
    public func put<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:270:180: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:270:17: note: add @available attribute to enclosing instance method
    public func put<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:283:105: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                        ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:283:17: note: add @available attribute to enclosing instance method
    public func put(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:297:162: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                 ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:297:17: note: add @available attribute to enclosing instance method
    public func put<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:312:167: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:312:17: note: add @available attribute to enclosing instance method
    public func delete<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:326:183: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:326:17: note: add @available attribute to enclosing instance method
    public func delete<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:339:108: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                           ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:339:17: note: add @available attribute to enclosing instance method
    public func delete(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:353:165: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                    ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:353:17: note: add @available attribute to enclosing instance method
    public func delete<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:368:166: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                     ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:368:17: note: add @available attribute to enclosing instance method
    public func patch<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:382:182: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                     ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:382:17: note: add @available attribute to enclosing instance method
    public func patch<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:395:107: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                          ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:395:17: note: add @available attribute to enclosing instance method
    public func patch(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:409:164: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:409:17: note: add @available attribute to enclosing instance method
    public func patch<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ RestEssentials (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -target arm64_32-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials.swiftdoc -emit-module-source-info-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials.swiftsourceinfo -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials-Swift.h -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials-master-emit-module.dia -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials-master-emit-module.d -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials.swiftmodule -emit-abi-descriptor-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials.abi.json
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:115:124: error: concurrency is only available in watchOS 6.0.0 or newer
    private func dataTask(relativePath: String?, httpMethod: String, accept: String, payload: Data?, options: RestOptions) async throws -> (Data, HTTPURLResponse) {
                                                                                                                           ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:115:18: note: add @available attribute to enclosing instance method
    private func dataTask(relativePath: String?, httpMethod: String, accept: String, payload: Data?, options: RestOptions) async throws -> (Data, HTTPURLResponse) {
                 ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:156:152: error: concurrency is only available in watchOS 6.0.0 or newer
    private func makeCall<T: Deserializer>(_ relativePath: String?, httpMethod: String, payload: Data?, responseDeserializer: T, options: RestOptions) async throws -> T.ResponseType {
                                                                                                                                                       ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:156:18: note: add @available attribute to enclosing instance method
    private func makeCall<T: Deserializer>(_ relativePath: String?, httpMethod: String, payload: Data?, responseDeserializer: T, options: RestOptions) async throws -> T.ResponseType {
                 ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:174:150: error: concurrency is only available in watchOS 6.0.0 or newer
    public func get<T: Deserializer>(withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                     ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:174:17: note: add @available attribute to enclosing instance method
    public func get<T: Deserializer>(withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:186:121: error: concurrency is only available in watchOS 6.0.0 or newer
    public func get<D: Decodable>(_ type: D.Type, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                        ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:186:17: note: add @available attribute to enclosing instance method
    public func get<D: Decodable>(_ type: D.Type, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:200:165: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                    ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:200:17: note: add @available attribute to enclosing instance method
    public func post<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:214:181: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                    ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:214:17: note: add @available attribute to enclosing instance method
    public func post<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:227:106: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                         ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:227:17: note: add @available attribute to enclosing instance method
    public func post(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:241:163: error: concurrency is only available in watchOS 6.0.0 or newer
    public func post<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                  ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:241:17: note: add @available attribute to enclosing instance method
    public func post<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:256:164: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:256:17: note: add @available attribute to enclosing instance method
    public func put<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:270:180: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:270:17: note: add @available attribute to enclosing instance method
    public func put<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:283:105: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                        ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:283:17: note: add @available attribute to enclosing instance method
    public func put(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:297:162: error: concurrency is only available in watchOS 6.0.0 or newer
    public func put<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                 ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:297:17: note: add @available attribute to enclosing instance method
    public func put<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:312:167: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:312:17: note: add @available attribute to enclosing instance method
    public func delete<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:326:183: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                      ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:326:17: note: add @available attribute to enclosing instance method
    public func delete<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:339:108: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                           ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:339:17: note: add @available attribute to enclosing instance method
    public func delete(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:353:165: error: concurrency is only available in watchOS 6.0.0 or newer
    public func delete<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                    ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:353:17: note: add @available attribute to enclosing instance method
    public func delete<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:368:166: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                     ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:368:17: note: add @available attribute to enclosing instance method
    public func patch<T: Deserializer>(_ json: JSON, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:382:182: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                                                                                                                                                                                     ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:382:17: note: add @available attribute to enclosing instance method
    public func patch<T: Deserializer, E: Encodable>(_ encodable: E, withDeserializer responseDeserializer: T, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> T.ResponseType {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:395:107: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                                                                                                          ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:395:17: note: add @available attribute to enclosing instance method
    public func patch(_ json: JSON, at relativePath: String? = nil, options: RestOptions = RestOptions()) async throws -> JSON {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:409:164: error: concurrency is only available in watchOS 6.0.0 or newer
    public func patch<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                                                                                                                                                                   ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:409:17: note: add @available attribute to enclosing instance method
    public func patch<E: Encodable, D: Decodable>(_ encodable: E, at relativePath: String? = nil, responseType type: D.Type, options: RestOptions = RestOptions()) async throws -> D {
                ^
/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift:52:14: note: add @available attribute to enclosing class
public class RestController : NSObject, URLSessionDelegate {
             ^
SwiftCompile normal arm64_32 Compiling\ RestController.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestController.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestController.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestController.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestController.dia -target arm64_32-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestController.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestController.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ RestController.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestController.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/Deserializer.swift -primary-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/JSON.swift /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/RestEssentials/RestController.swift -emit-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/JSON.d -emit-const-values-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/JSON.swiftconstvalues -emit-reference-dependencies-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/JSON.swiftdeps -serialize-diagnostics-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/JSON.dia -target arm64_32-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/RestEssentials_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -resource-dir /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/arm64_32 -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -module-name RestEssentials -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/JSON.o -index-unit-output-path /RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/arm64_32/JSON.o -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriver\ Compilation\ Requirements RestEssentials normal armv7k com.apple.xcode.tools.swift.compiler (in target 'RestEssentials' from project 'RestEssentials')
    cd /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RestEssentials -Onone -enforce-exclusivity\=checked @/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -target armv7k-apple-watchos4.0 -enable-bare-slash-regex -g -module-cache-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -c -j8 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -output-file-map /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials_const_extract_protocols.json -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources-normal/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources/armv7k -Xcc -I/Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RestEssentials.build/Debug-watchos/RestEssentials.build/Objects-normal/armv7k/RestEssentials-Swift.h -working-directory /Users/builder/builds/TDmZkXJm/2/finestructure/swiftpackageindex-builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal armv7k Emitting\ module\ for\ RestEssentials (in target 'RestEssentials' from project 'RestEssentials')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ RestEssentials (in target 'RestEssentials' from project 'RestEssentials')
(2 failures)
BUILD FAILURE 5.10 watchOS