The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Requests, reference master (8504a5), with Swift 6.1 for watchOS using Xcode 16.3 on 24 Apr 2025 14:14:00 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Requests -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504037771908-swift-frontend-Requests-AuthenticationProvider.swift-armv7k_apple_watchos2.0-o-Onone-1885208421.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2455 seconds (0.2510 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0190 ( 20.2%)   0.0586 ( 38.7%)   0.0776 ( 31.6%)   0.0804 ( 32.0%)  parse-and-resolve-imports
   0.0180 ( 19.1%)   0.0574 ( 37.9%)   0.0753 ( 30.7%)   0.0781 ( 31.1%)  Import resolution
   0.0097 ( 10.3%)   0.0070 (  4.6%)   0.0167 (  6.8%)   0.0167 (  6.6%)  perform-sema
   0.0096 ( 10.2%)   0.0070 (  4.6%)   0.0166 (  6.8%)   0.0166 (  6.6%)  Type checking and Semantic analysis
   0.0059 (  6.2%)   0.0054 (  3.6%)   0.0113 (  4.6%)   0.0113 (  4.5%)  typecheck-stmt
   0.0074 (  7.8%)   0.0023 (  1.5%)   0.0097 (  4.0%)   0.0097 (  3.9%)  SILGen
   0.0059 (  6.2%)   0.0017 (  1.1%)   0.0075 (  3.1%)   0.0075 (  3.0%)  SILGen-function
   0.0039 (  4.1%)   0.0033 (  2.2%)   0.0072 (  2.9%)   0.0072 (  2.9%)  IRGen
   0.0017 (  1.8%)   0.0037 (  2.4%)   0.0053 (  2.2%)   0.0054 (  2.1%)  import-clang-decl
   0.0036 (  3.9%)   0.0015 (  1.0%)   0.0052 (  2.1%)   0.0052 (  2.1%)  typecheck-decl
   0.0037 (  4.0%)   0.0002 (  0.2%)   0.0040 (  1.6%)   0.0040 (  1.6%)  SIL optimization
   0.0025 (  2.6%)   0.0009 (  0.6%)   0.0034 (  1.4%)   0.0034 (  1.4%)  typecheck-expr
   0.0024 (  2.5%)   0.0010 (  0.7%)   0.0034 (  1.4%)   0.0034 (  1.4%)  build-rewrite-system
   0.0009 (  0.9%)   0.0012 (  0.8%)   0.0020 (  0.8%)   0.0020 (  0.8%)  load-stdlib
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0001 (  0.1%)   0.0001 (  0.1%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0941 (100.0%)   0.1513 (100.0%)   0.2455 (100.0%)   0.2510 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.1462 seconds (0.1500 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0663 (100.0%)   0.0799 (100.0%)   0.1462 (100.0%)   0.1500 (100.0%)  Building Target
   0.0663 (100.0%)   0.0799 (100.0%)   0.1462 (100.0%)   0.1500 (100.0%)  Total
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:11:15: note: consider making struct 'AuthenticationProvider' conform to the 'Sendable' protocol
public struct AuthenticationProvider {
              ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: warning: static property 'bearerToken' is not concurrency-safe because non-'Sendable' type '(String) -> AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: note: add '@MainActor' to make static property 'bearerToken' part of global actor 'MainActor'
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Field.swift, RequestBody.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 Compiling\ AuthenticationProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:11:15: note: consider making struct 'AuthenticationProvider' conform to the 'Sendable' protocol
public struct AuthenticationProvider {
              ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none = AuthenticationProvider(authenticate: { _ in })
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: warning: static property 'bearerToken' is not concurrency-safe because non-'Sendable' type '(String) -> AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: note: add '@MainActor' to make static property 'bearerToken' part of global actor 'MainActor'
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bearerToken: (String) -> AuthenticationProvider = { token in
                      ^
    nonisolated(unsafe)
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504037779578-swift-frontend-Requests-AuthenticationProvider.swift-arm64_apple_watchos2.0-o-Onone-2759046856.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3895 seconds (0.3917 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0875 ( 45.7%)   0.0357 ( 18.0%)   0.1232 ( 31.6%)   0.1241 ( 31.7%)  build-rewrite-system
   0.0205 ( 10.7%)   0.0632 ( 32.0%)   0.0838 ( 21.5%)   0.0843 ( 21.5%)  parse-and-resolve-imports
   0.0193 ( 10.1%)   0.0617 ( 31.2%)   0.0810 ( 20.8%)   0.0816 ( 20.8%)  Import resolution
   0.0121 (  6.3%)   0.0124 (  6.3%)   0.0245 (  6.3%)   0.0246 (  6.3%)  import-clang-decl
   0.0090 (  4.7%)   0.0048 (  2.4%)   0.0138 (  3.5%)   0.0138 (  3.5%)  perform-sema
   0.0090 (  4.7%)   0.0048 (  2.4%)   0.0138 (  3.5%)   0.0138 (  3.5%)  Type checking and Semantic analysis
   0.0076 (  4.0%)   0.0024 (  1.2%)   0.0100 (  2.6%)   0.0100 (  2.6%)  SILGen
   0.0050 (  2.6%)   0.0030 (  1.5%)   0.0080 (  2.0%)   0.0080 (  2.0%)  typecheck-stmt
   0.0061 (  3.2%)   0.0018 (  0.9%)   0.0078 (  2.0%)   0.0078 (  2.0%)  SILGen-function
   0.0036 (  1.9%)   0.0033 (  1.6%)   0.0069 (  1.8%)   0.0069 (  1.8%)  IRGen
   0.0038 (  2.0%)   0.0017 (  0.9%)   0.0056 (  1.4%)   0.0056 (  1.4%)  typecheck-decl
   0.0026 (  1.3%)   0.0011 (  0.6%)   0.0037 (  1.0%)   0.0037 (  0.9%)  typecheck-expr
   0.0036 (  1.9%)   0.0001 (  0.1%)   0.0037 (  0.9%)   0.0037 (  0.9%)  SIL optimization
   0.0009 (  0.5%)   0.0015 (  0.8%)   0.0025 (  0.6%)   0.0025 (  0.6%)  load-stdlib
   0.0008 (  0.4%)   0.0003 (  0.2%)   0.0011 (  0.3%)   0.0011 (  0.3%)  load-all-members
   0.0002 (  0.1%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.1916 (100.0%)   0.1979 (100.0%)   0.3895 (100.0%)   0.3917 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.1789 seconds (1.2159 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.8766 (100.0%)   0.3023 (100.0%)   1.1789 (100.0%)   1.2159 (100.0%)  Building Target
   0.8766 (100.0%)   0.3023 (100.0%)   1.1789 (100.0%)   1.2159 (100.0%)  Total
SwiftDriverJobDiscovery normal arm64_32 Compiling ResponseDecoder.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 Compiling\ URLQueryItem+ExpresibleByDictionaryLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504037789920-swift-frontend-Requests-URLQueryItem_ExpresibleByDictionaryLiteral.swift-arm64_apple_watchos2.0-o-Onone-3663384135.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3245 seconds (0.3285 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0857 ( 53.6%)   0.0341 ( 20.7%)   0.1197 ( 36.9%)   0.1226 ( 37.3%)  build-rewrite-system
   0.0192 ( 12.0%)   0.0539 ( 32.7%)   0.0730 ( 22.5%)   0.0736 ( 22.4%)  parse-and-resolve-imports
   0.0180 ( 11.3%)   0.0521 ( 31.6%)   0.0701 ( 21.6%)   0.0706 ( 21.5%)  Import resolution
   0.0115 (  7.2%)   0.0107 (  6.5%)   0.0222 (  6.8%)   0.0223 (  6.8%)  import-clang-decl
   0.0031 (  2.0%)   0.0040 (  2.4%)   0.0072 (  2.2%)   0.0072 (  2.2%)  IRGen
   0.0045 (  2.8%)   0.0020 (  1.2%)   0.0064 (  2.0%)   0.0064 (  2.0%)  perform-sema
   0.0044 (  2.8%)   0.0019 (  1.2%)   0.0063 (  2.0%)   0.0063 (  1.9%)  Type checking and Semantic analysis
   0.0025 (  1.6%)   0.0012 (  0.7%)   0.0037 (  1.1%)   0.0037 (  1.1%)  typecheck-decl
   0.0011 (  0.7%)   0.0022 (  1.4%)   0.0033 (  1.0%)   0.0033 (  1.0%)  load-stdlib
   0.0029 (  1.8%)   0.0001 (  0.0%)   0.0030 (  0.9%)   0.0030 (  0.9%)  SIL optimization
   0.0018 (  1.1%)   0.0007 (  0.4%)   0.0025 (  0.8%)   0.0025 (  0.8%)  typecheck-stmt
   0.0018 (  1.1%)   0.0007 (  0.4%)   0.0025 (  0.8%)   0.0025 (  0.8%)  typecheck-expr
   0.0016 (  1.0%)   0.0006 (  0.4%)   0.0023 (  0.7%)   0.0023 (  0.7%)  SILGen
   0.0009 (  0.6%)   0.0003 (  0.2%)   0.0012 (  0.4%)   0.0012 (  0.4%)  SILGen-function
   0.0007 (  0.4%)   0.0002 (  0.1%)   0.0009 (  0.3%)   0.0009 (  0.3%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.1598 (100.0%)   0.1647 (100.0%)   0.3245 (100.0%)   0.3285 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.1615 seconds (1.2063 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.8644 (100.0%)   0.2970 (100.0%)   1.1615 (100.0%)   1.2063 (100.0%)  Building Target
   0.8644 (100.0%)   0.2970 (100.0%)   1.1615 (100.0%)   1.2063 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
^
/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: note: add '@retroactive' to silence this warning
extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
^                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                 @retroactive ExpressibleByDictionaryLiteral
SwiftDriverJobDiscovery normal armv7k Compiling URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal armv7k Compiling\ RequestConvertible.swift,\ BodyProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/RequestConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504037794118-swift-frontend-Requests-RequestConvertible.swift-armv7k_apple_watchos2.0-o-Onone-3987477956.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3529 seconds (0.3576 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0195 ( 10.2%)   0.0522 ( 32.5%)   0.0717 ( 20.3%)   0.0722 ( 20.2%)  parse-and-resolve-imports
   0.0181 (  9.4%)   0.0508 ( 31.6%)   0.0688 ( 19.5%)   0.0692 ( 19.3%)  Import resolution
   0.0329 ( 17.1%)   0.0119 (  7.4%)   0.0447 ( 12.7%)   0.0450 ( 12.6%)  perform-sema
   0.0328 ( 17.0%)   0.0119 (  7.4%)   0.0446 ( 12.6%)   0.0449 ( 12.5%)  Type checking and Semantic analysis
   0.0185 (  9.6%)   0.0070 (  4.4%)   0.0255 (  7.2%)   0.0256 (  7.2%)  typecheck-decl
   0.0162 (  8.4%)   0.0061 (  3.8%)   0.0223 (  6.3%)   0.0224 (  6.3%)  typecheck-stmt
   0.0121 (  6.3%)   0.0049 (  3.1%)   0.0170 (  4.8%)   0.0170 (  4.8%)  typecheck-expr
   0.0107 (  5.5%)   0.0018 (  1.1%)   0.0125 (  3.5%)   0.0137 (  3.8%)  SILGen
   0.0081 (  4.2%)   0.0046 (  2.9%)   0.0127 (  3.6%)   0.0130 (  3.6%)  IRGen
   0.0075 (  3.9%)   0.0012 (  0.7%)   0.0086 (  2.4%)   0.0098 (  2.7%)  SILGen-function
   0.0057 (  2.9%)   0.0019 (  1.2%)   0.0075 (  2.1%)   0.0075 (  2.1%)  build-rewrite-system
   0.0033 (  1.7%)   0.0038 (  2.4%)   0.0071 (  2.0%)   0.0073 (  2.0%)  import-clang-decl
   0.0046 (  2.4%)   0.0001 (  0.1%)   0.0047 (  1.3%)   0.0047 (  1.3%)  SIL optimization
   0.0010 (  0.5%)   0.0024 (  1.5%)   0.0035 (  1.0%)   0.0035 (  1.0%)  load-stdlib
   0.0014 (  0.8%)   0.0001 (  0.1%)   0.0016 (  0.4%)   0.0017 (  0.5%)  precheck-target
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.1923 (100.0%)   0.1607 (100.0%)   0.3529 (100.0%)   0.3576 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2052 seconds (0.2091 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1217 (100.0%)   0.0836 (100.0%)   0.2052 (100.0%)   0.2091 (100.0%)  Building Target
   0.1217 (100.0%)   0.0836 (100.0%)   0.2052 (100.0%)   0.2091 (100.0%)  Total
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/RequestConvertible.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'BodyProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    static let none = BodyProvider { header in
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:26:15: note: consider making struct 'BodyProvider' conform to the 'Sendable' protocol
public struct BodyProvider {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    static let none = BodyProvider { header in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let none = BodyProvider { header in
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling URLSession+Requests.swift, Header.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal armv7k Compiling\ ResponseDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504037796194-swift-frontend-Requests-ResponseDecoder.swift-armv7k_apple_watchos2.0-o-Onone-1465266846.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2561 seconds (0.2573 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0200 ( 18.4%)   0.0567 ( 38.5%)   0.0767 ( 29.9%)   0.0771 ( 30.0%)  parse-and-resolve-imports
   0.0190 ( 17.4%)   0.0550 ( 37.4%)   0.0740 ( 28.9%)   0.0744 ( 28.9%)  Import resolution
   0.0135 ( 12.4%)   0.0056 (  3.8%)   0.0192 (  7.5%)   0.0192 (  7.5%)  perform-sema
   0.0135 ( 12.4%)   0.0056 (  3.8%)   0.0191 (  7.5%)   0.0192 (  7.4%)  Type checking and Semantic analysis
   0.0086 (  7.9%)   0.0033 (  2.3%)   0.0119 (  4.7%)   0.0120 (  4.7%)  typecheck-stmt
   0.0072 (  6.6%)   0.0027 (  1.9%)   0.0099 (  3.9%)   0.0099 (  3.9%)  SILGen
   0.0043 (  3.9%)   0.0036 (  2.5%)   0.0079 (  3.1%)   0.0079 (  3.1%)  IRGen
   0.0054 (  5.0%)   0.0023 (  1.6%)   0.0077 (  3.0%)   0.0078 (  3.0%)  build-rewrite-system
   0.0046 (  4.2%)   0.0022 (  1.5%)   0.0068 (  2.7%)   0.0069 (  2.7%)  typecheck-decl
   0.0013 (  1.2%)   0.0055 (  3.7%)   0.0067 (  2.6%)   0.0067 (  2.6%)  load-stdlib
   0.0041 (  3.8%)   0.0015 (  1.0%)   0.0057 (  2.2%)   0.0057 (  2.2%)  SILGen-function
   0.0035 (  3.2%)   0.0001 (  0.1%)   0.0036 (  1.4%)   0.0037 (  1.4%)  SIL optimization
   0.0016 (  1.5%)   0.0019 (  1.3%)   0.0035 (  1.4%)   0.0035 (  1.3%)  import-clang-decl
   0.0018 (  1.6%)   0.0008 (  0.5%)   0.0025 (  1.0%)   0.0025 (  1.0%)  typecheck-expr
   0.0006 (  0.5%)   0.0001 (  0.1%)   0.0007 (  0.3%)   0.0007 (  0.3%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1090 (100.0%)   0.1470 (100.0%)   0.2561 (100.0%)   0.2573 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.1500 seconds (0.1507 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0692 (100.0%)   0.0808 (100.0%)   0.1500 (100.0%)   0.1507 (100.0%)  Building Target
   0.0692 (100.0%)   0.0808 (100.0%)   0.1500 (100.0%)   0.1507 (100.0%)  Total
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<()>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none = ResponseDecoder { _, _ in () }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none = ResponseDecoder { _, _ in () }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none = ResponseDecoder { _, _ in () }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let data = ResponseDecoder { _, data in data }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    public static let data = ResponseDecoder { _, data in data }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let data = ResponseDecoder { _, data in data }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling RequestConvertible.swift, BodyProvider.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 Compiling\ DefaultValue.swift /Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504037801403-swift-frontend-Requests-DefaultValue.swift-arm64_apple_watchos2.0-o-Onone-3113229473.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3510 seconds (0.3524 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0867 ( 52.6%)   0.0341 ( 18.3%)   0.1208 ( 34.4%)   0.1217 ( 34.5%)  build-rewrite-system
   0.0207 ( 12.6%)   0.0624 ( 33.5%)   0.0831 ( 23.7%)   0.0833 ( 23.6%)  parse-and-resolve-imports
   0.0197 ( 11.9%)   0.0612 ( 32.9%)   0.0809 ( 23.0%)   0.0810 ( 23.0%)  Import resolution
   0.0120 (  7.3%)   0.0118 (  6.3%)   0.0238 (  6.8%)   0.0239 (  6.8%)  import-clang-decl
   0.0040 (  2.4%)   0.0021 (  1.2%)   0.0062 (  1.8%)   0.0062 (  1.8%)  perform-sema
   0.0040 (  2.4%)   0.0021 (  1.1%)   0.0061 (  1.7%)   0.0061 (  1.7%)  Type checking and Semantic analysis
   0.0039 (  2.4%)   0.0020 (  1.1%)   0.0060 (  1.7%)   0.0060 (  1.7%)  typecheck-decl
   0.0011 (  0.7%)   0.0039 (  2.1%)   0.0050 (  1.4%)   0.0050 (  1.4%)  load-stdlib
   0.0026 (  1.6%)   0.0024 (  1.3%)   0.0050 (  1.4%)   0.0050 (  1.4%)  IRGen
   0.0028 (  1.7%)   0.0014 (  0.8%)   0.0042 (  1.2%)   0.0042 (  1.2%)  typecheck-expr
   0.0023 (  1.4%)   0.0009 (  0.5%)   0.0033 (  0.9%)   0.0033 (  0.9%)  SILGen
   0.0020 (  1.2%)   0.0008 (  0.4%)   0.0028 (  0.8%)   0.0028 (  0.8%)  SILGen-function
   0.0016 (  0.9%)   0.0000 (  0.0%)   0.0016 (  0.5%)   0.0016 (  0.5%)  SIL optimization
   0.0008 (  0.5%)   0.0005 (  0.3%)   0.0013 (  0.4%)   0.0013 (  0.4%)  load-all-members
   0.0006 (  0.3%)   0.0004 (  0.2%)   0.0010 (  0.3%)   0.0010 (  0.3%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.1648 (100.0%)   0.1862 (100.0%)   0.3510 (100.0%)   0.3524 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.1664 seconds (1.1944 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.8621 (100.0%)   0.3043 (100.0%)   1.1664 (100.0%)   1.1944 (100.0%)  Building Target
   0.8621 (100.0%)   0.3043 (100.0%)   1.1664 (100.0%)   1.1944 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:14:23: warning: static property 'method' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let method: HTTPMethod = .get
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:14:23: note: add '@MainActor' to make static property 'method' part of global actor 'MainActor'
    public static let method: HTTPMethod = .get
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let method: HTTPMethod = .get
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:17:23: warning: static property 'header' is not concurrency-safe because non-'Sendable' type 'Header' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let header: Header = .empty
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Header.swift:12:15: note: consider making struct 'Header' conform to the 'Sendable' protocol
public struct Header: Hashable {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:17:23: note: add '@MainActor' to make static property 'header' part of global actor 'MainActor'
    public static let header: Header = .empty
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let header: Header = .empty
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:29:23: warning: static property 'bodyProvider' is not concurrency-safe because non-'Sendable' type 'BodyProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bodyProvider: BodyProvider = .none
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:26:15: note: consider making struct 'BodyProvider' conform to the 'Sendable' protocol
public struct BodyProvider {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:29:23: note: add '@MainActor' to make static property 'bodyProvider' part of global actor 'MainActor'
    public static let bodyProvider: BodyProvider = .none
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bodyProvider: BodyProvider = .none
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:32:23: warning: static property 'authenticationProvider' is not concurrency-safe because non-'Sendable' type 'AuthenticationProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let authenticationProvider: AuthenticationProvider = .none
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/AuthenticationProvider.swift:11:15: note: consider making struct 'AuthenticationProvider' conform to the 'Sendable' protocol
public struct AuthenticationProvider {
              ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:32:23: note: add '@MainActor' to make static property 'authenticationProvider' part of global actor 'MainActor'
    public static let authenticationProvider: AuthenticationProvider = .none
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DefaultValue.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let authenticationProvider: AuthenticationProvider = .none
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Request.swift, URL+StaticString.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 Compiling\ ResponseDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<()>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none = ResponseDecoder { _, _ in () }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none = ResponseDecoder { _, _ in () }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none = ResponseDecoder { _, _ in () }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: warning: static property 'data' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let data = ResponseDecoder { _, data in data }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    public static let data = ResponseDecoder { _, data in data }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let data = ResponseDecoder { _, data in data }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'ResponseDecoder<String>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:11:15: note: consider making generic struct 'ResponseDecoder' conform to the 'Sendable' protocol
public struct ResponseDecoder<Response> {
              ^
                                        : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ResponseDecoder.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let text = ResponseDecoder<String>.text(encoding: .utf8)
                      ^
    nonisolated(unsafe)
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504037826415-swift-frontend-Requests-ResponseDecoder.swift-arm64_apple_watchos2.0-o-Onone-2954729916.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3418 seconds (0.3441 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0851 ( 43.7%)   0.0339 ( 23.1%)   0.1190 ( 34.8%)   0.1196 ( 34.8%)  build-rewrite-system
   0.0195 ( 10.0%)   0.0354 ( 24.1%)   0.0548 ( 16.0%)   0.0550 ( 16.0%)  parse-and-resolve-imports
   0.0184 (  9.4%)   0.0326 ( 22.2%)   0.0510 ( 14.9%)   0.0511 ( 14.9%)  Import resolution
   0.0115 (  5.9%)   0.0116 (  7.9%)   0.0232 (  6.8%)   0.0237 (  6.9%)  import-clang-decl
   0.0135 (  7.0%)   0.0063 (  4.3%)   0.0198 (  5.8%)   0.0199 (  5.8%)  perform-sema
   0.0135 (  6.9%)   0.0062 (  4.2%)   0.0197 (  5.8%)   0.0198 (  5.8%)  Type checking and Semantic analysis
   0.0088 (  4.5%)   0.0036 (  2.4%)   0.0124 (  3.6%)   0.0125 (  3.6%)  typecheck-stmt
   0.0011 (  0.6%)   0.0064 (  4.4%)   0.0075 (  2.2%)   0.0083 (  2.4%)  load-stdlib
   0.0037 (  1.9%)   0.0041 (  2.8%)   0.0078 (  2.3%)   0.0078 (  2.3%)  IRGen
   0.0058 (  3.0%)   0.0020 (  1.3%)   0.0078 (  2.3%)   0.0078 (  2.3%)  SILGen
   0.0044 (  2.2%)   0.0026 (  1.8%)   0.0069 (  2.0%)   0.0069 (  2.0%)  typecheck-decl
   0.0032 (  1.7%)   0.0011 (  0.7%)   0.0043 (  1.3%)   0.0043 (  1.3%)  SILGen-function
   0.0035 (  1.8%)   0.0001 (  0.0%)   0.0035 (  1.0%)   0.0035 (  1.0%)  SIL optimization
   0.0016 (  0.8%)   0.0007 (  0.5%)   0.0023 (  0.7%)   0.0023 (  0.7%)  typecheck-expr
   0.0007 (  0.4%)   0.0002 (  0.1%)   0.0009 (  0.3%)   0.0009 (  0.3%)  load-all-members
   0.0005 (  0.3%)   0.0001 (  0.0%)   0.0006 (  0.2%)   0.0006 (  0.2%)  precheck-target
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.1949 (100.0%)   0.1469 (100.0%)   0.3418 (100.0%)   0.3441 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.1445 seconds (1.1687 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.8697 (100.0%)   0.2748 (100.0%)   1.1445 (100.0%)   1.1687 (100.0%)  Building Target
   0.8697 (100.0%)   0.2748 (100.0%)   1.1445 (100.0%)   1.1687 (100.0%)  Total
SwiftDriverJobDiscovery normal armv7k Compiling Request.swift, URL+StaticString.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64_32 Compiling\ URLQueryItem+ExpresibleByDictionaryLiteral.swift /Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504037991143-swift-frontend-Requests-URLQueryItem_ExpresibleByDictionaryLiteral.swift-arm64_32_apple_watchos2.0-o-Onone-1745692027.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.1126 seconds (0.1130 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0184 ( 30.2%)   0.0199 ( 38.6%)   0.0383 ( 34.0%)   0.0385 ( 34.0%)  parse-and-resolve-imports
   0.0171 ( 28.0%)   0.0185 ( 35.8%)   0.0355 ( 31.5%)   0.0357 ( 31.6%)  Import resolution
   0.0030 (  4.9%)   0.0032 (  6.2%)   0.0062 (  5.5%)   0.0062 (  5.5%)  IRGen
   0.0040 (  6.5%)   0.0018 (  3.5%)   0.0058 (  5.1%)   0.0058 (  5.1%)  perform-sema
   0.0039 (  6.5%)   0.0018 (  3.4%)   0.0057 (  5.1%)   0.0057 (  5.1%)  Type checking and Semantic analysis
   0.0023 (  3.8%)   0.0009 (  1.8%)   0.0032 (  2.9%)   0.0032 (  2.9%)  SILGen
   0.0030 (  4.8%)   0.0001 (  0.2%)   0.0031 (  2.7%)   0.0030 (  2.7%)  SIL optimization
   0.0020 (  3.3%)   0.0010 (  2.0%)   0.0030 (  2.7%)   0.0030 (  2.7%)  typecheck-decl
   0.0010 (  1.6%)   0.0017 (  3.3%)   0.0027 (  2.4%)   0.0027 (  2.4%)  load-stdlib
   0.0018 (  3.0%)   0.0007 (  1.4%)   0.0025 (  2.3%)   0.0025 (  2.2%)  typecheck-stmt
   0.0018 (  3.0%)   0.0007 (  1.4%)   0.0025 (  2.2%)   0.0025 (  2.2%)  typecheck-expr
   0.0015 (  2.4%)   0.0005 (  0.9%)   0.0020 (  1.7%)   0.0020 (  1.7%)  SILGen-function
   0.0008 (  1.4%)   0.0003 (  0.6%)   0.0011 (  1.0%)   0.0011 (  1.0%)  build-rewrite-system
   0.0003 (  0.6%)   0.0005 (  1.0%)   0.0009 (  0.8%)   0.0009 (  0.8%)  import-clang-decl
   0.0000 (  0.1%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.1%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0610 (100.0%)   0.0516 (100.0%)   0.1126 (100.0%)   0.1130 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.0767 seconds (0.0769 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0442 (100.0%)   0.0325 (100.0%)   0.0767 (100.0%)   0.0769 (100.0%)  Building Target
   0.0442 (100.0%)   0.0325 (100.0%)   0.0767 (100.0%)   0.0769 (100.0%)  Total
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
^
/Users/admin/builder/spi-builder-workspace/Sources/URLQueryItem+ExpresibleByDictionaryLiteral.swift:7:1: note: add '@retroactive' to silence this warning
extension Array: ExpressibleByDictionaryLiteral where Element == URLQueryItem {
^                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                 @retroactive ExpressibleByDictionaryLiteral
SwiftDriverJobDiscovery normal armv7k Compiling AuthenticationProvider.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 Compiling\ RequestConvertible.swift,\ BodyProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/RequestConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504038014143-swift-frontend-Requests-RequestConvertible.swift-arm64_apple_watchos2.0-o-Onone-2865442241.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4064 seconds (0.4069 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0809 ( 29.5%)   0.0299 ( 22.6%)   0.1108 ( 27.3%)   0.1108 ( 27.2%)  build-rewrite-system
   0.0322 ( 11.7%)   0.0109 (  8.3%)   0.0432 ( 10.6%)   0.0432 ( 10.6%)  perform-sema
   0.0321 ( 11.7%)   0.0109 (  8.3%)   0.0430 ( 10.6%)   0.0430 ( 10.6%)  Type checking and Semantic analysis
   0.0186 (  6.8%)   0.0219 ( 16.5%)   0.0405 ( 10.0%)   0.0405 (  9.9%)  parse-and-resolve-imports
   0.0177 (  6.4%)   0.0210 ( 15.9%)   0.0386 (  9.5%)   0.0386 (  9.5%)  Import resolution
   0.0176 (  6.4%)   0.0059 (  4.5%)   0.0236 (  5.8%)   0.0236 (  5.8%)  typecheck-decl
   0.0165 (  6.0%)   0.0061 (  4.6%)   0.0226 (  5.6%)   0.0226 (  5.6%)  typecheck-stmt
   0.0115 (  4.2%)   0.0099 (  7.5%)   0.0213 (  5.3%)   0.0217 (  5.3%)  import-clang-decl
   0.0128 (  4.7%)   0.0047 (  3.6%)   0.0176 (  4.3%)   0.0176 (  4.3%)  typecheck-expr
   0.0114 (  4.2%)   0.0024 (  1.8%)   0.0138 (  3.4%)   0.0138 (  3.4%)  SILGen
   0.0071 (  2.6%)   0.0047 (  3.6%)   0.0118 (  2.9%)   0.0118 (  2.9%)  IRGen
   0.0080 (  2.9%)   0.0015 (  1.2%)   0.0095 (  2.3%)   0.0095 (  2.3%)  SILGen-function
   0.0046 (  1.7%)   0.0000 (  0.0%)   0.0047 (  1.1%)   0.0047 (  1.1%)  SIL optimization
   0.0010 (  0.4%)   0.0020 (  1.5%)   0.0030 (  0.7%)   0.0030 (  0.7%)  load-stdlib
   0.0014 (  0.5%)   0.0001 (  0.1%)   0.0015 (  0.4%)   0.0015 (  0.4%)  precheck-target
   0.0007 (  0.2%)   0.0002 (  0.1%)   0.0009 (  0.2%)   0.0009 (  0.2%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2743 (100.0%)   0.1322 (100.0%)   0.4064 (100.0%)   0.4069 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.9700 seconds (0.9904 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.7907 (100.0%)   0.1793 (100.0%)   0.9700 (100.0%)   0.9904 (100.0%)  Building Target
   0.7907 (100.0%)   0.1793 (100.0%)   0.9700 (100.0%)   0.9904 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RequestConvertible.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'BodyProvider' may have shared mutable state; this is an error in the Swift 6 language mode
    static let none = BodyProvider { header in
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:26:15: note: consider making struct 'BodyProvider' conform to the 'Sendable' protocol
public struct BodyProvider {
              ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    static let none = BodyProvider { header in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BodyProvider.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let none = BodyProvider { header in
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling ResponseDecoder.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal armv7k Compiling\ Field.swift,\ RequestBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Field.swift /Users/admin/builder/spi-builder-workspace/Sources/RequestBody.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504038029568-swift-frontend-Requests-Field.swift-armv7k_apple_watchos2.0-o-Onone-4069861612.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2250 seconds (0.2250 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0184 ( 12.5%)   0.0213 ( 27.2%)   0.0397 ( 17.7%)   0.0397 ( 17.7%)  parse-and-resolve-imports
   0.0171 ( 11.7%)   0.0200 ( 25.5%)   0.0371 ( 16.5%)   0.0371 ( 16.5%)  Import resolution
   0.0210 ( 14.3%)   0.0075 (  9.5%)   0.0285 ( 12.7%)   0.0285 ( 12.7%)  perform-sema
   0.0209 ( 14.3%)   0.0075 (  9.5%)   0.0284 ( 12.6%)   0.0284 ( 12.6%)  Type checking and Semantic analysis
   0.0176 ( 12.0%)   0.0069 (  8.9%)   0.0245 ( 10.9%)   0.0245 ( 10.9%)  typecheck-decl
   0.0105 (  7.1%)   0.0018 (  2.3%)   0.0123 (  5.5%)   0.0123 (  5.5%)  SILGen
   0.0067 (  4.6%)   0.0043 (  5.5%)   0.0110 (  4.9%)   0.0110 (  4.9%)  IRGen
   0.0081 (  5.5%)   0.0008 (  1.1%)   0.0089 (  4.0%)   0.0089 (  4.0%)  typecheck-stmt
   0.0079 (  5.4%)   0.0010 (  1.3%)   0.0089 (  3.9%)   0.0088 (  3.9%)  SILGen-function
   0.0063 (  4.3%)   0.0007 (  0.9%)   0.0070 (  3.1%)   0.0070 (  3.1%)  typecheck-expr
   0.0040 (  2.7%)   0.0018 (  2.3%)   0.0058 (  2.6%)   0.0058 (  2.6%)  build-rewrite-system
   0.0021 (  1.4%)   0.0025 (  3.2%)   0.0046 (  2.0%)   0.0046 (  2.0%)  import-clang-decl
   0.0037 (  2.5%)   0.0000 (  0.0%)   0.0037 (  1.6%)   0.0037 (  1.6%)  SIL optimization
   0.0011 (  0.7%)   0.0021 (  2.6%)   0.0031 (  1.4%)   0.0031 (  1.4%)  load-stdlib
   0.0013 (  0.9%)   0.0000 (  0.1%)   0.0014 (  0.6%)   0.0014 (  0.6%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1467 (100.0%)   0.0783 (100.0%)   0.2250 (100.0%)   0.2250 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.1511 seconds (0.1530 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1013 (100.0%)   0.0497 (100.0%)   0.1511 (100.0%)   0.1530 (100.0%)  Building Target
   0.1013 (100.0%)   0.0497 (100.0%)   0.1511 (100.0%)   0.1530 (100.0%)  Total
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Field.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept: Field.Name = "Accept"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
    static let accept: Field.Name = "Accept"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept: Field.Name = "Accept"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: warning: static property 'acceptLanguage' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: note: add '@MainActor' to make static property 'acceptLanguage' part of global actor 'MainActor'
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let authorization: Field.Name = "Authorization"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: note: add '@MainActor' to make static property 'authorization' part of global actor 'MainActor'
    static let authorization: Field.Name = "Authorization"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let authorization: Field.Name = "Authorization"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let contentType: Field.Name = "Content-Type"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
    static let contentType: Field.Name = "Content-Type"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let contentType: Field.Name = "Content-Type"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type '(MediaType) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type '(MediaType) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: warning: static property 'acceptLanguage' is not concurrency-safe because non-'Sendable' type '(String) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: note: add '@MainActor' to make static property 'acceptLanguage' part of global actor 'MainActor'
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/RequestBody.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal armv7k Compiling HTTPMethod.swift, MediaType.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 Compiling\ CaseInsensitiveString.swift,\ RequestError.swift /Users/admin/builder/spi-builder-workspace/Sources/CaseInsensitiveString.swift /Users/admin/builder/spi-builder-workspace/Sources/RequestError.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CaseInsensitiveString.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RequestError.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504038070145-swift-frontend-Requests-CaseInsensitiveString.swift-arm64_apple_watchos2.0-o-Onone-180796026.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3413 seconds (0.3436 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0808 ( 35.7%)   0.0294 ( 25.5%)   0.1102 ( 32.3%)   0.1117 ( 32.5%)  build-rewrite-system
   0.0187 (  8.2%)   0.0216 ( 18.8%)   0.0403 ( 11.8%)   0.0403 ( 11.7%)  parse-and-resolve-imports
   0.0176 (  7.8%)   0.0205 ( 17.8%)   0.0381 ( 11.2%)   0.0381 ( 11.1%)  Import resolution
   0.0254 ( 11.2%)   0.0085 (  7.4%)   0.0339 (  9.9%)   0.0340 (  9.9%)  perform-sema
   0.0253 ( 11.2%)   0.0085 (  7.3%)   0.0338 (  9.9%)   0.0339 (  9.9%)  Type checking and Semantic analysis
   0.0132 (  5.8%)   0.0092 (  8.0%)   0.0224 (  6.6%)   0.0226 (  6.6%)  import-clang-decl
   0.0156 (  6.9%)   0.0047 (  4.1%)   0.0203 (  6.0%)   0.0203 (  5.9%)  typecheck-decl
   0.0096 (  4.3%)   0.0037 (  3.2%)   0.0134 (  3.9%)   0.0134 (  3.9%)  typecheck-stmt
   0.0063 (  2.8%)   0.0049 (  4.3%)   0.0113 (  3.3%)   0.0115 (  3.4%)  IRGen
   0.0039 (  1.7%)   0.0008 (  0.7%)   0.0047 (  1.4%)   0.0048 (  1.4%)  SILGen
   0.0025 (  1.1%)   0.0007 (  0.6%)   0.0032 (  0.9%)   0.0032 (  0.9%)  typecheck-expr
   0.0011 (  0.5%)   0.0021 (  1.8%)   0.0031 (  0.9%)   0.0031 (  0.9%)  load-stdlib
   0.0028 (  1.3%)   0.0000 (  0.0%)   0.0029 (  0.8%)   0.0029 (  0.8%)  SIL optimization
   0.0015 (  0.7%)   0.0002 (  0.2%)   0.0017 (  0.5%)   0.0017 (  0.5%)  SILGen-function
   0.0010 (  0.4%)   0.0004 (  0.3%)   0.0014 (  0.4%)   0.0014 (  0.4%)  load-all-members
   0.0006 (  0.3%)   0.0000 (  0.0%)   0.0007 (  0.2%)   0.0007 (  0.2%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.2262 (100.0%)   0.1152 (100.0%)   0.3413 (100.0%)   0.3436 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.9057 seconds (0.9321 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.7373 (100.0%)   0.1684 (100.0%)   0.9057 (100.0%)   0.9321 (100.0%)  Building Target
   0.7373 (100.0%)   0.1684 (100.0%)   0.9057 (100.0%)   0.9321 (100.0%)  Total
SwiftDriverJobDiscovery normal armv7k Compiling RequestConvertible.swift, BodyProvider.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 Compiling\ Field.swift,\ RequestBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Field.swift /Users/admin/builder/spi-builder-workspace/Sources/RequestBody.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504038136554-swift-frontend-Requests-Field.swift-arm64_apple_watchos2.0-o-Onone-992790433.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3444 seconds (0.3535 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0799 ( 34.5%)   0.0300 ( 26.6%)   0.1099 ( 31.9%)   0.1118 ( 31.6%)  build-rewrite-system
   0.0189 (  8.2%)   0.0211 ( 18.7%)   0.0400 ( 11.6%)   0.0403 ( 11.4%)  parse-and-resolve-imports
   0.0180 (  7.8%)   0.0201 ( 17.8%)   0.0381 ( 11.1%)   0.0384 ( 10.9%)  Import resolution
   0.0200 (  8.7%)   0.0071 (  6.2%)   0.0271 (  7.9%)   0.0288 (  8.1%)  perform-sema
   0.0200 (  8.6%)   0.0070 (  6.2%)   0.0270 (  7.8%)   0.0287 (  8.1%)  Type checking and Semantic analysis
   0.0168 (  7.2%)   0.0066 (  5.8%)   0.0233 (  6.8%)   0.0250 (  7.1%)  typecheck-decl
   0.0114 (  4.9%)   0.0104 (  9.2%)   0.0219 (  6.3%)   0.0219 (  6.2%)  import-clang-decl
   0.0112 (  4.8%)   0.0023 (  2.0%)   0.0135 (  3.9%)   0.0136 (  3.8%)  SILGen
   0.0084 (  3.6%)   0.0013 (  1.1%)   0.0097 (  2.8%)   0.0097 (  2.7%)  SILGen-function
   0.0081 (  3.5%)   0.0008 (  0.7%)   0.0088 (  2.6%)   0.0089 (  2.5%)  typecheck-stmt
   0.0054 (  2.4%)   0.0031 (  2.8%)   0.0086 (  2.5%)   0.0086 (  2.4%)  IRGen
   0.0062 (  2.7%)   0.0006 (  0.5%)   0.0068 (  2.0%)   0.0068 (  1.9%)  typecheck-expr
   0.0037 (  1.6%)   0.0001 (  0.1%)   0.0037 (  1.1%)   0.0038 (  1.1%)  SIL optimization
   0.0010 (  0.4%)   0.0016 (  1.4%)   0.0026 (  0.7%)   0.0026 (  0.7%)  load-stdlib
   0.0010 (  0.4%)   0.0009 (  0.8%)   0.0019 (  0.6%)   0.0019 (  0.5%)  load-all-members
   0.0013 (  0.6%)   0.0000 (  0.0%)   0.0014 (  0.4%)   0.0014 (  0.4%)  precheck-target
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0013 (  0.4%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2315 (100.0%)   0.1129 (100.0%)   0.3444 (100.0%)   0.3535 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8835 seconds (0.8991 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.7239 (100.0%)   0.1597 (100.0%)   0.8835 (100.0%)   0.8991 (100.0%)  Building Target
   0.7239 (100.0%)   0.1597 (100.0%)   0.8835 (100.0%)   0.8991 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Field.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept: Field.Name = "Accept"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
    static let accept: Field.Name = "Accept"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept: Field.Name = "Accept"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: warning: static property 'acceptLanguage' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: note: add '@MainActor' to make static property 'acceptLanguage' part of global actor 'MainActor'
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:90:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let acceptLanguage: Field.Name = "Accept-Language"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: warning: static property 'authorization' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let authorization: Field.Name = "Authorization"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: note: add '@MainActor' to make static property 'authorization' part of global actor 'MainActor'
    static let authorization: Field.Name = "Authorization"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:92:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let authorization: Field.Name = "Authorization"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type 'Field.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    static let contentType: Field.Name = "Content-Type"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:15:19: note: consider making struct 'Name' conform to the 'Sendable' protocol
    public struct Name: Hashable, RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible {
                  ^
                                                                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
    static let contentType: Field.Name = "Content-Type"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:94:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let contentType: Field.Name = "Content-Type"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: warning: static property 'contentType' is not concurrency-safe because non-'Sendable' type '(MediaType) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: note: add '@MainActor' to make static property 'contentType' part of global actor 'MainActor'
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:100:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let contentType: (MediaType) -> Field = { Field(name: .contentType, value: $0.rawValue) }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: warning: static property 'accept' is not concurrency-safe because non-'Sendable' type '(MediaType) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: note: add '@MainActor' to make static property 'accept' part of global actor 'MainActor'
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:102:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept: (MediaType) -> Field = { Field(name: .accept, value: $0.rawValue) }
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: warning: static property 'acceptLanguage' is not concurrency-safe because non-'Sendable' type '(String) -> Field' may have shared mutable state; this is an error in the Swift 6 language mode
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: note: add '@MainActor' to make static property 'acceptLanguage' part of global actor 'MainActor'
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Field.swift:104:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let acceptLanguage = { Field(name: .acceptLanguage, value: $0) }
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RequestBody.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal arm64_32 Compiling URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64_32 Compiling\ CaseInsensitiveString.swift,\ RequestError.swift /Users/admin/builder/spi-builder-workspace/Sources/CaseInsensitiveString.swift /Users/admin/builder/spi-builder-workspace/Sources/RequestError.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504038249908-swift-frontend-Requests-CaseInsensitiveString.swift-arm64_32_apple_watchos2.0-o-Onone-2790764917.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2162 seconds (0.2162 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0180 ( 13.2%)   0.0217 ( 27.2%)   0.0397 ( 18.4%)   0.0397 ( 18.4%)  parse-and-resolve-imports
   0.0170 ( 12.5%)   0.0207 ( 26.0%)   0.0377 ( 17.5%)   0.0377 ( 17.5%)  Import resolution
   0.0248 ( 18.2%)   0.0085 ( 10.7%)   0.0333 ( 15.4%)   0.0333 ( 15.4%)  perform-sema
   0.0247 ( 18.1%)   0.0085 ( 10.7%)   0.0332 ( 15.3%)   0.0332 ( 15.4%)  Type checking and Semantic analysis
   0.0157 ( 11.5%)   0.0053 (  6.7%)   0.0210 (  9.7%)   0.0210 (  9.7%)  typecheck-decl
   0.0090 (  6.6%)   0.0032 (  4.0%)   0.0121 (  5.6%)   0.0121 (  5.6%)  typecheck-stmt
   0.0047 (  3.4%)   0.0037 (  4.7%)   0.0084 (  3.9%)   0.0084 (  3.9%)  import-clang-decl
   0.0053 (  3.9%)   0.0027 (  3.4%)   0.0080 (  3.7%)   0.0080 (  3.7%)  IRGen
   0.0041 (  3.0%)   0.0017 (  2.2%)   0.0059 (  2.7%)   0.0059 (  2.7%)  build-rewrite-system
   0.0038 (  2.8%)   0.0009 (  1.1%)   0.0047 (  2.2%)   0.0047 (  2.2%)  SILGen
   0.0024 (  1.8%)   0.0007 (  0.8%)   0.0031 (  1.4%)   0.0031 (  1.4%)  typecheck-expr
   0.0029 (  2.2%)   0.0000 (  0.0%)   0.0030 (  1.4%)   0.0030 (  1.4%)  SIL optimization
   0.0010 (  0.7%)   0.0016 (  1.9%)   0.0025 (  1.2%)   0.0025 (  1.2%)  load-stdlib
   0.0015 (  1.1%)   0.0002 (  0.3%)   0.0018 (  0.8%)   0.0017 (  0.8%)  SILGen-function
   0.0008 (  0.6%)   0.0003 (  0.4%)   0.0011 (  0.5%)   0.0011 (  0.5%)  load-all-members
   0.0006 (  0.4%)   0.0000 (  0.0%)   0.0006 (  0.3%)   0.0006 (  0.3%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.1363 (100.0%)   0.0799 (100.0%)   0.2162 (100.0%)   0.2162 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.1323 seconds (0.1325 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0889 (100.0%)   0.0434 (100.0%)   0.1323 (100.0%)   0.1325 (100.0%)  Building Target
   0.0889 (100.0%)   0.0434 (100.0%)   0.1323 (100.0%)   0.1325 (100.0%)  Total
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CaseInsensitiveString.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/RequestError.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal armv7k Compiling Field.swift, RequestBody.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal armv7k Compiling\ URLSession+Requests.swift,\ Header.swift /Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift /Users/admin/builder/spi-builder-workspace/Sources/Header.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504038451806-swift-frontend-Requests-URLSession_Requests.swift-armv7k_apple_watchos2.0-o-Onone-3354980628.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3872 seconds (0.3884 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0438 ( 15.6%)   0.0120 ( 11.2%)   0.0558 ( 14.4%)   0.0559 ( 14.4%)  perform-sema
   0.0437 ( 15.6%)   0.0120 ( 11.2%)   0.0557 ( 14.4%)   0.0558 ( 14.4%)  Type checking and Semantic analysis
   0.0330 ( 11.8%)   0.0079 (  7.4%)   0.0410 ( 10.6%)   0.0411 ( 10.6%)  typecheck-stmt
   0.0188 (  6.7%)   0.0204 ( 19.1%)   0.0392 ( 10.1%)   0.0397 ( 10.2%)  parse-and-resolve-imports
   0.0290 ( 10.3%)   0.0087 (  8.1%)   0.0377 (  9.7%)   0.0378 (  9.7%)  typecheck-decl
   0.0176 (  6.3%)   0.0191 ( 17.9%)   0.0367 (  9.5%)   0.0369 (  9.5%)  Import resolution
   0.0247 (  8.8%)   0.0060 (  5.7%)   0.0308 (  7.9%)   0.0308 (  7.9%)  typecheck-expr
   0.0137 (  4.9%)   0.0053 (  4.9%)   0.0189 (  4.9%)   0.0190 (  4.9%)  IRGen
   0.0144 (  5.1%)   0.0020 (  1.9%)   0.0164 (  4.2%)   0.0164 (  4.2%)  SILGen
   0.0121 (  4.3%)   0.0017 (  1.6%)   0.0138 (  3.6%)   0.0138 (  3.6%)  SILGen-function
   0.0101 (  3.6%)   0.0031 (  2.9%)   0.0132 (  3.4%)   0.0132 (  3.4%)  precheck-target
   0.0078 (  2.8%)   0.0030 (  2.8%)   0.0108 (  2.8%)   0.0108 (  2.8%)  build-rewrite-system
   0.0040 (  1.4%)   0.0038 (  3.5%)   0.0077 (  2.0%)   0.0077 (  2.0%)  import-clang-decl
   0.0064 (  2.3%)   0.0002 (  0.2%)   0.0066 (  1.7%)   0.0066 (  1.7%)  SIL optimization
   0.0011 (  0.4%)   0.0017 (  1.6%)   0.0028 (  0.7%)   0.0028 (  0.7%)  load-stdlib
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2803 (100.0%)   0.1069 (100.0%)   0.3872 (100.0%)   0.3884 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2264 seconds (0.2283 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1699 (100.0%)   0.0565 (100.0%)   0.2264 (100.0%)   0.2283 (100.0%)  Building Target
   0.1699 (100.0%)   0.0565 (100.0%)   0.2264 (100.0%)   0.2283 (100.0%)  Total
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:37:35: warning: capture of 'completionHandler' with non-sendable type '(NetworkResult<R.Resource>) -> Void' (aka '(Result<(HTTPURLResponse, R.Resource), RequestTransportError>) -> ()') in a '@Sendable' closure
            callbackQueue.async { completionHandler(response) }
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:37:35: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            callbackQueue.async { completionHandler(response) }
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:37:53: warning: capture of 'response' with non-sendable type 'NetworkResult<R.Resource>' (aka 'Result<(HTTPURLResponse, R.Resource), RequestTransportError>') in a '@Sendable' closure
            callbackQueue.async { completionHandler(response) }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:99:62: warning: capture of 'request' with non-sendable type 'R' in a '@Sendable' closure
                                                      using: request.responseDecoder)
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:28:25: note: consider making generic parameter 'R' conform to the 'Sendable' protocol
    public func perform<R: RequestConvertible>(
                        ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:100:25: warning: capture of 'complete' with non-sendable type '(NetworkResult<R.Resource>) -> ()' (aka '(Result<(HTTPURLResponse, R.Resource), RequestTransportError>) -> ()') in a '@Sendable' closure
                        complete(.success((httpResponse, resource)))
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:100:25: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                        complete(.success((httpResponse, resource)))
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:120:66: warning: passing non-sendable parameter 'completionHandler' to function expecting a @Sendable closure
        let task = dataTask(with: urlRequest, completionHandler: completionHandler)
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/URLSession+Requests.swift:118:7: note: parameter 'completionHandler' is implicitly non-sendable
      completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void
      ^
                         @Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Header.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal arm64_32 Compiling CaseInsensitiveString.swift, RequestError.swift (in target 'Requests' from project 'Requests')
SwiftDriver\ Compilation Requests normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Requests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos2.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling URLSession+Requests.swift, Header.swift (in target 'Requests' from project 'Requests')
SwiftCompile normal arm64 Compiling\ HTTPMethod.swift,\ MediaType.swift /Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift (in target 'Requests' from project 'Requests')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745504038749280-swift-frontend-Requests-HTTPMethod.swift-arm64_apple_watchos2.0-o-Onone-47585069.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2171 seconds (0.2180 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0172 ( 11.8%)   0.0226 ( 31.6%)   0.0398 ( 18.3%)   0.0399 ( 18.3%)  parse-and-resolve-imports
   0.0163 ( 11.2%)   0.0216 ( 30.2%)   0.0379 ( 17.5%)   0.0380 ( 17.4%)  Import resolution
   0.0239 ( 16.4%)   0.0052 (  7.2%)   0.0291 ( 13.4%)   0.0293 ( 13.4%)  perform-sema
   0.0238 ( 16.4%)   0.0051 (  7.2%)   0.0290 ( 13.4%)   0.0291 ( 13.4%)  Type checking and Semantic analysis
   0.0160 ( 11.0%)   0.0037 (  5.2%)   0.0197 (  9.1%)   0.0197 (  9.1%)  typecheck-decl
   0.0092 (  6.3%)   0.0045 (  6.3%)   0.0137 (  6.3%)   0.0138 (  6.3%)  IRGen
   0.0088 (  6.0%)   0.0017 (  2.4%)   0.0105 (  4.8%)   0.0107 (  4.9%)  typecheck-stmt
   0.0082 (  5.6%)   0.0017 (  2.4%)   0.0099 (  4.6%)   0.0101 (  4.6%)  SILGen
   0.0068 (  4.7%)   0.0016 (  2.2%)   0.0084 (  3.9%)   0.0084 (  3.9%)  typecheck-expr
   0.0062 (  4.3%)   0.0000 (  0.1%)   0.0063 (  2.9%)   0.0063 (  2.9%)  SIL optimization
   0.0038 (  2.6%)   0.0006 (  0.9%)   0.0045 (  2.1%)   0.0045 (  2.1%)  SILGen-function
   0.0026 (  1.8%)   0.0007 (  1.0%)   0.0033 (  1.5%)   0.0033 (  1.5%)  build-rewrite-system
   0.0010 (  0.7%)   0.0016 (  2.2%)   0.0025 (  1.2%)   0.0025 (  1.2%)  load-stdlib
   0.0010 (  0.7%)   0.0001 (  0.2%)   0.0011 (  0.5%)   0.0012 (  0.5%)  precheck-target
   0.0005 (  0.3%)   0.0007 (  0.9%)   0.0012 (  0.5%)   0.0012 (  0.5%)  import-clang-decl
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.1457 (100.0%)   0.0714 (100.0%)   0.2171 (100.0%)   0.2180 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.1702 seconds (0.1714 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1243 (100.0%)   0.0458 (100.0%)   0.1702 (100.0%)   0.1714 (100.0%)  Building Target
   0.1243 (100.0%)   0.0458 (100.0%)   0.1702 (100.0%)   0.1714 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:42:16: warning: static property 'connect' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let connect: HTTPMethod = "CONNECT"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:42:16: note: add '@MainActor' to make static property 'connect' part of global actor 'MainActor'
    static let connect: HTTPMethod = "CONNECT"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:42:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let connect: HTTPMethod = "CONNECT"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:44:16: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let delete: HTTPMethod = "DELETE"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:44:16: note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    static let delete: HTTPMethod = "DELETE"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let delete: HTTPMethod = "DELETE"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:46:16: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let get: HTTPMethod = "GET"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:46:16: note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    static let get: HTTPMethod = "GET"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:46:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let get: HTTPMethod = "GET"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:48:16: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let head: HTTPMethod = "HEAD"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:48:16: note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    static let head: HTTPMethod = "HEAD"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let head: HTTPMethod = "HEAD"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:50:16: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let options: HTTPMethod = "OPTIONS"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:50:16: note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    static let options: HTTPMethod = "OPTIONS"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:50:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let options: HTTPMethod = "OPTIONS"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:52:16: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let patch: HTTPMethod = "PATCH"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:52:16: note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    static let patch: HTTPMethod = "PATCH"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:52:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let patch: HTTPMethod = "PATCH"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:54:16: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let post: HTTPMethod = "POST"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:54:16: note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    static let post: HTTPMethod = "POST"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:54:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let post: HTTPMethod = "POST"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:56:16: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let put: HTTPMethod = "PUT"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:56:16: note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    static let put: HTTPMethod = "PUT"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:56:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let put: HTTPMethod = "PUT"
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:58:16: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    static let trace: HTTPMethod = "TRACE"
               ^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:13:15: note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
public struct HTTPMethod: Hashable, RawRepresentable {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:58:16: note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    static let trace: HTTPMethod = "TRACE"
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/HTTPMethod.swift:58:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let trace: HTTPMethod = "TRACE"
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:127:16: warning: static property 'application' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let application = MediaType.TopLevelType("application")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:127:16: note: add '@MainActor' to make static property 'application' part of global actor 'MainActor'
    static let application = MediaType.TopLevelType("application")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:127:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let application = MediaType.TopLevelType("application")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:129:16: warning: static property 'audio' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let audio = MediaType.TopLevelType("audio")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:129:16: note: add '@MainActor' to make static property 'audio' part of global actor 'MainActor'
    static let audio = MediaType.TopLevelType("audio")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:129:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let audio = MediaType.TopLevelType("audio")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:131:16: warning: static property 'font' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let font = MediaType.TopLevelType("font")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:131:16: note: add '@MainActor' to make static property 'font' part of global actor 'MainActor'
    static let font = MediaType.TopLevelType("font")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:131:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let font = MediaType.TopLevelType("font")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:133:16: warning: static property 'image' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let image = MediaType.TopLevelType("image")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:133:16: note: add '@MainActor' to make static property 'image' part of global actor 'MainActor'
    static let image = MediaType.TopLevelType("image")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:133:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let image = MediaType.TopLevelType("image")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:135:16: warning: static property 'message' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let message = MediaType.TopLevelType("message")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:135:16: note: add '@MainActor' to make static property 'message' part of global actor 'MainActor'
    static let message = MediaType.TopLevelType("message")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:135:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let message = MediaType.TopLevelType("message")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:137:16: warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let model = MediaType.TopLevelType("model")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:137:16: note: add '@MainActor' to make static property 'model' part of global actor 'MainActor'
    static let model = MediaType.TopLevelType("model")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:137:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let model = MediaType.TopLevelType("model")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:139:16: warning: static property 'multipart' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let multipart = MediaType.TopLevelType("multipart")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:139:16: note: add '@MainActor' to make static property 'multipart' part of global actor 'MainActor'
    static let multipart = MediaType.TopLevelType("multipart")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:139:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let multipart = MediaType.TopLevelType("multipart")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:141:16: warning: static property 'text' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let text = MediaType.TopLevelType("text")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:141:16: note: add '@MainActor' to make static property 'text' part of global actor 'MainActor'
    static let text = MediaType.TopLevelType("text")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:141:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let text = MediaType.TopLevelType("text")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:143:16: warning: static property 'video' is not concurrency-safe because non-'Sendable' type 'MediaType.TopLevelType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let video = MediaType.TopLevelType("video")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:46:19: note: consider making struct 'TopLevelType' conform to the 'Sendable' protocol
    public struct TopLevelType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:143:16: note: add '@MainActor' to make static property 'video' part of global actor 'MainActor'
    static let video = MediaType.TopLevelType("video")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:143:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let video = MediaType.TopLevelType("video")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:150:16: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let plain = MediaType.SubType("plain")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:150:16: note: add '@MainActor' to make static property 'plain' part of global actor 'MainActor'
    static let plain = MediaType.SubType("plain")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:150:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let plain = MediaType.SubType("plain")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:152:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let html = MediaType.SubType("html")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:152:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    static let html = MediaType.SubType("html")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:152:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let html = MediaType.SubType("html")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:154:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let css = MediaType.SubType("css")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:154:16: note: add '@MainActor' to make static property 'css' part of global actor 'MainActor'
    static let css = MediaType.SubType("css")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:154:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let css = MediaType.SubType("css")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:156:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let json = MediaType.SubType("json")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:156:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    static let json = MediaType.SubType("json")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:156:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let json = MediaType.SubType("json")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:158:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = MediaType.SubType("xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:158:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = MediaType.SubType("xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:158:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = MediaType.SubType("xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:160:16: warning: static property 'urlEncodedForm' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlEncodedForm = MediaType.SubType("x-www-form-urlencoded")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:160:16: note: add '@MainActor' to make static property 'urlEncodedForm' part of global actor 'MainActor'
    static let urlEncodedForm = MediaType.SubType("x-www-form-urlencoded")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:160:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlEncodedForm = MediaType.SubType("x-www-form-urlencoded")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:162:16: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let octetStream = MediaType.SubType("octet-stream")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:162:16: note: add '@MainActor' to make static property 'octetStream' part of global actor 'MainActor'
    static let octetStream = MediaType.SubType("octet-stream")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:162:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let octetStream = MediaType.SubType("octet-stream")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:164:16: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let formData = MediaType.SubType("form-data")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:164:16: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    static let formData = MediaType.SubType("form-data")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:164:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let formData = MediaType.SubType("form-data")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:166:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = MediaType.SubType("gif")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:166:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = MediaType.SubType("gif")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:166:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = MediaType.SubType("gif")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:168:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = MediaType.SubType("png")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:168:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = MediaType.SubType("png")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:168:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = MediaType.SubType("png")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:170:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = MediaType.SubType("jpeg")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:170:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = MediaType.SubType("jpeg")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:170:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = MediaType.SubType("jpeg")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:172:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'MediaType.SubType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = MediaType.SubType("svg+xml")
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:65:19: note: consider making struct 'SubType' conform to the 'Sendable' protocol
    public struct SubType: Hashable, RawRepresentable, CustomStringConvertible {
                  ^
                                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:172:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = MediaType.SubType("svg+xml")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:172:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = MediaType.SubType("svg+xml")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:181:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let json = MediaType(type: .application, subtype: .json, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:181:16: note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    static let json = MediaType(type: .application, subtype: .json, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:181:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let json = MediaType(type: .application, subtype: .json, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:183:16: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let xml = MediaType(type: .application, subtype: .xml, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:183:16: note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    static let xml = MediaType(type: .application, subtype: .xml, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:183:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let xml = MediaType(type: .application, subtype: .xml, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:185:16: warning: static property 'urlEncodedForm' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlEncodedForm = MediaType(type: .application, subtype: .urlEncodedForm,
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:185:16: note: add '@MainActor' to make static property 'urlEncodedForm' part of global actor 'MainActor'
    static let urlEncodedForm = MediaType(type: .application, subtype: .urlEncodedForm,
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:185:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlEncodedForm = MediaType(type: .application, subtype: .urlEncodedForm,
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:188:16: warning: static property 'binary' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let binary = MediaType(type: .application, subtype: .octetStream)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:188:16: note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
    static let binary = MediaType(type: .application, subtype: .octetStream)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:188:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let binary = MediaType(type: .application, subtype: .octetStream)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:192:16: warning: static property 'plainText' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let plainText = MediaType(type: .text, subtype: .plain, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:192:16: note: add '@MainActor' to make static property 'plainText' part of global actor 'MainActor'
    static let plainText = MediaType(type: .text, subtype: .plain, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:192:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let plainText = MediaType(type: .text, subtype: .plain, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:194:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let html = MediaType(type: .text, subtype: .html, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:194:16: note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    static let html = MediaType(type: .text, subtype: .html, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:194:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let html = MediaType(type: .text, subtype: .html, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:196:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let css = MediaType(type: .text, subtype: .css, parameters: ["charset": "utf-8"])
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:196:16: note: add '@MainActor' to make static property 'css' part of global actor 'MainActor'
    static let css = MediaType(type: .text, subtype: .css, parameters: ["charset": "utf-8"])
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:196:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let css = MediaType(type: .text, subtype: .css, parameters: ["charset": "utf-8"])
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:200:16: warning: static property 'gif' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gif = MediaType(type: .image, subtype: .gif)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:200:16: note: add '@MainActor' to make static property 'gif' part of global actor 'MainActor'
    static let gif = MediaType(type: .image, subtype: .gif)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:200:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gif = MediaType(type: .image, subtype: .gif)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:202:16: warning: static property 'png' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let png = MediaType(type: .image, subtype: .png)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:202:16: note: add '@MainActor' to make static property 'png' part of global actor 'MainActor'
    static let png = MediaType(type: .image, subtype: .png)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:202:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let png = MediaType(type: .image, subtype: .png)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:204:16: warning: static property 'jpeg' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let jpeg = MediaType(type: .image, subtype: .jpeg)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:204:16: note: add '@MainActor' to make static property 'jpeg' part of global actor 'MainActor'
    static let jpeg = MediaType(type: .image, subtype: .jpeg)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:204:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let jpeg = MediaType(type: .image, subtype: .jpeg)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:206:16: warning: static property 'svg' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let svg = MediaType(type: .image, subtype: .svg)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:40:15: note: consider making struct 'MediaType' conform to the 'Sendable' protocol
public struct MediaType: CustomStringConvertible {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:206:16: note: add '@MainActor' to make static property 'svg' part of global actor 'MainActor'
    static let svg = MediaType(type: .image, subtype: .svg)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:206:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let svg = MediaType(type: .image, subtype: .svg)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:211:16: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type '(String) -> MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let formData: (String) -> MediaType = { boundary in
               ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:211:16: note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    static let formData: (String) -> MediaType = { boundary in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MediaType.swift:211:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let formData: (String) -> MediaType = { boundary in
               ^
    nonisolated(unsafe)
SwiftDriver\ Compilation Requests normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Requests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos2.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling HTTPMethod.swift, MediaType.swift (in target 'Requests' from project 'Requests')
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c normal armv7k c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.o -index-unit-output-path /Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.o
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c normal arm64_32 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.o -index-unit-output-path /Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c normal armv7k c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.o -index-unit-output-path /Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_vers.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c normal arm64_32 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.o -index-unit-output-path /Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_vers.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Binary/Requests normal armv7k (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos2.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests.LinkFileList -install_name @rpath/Requests.framework/Requests -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_dependency_info.dat -fapplication-extension -fprofile-instr-generate -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Binary/Requests
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Binary/Requests normal arm64_32 (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos2.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests.LinkFileList -install_name @rpath/Requests.framework/Requests -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_dependency_info.dat -fapplication-extension -fprofile-instr-generate -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Binary/Requests
SwiftDriverJobDiscovery normal arm64 Compiling DefaultValue.swift (in target 'Requests' from project 'Requests')
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.o -index-unit-output-path /Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.o
SwiftDriverJobDiscovery normal arm64 Compiling RequestConvertible.swift, BodyProvider.swift (in target 'Requests' from project 'Requests')
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/Requests_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.o -index-unit-output-path /Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_vers.o
SwiftDriverJobDiscovery normal arm64 Compiling Request.swift, URL+StaticString.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling URLQueryItem+ExpresibleByDictionaryLiteral.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling URLSession+Requests.swift, Header.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling AuthenticationProvider.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling ResponseDecoder.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling Field.swift, RequestBody.swift (in target 'Requests' from project 'Requests')
SwiftDriverJobDiscovery normal arm64 Compiling CaseInsensitiveString.swift, RequestError.swift (in target 'Requests' from project 'Requests')
SwiftDriver\ Compilation Requests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Requests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos2.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -application-extension -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Binary/Requests normal arm64 (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos2.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests.LinkFileList -install_name @rpath/Requests.framework/Requests -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_dependency_info.dat -fapplication-extension -fprofile-instr-generate -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Binary/Requests
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Requests.framework/Requests normal arm64\ armv7k\ arm64_32 (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Binary/Requests /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Binary/Requests /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Binary/Requests -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Requests.framework/Requests
ExtractAppIntentsMetadata (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Requests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 2.0 --bundle-identifier Requests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Requests.framework --target-triple arm64-apple-watchos2.0 --target-triple armv7k-apple-watchos2.0 --target-triple arm64_32-apple-watchos2.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Requests.framework/Requests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Requests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Requests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64/Requests.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/armv7k/Requests.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Requests.build/Debug-watchos/Requests.build/Objects-normal/arm64_32/Requests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-24 07:13:59.527 appintentsmetadataprocessor[742:4227] Starting appintentsmetadataprocessor export
2025-04-24 07:13:59.530 appintentsmetadataprocessor[742:4227] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos/Requests.framework/Requests.tbd (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Requests.framework/Requests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos/Requests.framework/Requests.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Requests.framework (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Requests.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Requests.framework (in target 'Requests' from project 'Requests')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Requests.framework
/Users/admin/builder/spi-builder-workspace/Requests.xcodeproj: warning: The watchOS deployment target 'WATCHOS_DEPLOYMENT_TARGET' is set to 2.0, but the range of supported deployment target versions is 4.0 to 11.4.99. (in target 'Requests' from project 'Requests')
warning: Run script build phase 'Run SwiftLint' will be run during every build because it does not specify any outputs. To address this issue, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'Requests' from project 'Requests')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Requests",
  "name" : "Requests",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Requests",
      "targets" : [
        "Requests"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RequestsTests",
      "module_type" : "SwiftTarget",
      "name" : "RequestsTests",
      "path" : "Tests",
      "sources" : [
        "AuthenticationProviderTests.swift",
        "BodyProviderTests.swift",
        "CaseInsensitiveStringTests.swift",
        "FieldTests.swift",
        "HTTPMethodTests.swift",
        "HTTPStubProtocol.swift",
        "HeaderTests.swift",
        "MediaTypeTests.swift",
        "RequestConvertibleTests.swift",
        "RequestTests.swift",
        "URLQueryItem+ExpressibleByDictionaryLiteralTests.swift",
        "URLSessionExtensionTests.swift"
      ],
      "target_dependencies" : [
        "Requests"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Requests",
      "module_type" : "SwiftTarget",
      "name" : "Requests",
      "path" : "Sources",
      "product_memberships" : [
        "Requests"
      ],
      "sources" : [
        "AuthenticationProvider.swift",
        "BodyProvider.swift",
        "CaseInsensitiveString.swift",
        "DefaultValue.swift",
        "Field.swift",
        "HTTPMethod.swift",
        "Header.swift",
        "MediaType.swift",
        "Request.swift",
        "RequestBody.swift",
        "RequestConvertible.swift",
        "RequestError.swift",
        "ResponseDecoder.swift",
        "URL+StaticString.swift",
        "URLQueryItem+ExpresibleByDictionaryLiteral.swift",
        "URLSession+Requests.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.